view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 3546:ef5d52ca31bb

mod_muc_lang: Abort on Prosody 0.11 which supports this natively (thanks Ge0rG)
author Kim Alvefur <zash@zash.se>
date Wed, 03 Apr 2019 11:37:13 +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
		}
	}
});