Software /
code /
prosody-modules
Diff
mod_measure_malloc/mod_measure_malloc.lua @ 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 |
parent | 2708:07d6077d2db7 |
child | 4575:5b4f43b90766 |
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 ()