view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2428:06e3b0ef8bdf

mod_mam_muc: Remove TODO about logging presence since it can do that already
author Kim Alvefur <zash@zash.se>
date Mon, 26 Dec 2016 15:43:32 +0100
parents 4557ac5c205d
children
line wrap: on
line source

-- 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
		}
	}
});