mod_statistics_cputotal/mod_statistics_cputotal.lua
author Matthew Wild <mwild1@gmail.com>
Wed, 17 Apr 2024 16:48:22 +0100
changeset 5893 2597e2113561
parent 1386 4557ac5c205d
permissions -rw-r--r--
mod_sasl2: Log when tls-exporter is NOT supported, as well as when it is

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