view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1718:48be6e7efbe8

mod_delegation: added 'iq/bare' to hooked events.
author Goffi <goffi@goffi.org>
date Sun, 03 May 2015 17:27:37 +0200
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
		}
	}
});