From: Francis Deslauriers Date: Thu, 16 Mar 2017 15:13:49 +0000 (-0400) Subject: jjb: Change `syscall` to `event` in benchmark plots X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=424139398d363f0bbc12fb679b2d65ab64867c8d;p=lttng-ci.git jjb: Change `syscall` to `event` in benchmark plots Signed-off-by: Francis Deslauriers --- diff --git a/scripts/lttng-baremetal-tests/generate-plots.py b/scripts/lttng-baremetal-tests/generate-plots.py index 89f6084..efc9877 100644 --- a/scripts/lttng-baremetal-tests/generate-plots.py +++ b/scripts/lttng-baremetal-tests/generate-plots.py @@ -83,7 +83,7 @@ def create_plot(df, graph_type): plots = [baseline, lttng, one_thr, two_thr, four_thr, eight_thr, sixteen_thr] - title='Meantime per syscalls for {} testcase'.format(graph_type) + title='Meantime per event for {} testcase'.format(graph_type) # Create a axe object for each sub-plots f, arrax = plt.subplots(len(plots), sharex=True, figsize=(16, 25)) @@ -106,7 +106,7 @@ def create_plot(df, graph_type): ax.set_ylim(0) ax.grid() ax.set_xlabel('Jenkins Build ID') - ax.set_ylabel('Meantime per syscall [us]') + ax.set_ylabel('Meantime per event [us]') ax.xaxis.set_major_locator(MaxNLocator(integer=True, nbins=30))