mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Thu, 29 Feb 2024 16:33:15 +0000
changeset 5851 d00af6ebb326
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_spam_report_forwarder: Only forward to xmpp: URIs, and exclude MUCs

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