From 4d5dafbaa6a0b20a09db19ccfda06790b453bd19 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 3 Jun 2020 14:04:00 +0200 Subject: [httpd] fix titles and VmHWM datapoint --- allocbench/benchmarks/httpd.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/allocbench/benchmarks/httpd.py b/allocbench/benchmarks/httpd.py index 3f0567a..08b8652 100644 --- a/allocbench/benchmarks/httpd.py +++ b/allocbench/benchmarks/httpd.py @@ -65,27 +65,27 @@ class BenchmarkHTTPD(Benchmark): fig_options={ 'xlabel': "threads", 'ylabel': "requests/s", - 'title': "{perm.site}: requests/s", + 'title': "{fixed_part_str}: requests/s", 'autoticks': False, }, file_postfix="requests") plt.plot(self, - "{nginx_vmhwm}", + "{nginx_VmHWM}", fig_options={ 'xlabel': "threads", 'ylabel': "VmHWM in KB", - 'title': "{perm.site}: nginx memory usage", + 'title': "{fixed_part_str}: nginx memory usage", 'autoticks': False, }, file_postfix="httpd_vmhwm") plt.plot(self, - "{php-fpm_vmhwm}", + "{php-fpm_VmHWM}", fig_options={ 'xlabel': "threads", 'ylabel': "VmHWM in KB", - 'title': "{perm.site}: php-fpm memory usage", + 'title': "{fixed_part_str}: php-fpm memory usage", 'autoticks': False, }, file_postfix="php-fpm_vmhwm") -- cgit v1.2.3