view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2921:3264058ae54f

mod_conversejs: Hack in support for changing the CSS if InVerse mode is enabled
author Kim Alvefur <zash@zash.se>
date Sat, 10 Mar 2018 00:49:06 +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
		}
	}
});