view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1468:cf32265eb4c7

mod_onions: Actually define the variable "stanza" to contain "event.stanza", fixing problems of stanzas being dropped for outgoing connections.
author Thijs Alkemade <me@thijsalkema.de>
date Fri, 04 Jul 2014 14:47:14 +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
		}
	}
});