view mod_measure_malloc/mod_measure_malloc.lua @ 4355:31afa4f314cc

mod_cloud_notify: Fix handling of push_queue smacks-hibernating while the push_queue had a timer running resulted in push not working for this session anymore.
author tmolitor <thilo@eightysoft.de>
date Sun, 17 Jan 2021 21:52:36 +0100
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);