view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1616:28411e97db94

mod_mam_muc: support to disable presence logging via muc_log_presences
author Stuart Carnie <stuart.carnie@gmail.com>
date Mon, 23 Feb 2015 16:43:21 -0700
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
		}
	}
});