X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_plots.py;h=5c9698912ff3eee0b88a4d60e2a2a354bc940c15;hb=1629fedabe77aef4f31ca4f3fbf5f66d1ec274dd;hp=b6a393968d331bb3562e564bec984f492a11dd6c;hpb=7dc45304cd2e4e877c7c5b1885d242c3977e9245;p=csit.git diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index b6a393968d..5c9698912f 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -202,14 +202,14 @@ def plot_hdrh_lat_by_percentile(plot, input_data): if plot.get(u"include", None): data = input_data.filter_tests_by_name( plot, - params=[u"latency", u"throughput", u"parent", u"tags", u"type"] + params=[u"name", u"latency", u"parent", u"tags", u"type"] )[0][0] elif plot.get(u"filter", None): data = input_data.filter_data( plot, - params=[u"latency", u"throughput", u"parent", u"tags", u"type"], + params=[u"name", u"latency", u"parent", u"tags", u"type"], continue_on_error=True - ) + )[0][0] else: job = list(plot[u"data"].keys())[0] build = str(plot[u"data"][job][0]) @@ -314,8 +314,8 @@ def plot_hdrh_lat_by_percentile(plot, input_data): filename=file_name) # Add link to the file: if file_links and target_links: - with open(file_links, u"a") as fw: - fw.write( + with open(file_links, u"a") as file_handler: + file_handler.write( f"- `{name_link} " f"<{target_links}/{file_name.split(u'/')[-1]}>`_\n" ) @@ -1025,6 +1025,8 @@ def plot_tsa_name(plot, input_data): limit = plot[u"limits"][u"nic"][u"xl710"] elif u"x553" in test_name: limit = plot[u"limits"][u"nic"][u"x553"] + elif u"cx556a" in test_name: + limit = plot[u"limits"][u"nic"][u"cx556a"] else: limit = 0 if limit > nic_limit: @@ -1054,7 +1056,7 @@ def plot_tsa_name(plot, input_data): except ValueError as err: logging.error(err) return - nic_limit /= 1000000.0 + nic_limit /= 1e6 traces.append(plgo.Scatter( x=x_vals, y=[nic_limit, ] * len(x_vals), @@ -1084,7 +1086,7 @@ def plot_tsa_name(plot, input_data): )) y_max.append(nic_limit) - lnk_limit /= 1000000.0 + lnk_limit /= 1e6 if lnk_limit < threshold: traces.append(plgo.Scatter( x=x_vals, @@ -1115,7 +1117,7 @@ def plot_tsa_name(plot, input_data): )) y_max.append(lnk_limit) - pci_limit /= 1000000.0 + pci_limit /= 1e6 if (pci_limit < threshold and (pci_limit < lnk_limit * 0.95 or lnk_limit > lnk_limit * 1.05)): traces.append(plgo.Scatter( @@ -1330,7 +1332,7 @@ def plot_nf_heatmap(plot, input_data): regex_cn = re.compile(r'^(\d*)R(\d*)C$') regex_test_name = re.compile(r'^.*-(\d+ch|\d+pl)-' r'(\d+mif|\d+vh)-' - r'(\d+vm\d+t|\d+dcr\d+t).*$') + r'(\d+vm\d+t|\d+dcr\d+t|\d+dcr\d+c).*$') vals = dict() # Transform the data