view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2713:eea1d5bac451

mod_smacks: Fix delayed_ack event After the first delayed ack every queued stanza should immediately trigger the delayed_ack event.
author tmolitor <thilo@eightysoft.de>
date Mon, 08 May 2017 19:36:37 +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
		}
	}
});