Compare commits
No commits in common. "68954a79eca0b6c5224ca882906aff3739a0123e" and "02a2f6a27ab1d44c427d06a6e960fc85153f6d9d" have entirely different histories.
68954a79ec
...
02a2f6a27a
|
@ -1442,17 +1442,11 @@ def create_vm(
|
||||||
)
|
)
|
||||||
if not volume["pool"] in pools:
|
if not volume["pool"] in pools:
|
||||||
pools[volume["pool"]] = int(
|
pools[volume["pool"]] = int(
|
||||||
pvc_ceph.format_bytes_fromhuman(volume_data["stats"]["size"])
|
volume_data["stats"]["size"].replace("G", "")
|
||||||
/ 1024
|
|
||||||
/ 1024
|
|
||||||
/ 1024
|
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
pools[volume["pool"]] += int(
|
pools[volume["pool"]] += int(
|
||||||
pvc_ceph.format_bytes_fromhuman(volume_data["stats"]["size"])
|
volume_data["stats"]["size"].replace("G", "")
|
||||||
/ 1024
|
|
||||||
/ 1024
|
|
||||||
/ 1024
|
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
if not volume["pool"] in pools:
|
if not volume["pool"] in pools:
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
import math
|
import math
|
||||||
|
|
||||||
from json import dumps, loads
|
from json import dumps
|
||||||
from requests_toolbelt.multipart.encoder import (
|
from requests_toolbelt.multipart.encoder import (
|
||||||
MultipartEncoder,
|
MultipartEncoder,
|
||||||
MultipartEncoderMonitor,
|
MultipartEncoderMonitor,
|
||||||
|
@ -1648,8 +1648,6 @@ def ceph_benchmark_list(config, job):
|
||||||
|
|
||||||
|
|
||||||
def get_benchmark_list_results_legacy(benchmark_data):
|
def get_benchmark_list_results_legacy(benchmark_data):
|
||||||
if isinstance(benchmark_data, str):
|
|
||||||
benchmark_data = loads(benchmark_data)
|
|
||||||
benchmark_bandwidth = dict()
|
benchmark_bandwidth = dict()
|
||||||
benchmark_iops = dict()
|
benchmark_iops = dict()
|
||||||
for test in ["seq_read", "seq_write", "rand_read_4K", "rand_write_4K"]:
|
for test in ["seq_read", "seq_write", "rand_read_4K", "rand_write_4K"]:
|
||||||
|
@ -1734,7 +1732,7 @@ def format_list_benchmark(config, benchmark_information):
|
||||||
|
|
||||||
for benchmark in benchmark_information:
|
for benchmark in benchmark_information:
|
||||||
benchmark_job = benchmark["job"]
|
benchmark_job = benchmark["job"]
|
||||||
benchmark_format = benchmark.get("test_format", 0) # noqa: F841
|
benchmark_format = benchmark["test_format"] # noqa: F841
|
||||||
|
|
||||||
_benchmark_job_length = len(benchmark_job)
|
_benchmark_job_length = len(benchmark_job)
|
||||||
if _benchmark_job_length > benchmark_job_length:
|
if _benchmark_job_length > benchmark_job_length:
|
||||||
|
@ -1839,7 +1837,7 @@ def format_list_benchmark(config, benchmark_information):
|
||||||
|
|
||||||
for benchmark in benchmark_information:
|
for benchmark in benchmark_information:
|
||||||
benchmark_job = benchmark["job"]
|
benchmark_job = benchmark["job"]
|
||||||
benchmark_format = benchmark.get("test_format", 0) # noqa: F841
|
benchmark_format = benchmark["test_format"] # noqa: F841
|
||||||
|
|
||||||
if benchmark["benchmark_result"] == "Running":
|
if benchmark["benchmark_result"] == "Running":
|
||||||
seq_benchmark_bandwidth = "Running"
|
seq_benchmark_bandwidth = "Running"
|
||||||
|
|
Loading…
Reference in New Issue