view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 5351:c35f3c1762b5

mod_audit: Move underscore to avoid luacheck warning Underscore as prefix is taken as a signal that the variable is unused, but then it is used and luacheck makes noise about that.
author Kim Alvefur <zash@zash.se>
date Mon, 17 Apr 2023 08:26:20 +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
		}
	}
});