aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 14:59:20 +0200
committerFlorian Fischer <florian.fl.fischer@fau.de>2020-06-10 15:00:05 +0200
commit118676642c9b6cdb5579edf4f3900c5a6345314f (patch)
treec2fad470fa950c7a82890199a1ea38c9e3b6ee37
parentd18439c8d66878045ad32db7a6882f384a647c33 (diff)
downloadallocbench-118676642c9b6cdb5579edf4f3900c5a6345314f.tar.gz
allocbench-118676642c9b6cdb5579edf4f3900c5a6345314f.zip
[mysql] fix VmHWM plots
-rw-r--r--allocbench/benchmarks/mysql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/allocbench/benchmarks/mysql.py b/allocbench/benchmarks/mysql.py
index 541a5ac..72b1c8d 100644
--- a/allocbench/benchmarks/mysql.py
+++ b/allocbench/benchmarks/mysql.py
@@ -247,7 +247,7 @@ class BenchmarkMYSQL(Benchmark):
# Memusage
plt.plot(self,
- "{mysqld_vmhwm}",
+ "{mysqld_VmHWM}",
plot_type='bar',
fig_options={
'xlabel': 'threads',
@@ -262,7 +262,7 @@ class BenchmarkMYSQL(Benchmark):
"sort": ">"
}, {
"label": "Memusage [KB]",
- "expression": "{mysqld_vmhwm}",
+ "expression": "{mysqld_VmHWM}",
"sort": "<"
}],
file_postfix="table")