File

mod_statistics_cputotal/mod_statistics_cputotal.lua @ 5620:a9682cad0e67

mod_http_oauth2: Mention Device flow in list of flows in README
author Kim Alvefur <zash@zash.se>
date Fri, 21 Jul 2023 00:29: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
		}
	}
});