mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Sun, 28 Aug 2022 17:30:52 +0100
changeset 5028 1cb762f72a91
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_isr: XEP-0397: Instant Stream Resumption

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