view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2037:632aa9f49aed

mod_mam/README: Update default_archive_policy table for new default (thanks xnyhps)
author Kim Alvefur <zash@zash.se>
date Tue, 02 Feb 2016 16:20: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
		}
	}
});