view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1385:da9469e68dee

mod_mam_muc: Place stanza type in 'with' column; when sending history, only send messages with type=groupchat
author daurnimator <quae@daurnimator.com>
date Tue, 15 Apr 2014 14:22:18 -0400
parents aa371405db34
children 4557ac5c205d
line wrap: on
line source

-- Provides total CPU time, useful for DERIVE

module:provides("statistics", {
	statistics = {
		cpu_total = { -- milliseconds of CPU time used
			get = function()
				return os.clock() * 1000;
			end
		}
	}
});