File

mod_statistics_cputotal/mod_statistics_cputotal.lua @ 5380:822d26271d9f

mod_rest/rest.sh: Set software_id in client registration to something Mostly just for exercising the extra fields.
author Kim Alvefur <zash@zash.se>
date Thu, 27 Apr 2023 20:56:24 +0200
parent 1386:4557ac5c205d
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
		}
	}
});