Software /
code /
prosody-modules
File
mod_measure_malloc/mod_measure_malloc.lua @ 4065:92152437ecfe
mod_muc_markers: replace configurable multi-marker tracking with better system
Now tracks a single marker, but automatically applies rules from the XEP about
"higher" markers implying "lower" markers - i.e. "displayed" implies "received".
Still, just a single marker is tracked and synthesized at all times (the one
configured with muc_marker_name).
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Tue, 07 Jul 2020 17:08:08 +0100 |
parent | 3367:a83eed629d4b |
child | 4575: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);