aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2020-02-11 09:06:14 +0100
committerTibor Frank <tifrank@cisco.com>2020-02-11 08:27:48 +0000
commitdf89cc0be28cd8d6ad4cba476a4a28012fa88569 (patch)
tree945abd72712824cacd812917bb25686567758463 /resources/tools/presentation
parentf9a3c9b1c6655ecd70d7d1740ddff44e653a3d1a (diff)
Report: Filter data for Latency graphs
Change-Id: I7d0354086c7d63bc79f2b2f97345d84842d6a911 Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 0ba8b76dc5ac35b39b1a9200c1c81410d632d8aa)
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r--resources/tools/presentation/generator_plots.py6
-rw-r--r--resources/tools/presentation/generator_tables.py2
2 files changed, 4 insertions, 4 deletions
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 90a8c2c1c4..493239af4e 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):