diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-02-10 14:58:22 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-02-11 07:36:15 +0100 |
commit | 7dc45304cd2e4e877c7c5b1885d242c3977e9245 (patch) | |
tree | c46d1739ac7f8351c4f5be845cbd3186391026c1 /resources/tools/presentation/generator_plots.py | |
parent | d7ef5191ec1a7561d6109723980d48b85953a9c7 (diff) |
Report: Add ucode comparisom
Change-Id: If918806ba5bcda4d87aa2ea2ab4d2c676dc9670a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 51f3097f56..b6a393968d 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -205,7 +205,11 @@ def plot_hdrh_lat_by_percentile(plot, input_data): params=[u"latency", u"throughput", u"parent", u"tags", u"type"] )[0][0] elif plot.get(u"filter", None): - data = input_data.filter_data(plot, continue_on_error=True) + data = input_data.filter_data( + plot, + params=[u"latency", u"throughput", u"parent", u"tags", u"type"], + continue_on_error=True + ) else: job = list(plot[u"data"].keys())[0] build = str(plot[u"data"][job][0]) |