aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mysql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql.py b/mysql.py
index 143e9d0..c6d1ddb 100644
--- a/mysql.py
+++ b/mysql.py
@@ -223,7 +223,7 @@ class Benchmark_MYSQL( Benchmark ):
for target, measures in self.results["memusage"].items():
heap_growth = []
for m in measures:
- rss_growth.append(int(m["heap_end"]) - int(m["heap_start"]))
+ heap_growth.append(int(m["heap_end"]) - int(m["heap_start"]))
print(target, "memory footprint:")
print("\t avg heap growth:", np.mean(heap_growth))