aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-06-03 14:04:00 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-06-03 14:04:00 +0200
commit4d5dafbaa6a0b20a09db19ccfda06790b453bd19 (patch)
tree5c0f89f82cbbe269507db7bbd98f10504fd6428b
parent8ec86fc9b4b538873e896d876972dbd89781bbf7 (diff)
downloadallocbench-4d5dafbaa6a0b20a09db19ccfda06790b453bd19.tar.gz
allocbench-4d5dafbaa6a0b20a09db19ccfda06790b453bd19.zip
[httpd] fix titles and VmHWM datapoint
-rw-r--r--allocbench/benchmarks/httpd.py10
1 files 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")