Report: Add 2n-clx cx556a Latency graphs
[csit.git] / resources / tools / presentation / generator_plots.py
index 88af4a4..4ceeebc 100644 (file)
@@ -62,7 +62,8 @@ COLORS = (
 REGEX_NIC = re.compile(r'(\d*ge\dp\d\D*\d*[a-z]*)-')
 
 # This value depends on latency stream rate (9001 pps) and duration (5s).
-PERCENTILE_MAX = 99.9995
+# Keep it slightly higher to ensure rounding errors to not remove tick mark.
+PERCENTILE_MAX = 99.999501
 
 
 def generate_plots(spec, data):
@@ -398,10 +399,8 @@ def plot_hdrh_lat_by_percentile_x_log(plot, input_data):
                     )
 
             layout[u"title"][u"text"] = f"<b>Latency:</b> {name}"
-            layout[u"xaxis"][u"range"] = [0, 5]
-            # layout[u"xaxis"][u"range"] = [
-            #     0, round(log(100.0 / (100.0 - PERCENTILE_MAX), 10))
-            # ]
+            x_max = log(100.0 / (100.0 - PERCENTILE_MAX), 10)
+            layout[u"xaxis"][u"range"] = [0, x_max]
             fig.update_layout(layout)
 
             # Create plot