Mercurial > prosody-modules
view mod_measure_malloc/mod_measure_malloc.lua @ 2809:6d3935226ffb
Backed out changeset 6d72c5172c74
I have no idea why I changed it. Setting it back to 0 allows eg
mod_firewall to work with it.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 23 Oct 2017 17:22:27 +0200 |
parents | 07d6077d2db7 |
children | a83eed629d4b |
line wrap: on
line source
module:set_global(); local measure = require"core.statsmanager".measure; local pposix = require"util.pposix"; local measures = {}; setmetatable(measures, { __index = function (t, k) local m = measure("sizes", "memory."..k); t[k] = m; return m; end }); module:hook("stats-update", function () local m = measures; for k, v in pairs(pposix.meminfo()) do m[k](v); end end);