view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1388:6e1facedcb74

mam_sql: Make forwarded a child element of result, rather than a sibling This makes mod_mam_sql conform to a newer version of XEP-313, which some clients require
author Rob Hoelz <rob@hoelz.ro>
date Tue, 22 Apr 2014 20:16:40 -0500
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
		}
	}
});