changeset 3367:a83eed629d4b

mod_measure_malloc: Use the 'amount' measure type Here too
author Kim Alvefur <zash@zash.se>
date Mon, 29 Oct 2018 01:33:14 +0100
parents 6d1c5ecf72c1
children 76fc915647ab
files mod_measure_malloc/mod_measure_malloc.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mod_measure_malloc/mod_measure_malloc.lua	Mon Oct 29 01:21:29 2018 +0100
+++ b/mod_measure_malloc/mod_measure_malloc.lua	Mon Oct 29 01:33:14 2018 +0100
@@ -6,7 +6,7 @@
 local measures = {};
 setmetatable(measures, {
 	__index = function (t, k)
-		local m = measure("sizes", "memory."..k); t[k] = m; return m;
+		local m = measure("amount", "memory."..k); t[k] = m; return m;
 	end
 });
 module:hook("stats-update", function ()