aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 14:59:30 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 15:00:05 +0200
commitaaab28eff6583ce3822aa3119f58a3f4f644742d (patch)
treee0bc2aa36a01f35c50acd5fb4ac39fc1a2b35950
parent118676642c9b6cdb5579edf4f3900c5a6345314f (diff)
downloadallocbench-aaab28eff6583ce3822aa3119f58a3f4f644742d.tar.gz
allocbench-aaab28eff6583ce3822aa3119f58a3f4f644742d.zip
[redis.py] fix VmHWM plots
-rw-r--r--allocbench/benchmarks/redis.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/allocbench/benchmarks/redis.py b/allocbench/benchmarks/redis.py
index 3d09f9c..09248a5 100644
--- a/allocbench/benchmarks/redis.py
+++ b/allocbench/benchmarks/redis.py
@@ -91,11 +91,11 @@ class BenchmarkRedis(Benchmark):
file_postfix="requests")
plt.plot(self,
- "{redis_vmhwm}",
+ "{redis_VmHWM}",
plot_type='bar',
fig_options={
- 'ylabel': '"VmHWM in KB"',
- 'title': '"redis memusage"',
+ 'ylabel': 'VmHWM in KB',
+ 'title': 'redis memusage',
},
file_postfix="vmhwm")