view mod_measure_malloc/mod_measure_malloc.lua @ 3673:11ebf1da416b

mod_muc_webchat_url: Don't save templated value This prevents changing of other settings without touching the webchat URL from saving the template value. Otherwise the URL will still be advertised when configuring members-only or hidden.
author Kim Alvefur <zash@zash.se>
date Tue, 17 Sep 2019 17:22:35 +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);