view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2672:75ab061069aa

mod_pinger: Don't ping when smacks hibernated the session, fixes #712
author tmolitor <thilo@eightysoft.de>
date Thu, 06 Apr 2017 02:35:06 +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
		}
	}
});