mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Tue, 31 Mar 2015 12:44:28 +0100
changeset 1641 9276473ee5be
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_log_events: Module to log all events on the server/host

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