Mercurial > prosody-modules
view mod_measure_malloc/mod_measure_malloc.lua @ 4331:2e355540f8c8
mod_cloud_notify_encrypted: Truncate message body to 255 characters
Total size limit is 3-4KB, and this should be enough for a small notification.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 13 Jan 2021 14:19:20 +0000 |
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);