diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-10 14:59:30 +0200 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-06-10 15:00:05 +0200 |
| commit | aaab28eff6583ce3822aa3119f58a3f4f644742d (patch) | |
| tree | e0bc2aa36a01f35c50acd5fb4ac39fc1a2b35950 | |
| parent | 118676642c9b6cdb5579edf4f3900c5a6345314f (diff) | |
| download | allocbench-aaab28eff6583ce3822aa3119f58a3f4f644742d.tar.gz allocbench-aaab28eff6583ce3822aa3119f58a3f4f644742d.zip | |
[redis.py] fix VmHWM plots
| -rw-r--r-- | allocbench/benchmarks/redis.py | 6 |
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") |
