Mercurial > prosody-modules
view mod_measure_malloc/mod_measure_malloc.lua @ 3640:b2f32b3c6ec1
mod_smacks: fix bug in bad client handling introduced by last commit
Use absolute h-values instead of queue-count to determine if a new
request should be sent out or if we are looping instead.
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Fri, 02 Aug 2019 18:26:06 +0200 |
parents | a83eed629d4b |
children | 5b4f43b90766 |
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("amount", "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);