diff options
author | Tibor Frank <tifrank@cisco.com> | 2021-01-27 07:03:01 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2021-01-27 07:18:37 +0100 |
commit | 7d7ec5e661abec4dda2546843addf1a71580e97e (patch) | |
tree | e59baeded8e1bdfae8a6acbf098a61af02911945 /resources/tools/presentation/generator_plots.py | |
parent | 5e996684dd0c95089256631c696e4fb9e72e21a2 (diff) |
Report: Improve reconf graphs
Change-Id: Ic935c946123c4dcc9daa608c523767b9aca36ef3
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 | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index db130fa9b7..1f5a1a7451 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -492,15 +492,19 @@ def plot_nf_reconf_box_name(plot, input_data): col.lower().replace(u'-ndrpdr', u''). replace(u'2n1l-', u'')) + if u"ipsec" in tst_name: + show_name = u'-'.join(tst_name.split(u'-')[2:-1]) + else: + show_name = u'-'.join(tst_name.split(u'-')[3:-2]) traces.append(plgo.Box( x=[str(i + 1) + u'.'] * len(df_y[col]), - y=[y if y else None for y in df_y[col]], + y=df_y[col], name=( f"{i + 1}. " f"({nr_of_samples[i]:02d} " f"run{u's' if nr_of_samples[i] > 1 else u''}, " f"packets lost average: {mean(loss[col]):.1f}) " - f"{u'-'.join(tst_name.split(u'-')[3:-2])}" + f"{show_name}" ), hoverinfo=u"y+name" )) |