From 0ba8b76dc5ac35b39b1a9200c1c81410d632d8aa Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Tue, 11 Feb 2020 09:06:14 +0100 Subject: Report: Filter data for Latency graphs Change-Id: I7d0354086c7d63bc79f2b2f97345d84842d6a911 Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_plots.py | 6 +++--- resources/tools/presentation/generator_tables.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'resources/tools') diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index b6a393968d..5d8654a77d 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]) diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 6de5d46681..3c77ea89f1 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -34,7 +34,7 @@ from pal_utils import mean, stdev, relative_change, classify_anomalies, \ convert_csv_to_pretty_txt, relative_change_stdev -REGEX_NIC = re.compile(r'\d*ge\dp\d\D*\d*') +REGEX_NIC = re.compile(r'(\d*ge\dp\d\D*\d*[a-z]*)-') def generate_tables(spec, data): -- cgit 1.2.3-korg