mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Tue, 23 Apr 2024 12:10:38 +0100
changeset 5894 ba71fdc8ea73
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_muc_rtbl: Fix blocking of PMs from RTBL matches

-- Provides total CPU time, useful for DERIVE

module:set_global();

module:provides("statistics", {
	statistics = {
		cpu_total = { -- milliseconds of CPU time used
			get = function()
				return os.clock() * 1000;
			end
		}
	}
});