mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Wed, 13 Jul 2022 11:20:09 +0100
changeset 5002 5ab134b7e510
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_http_oauth2: Updates for Prosody's new role API (backwards-compatible)

-- 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
		}
	}
});