aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_plots.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2023-02-06 13:47:11 +0100
committerTibor Frank <tifrank@cisco.com>2023-02-06 13:47:11 +0100
commit6aecd61f0808c995d0003272f2ef2da7ea0fca26 (patch)
tree0de045c9432bf80601b4d03f016b428b601a2760 /resources/tools/presentation/generator_plots.py
parent1bf86fd7039ecb70ae32de0c87eb8f450a93d9d7 (diff)
Report: Set the range on y-axis for hoststack
Signed-off-by: Tibor Frank <tifrank@cisco.com> Change-Id: Ie5162073983646febea5c9a963a0a44a3c1c1dca
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r--resources/tools/presentation/generator_plots.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py
index 70faffc8f4..cc9d880398 100644
--- a/resources/tools/presentation/generator_plots.py
+++ b/resources/tools/presentation/generator_plots.py
@@ -734,7 +734,6 @@ def plot_perf_box_name(plot, input_data):
test_type = u"HOSTSTACK"
elif test[u"type"] in (u"LDP_NGINX",):
- logging.info(test)
if u"TCP_CPS" in test[u"tags"]:
test_type = u"VSAP_CPS"
y_vals[test[u"parent"]].append(
@@ -796,7 +795,10 @@ def plot_perf_box_name(plot, input_data):
try:
val_max = max(df_y[col])
if val_max:
- y_max.append(int(val_max / 1e6))
+ if test_type in (u"VSAP_CPS", u"VSAP_RPS"):
+ y_max.append(int(val_max))
+ else:
+ y_max.append(int(val_max / 1e6))
except (ValueError, TypeError) as err:
logging.error(repr(err))
continue