view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 6460:5ea925efb343

mod_external_services/README.md: mark obsolete
author Menel <menel@snikket.de>
date Fri, 13 Mar 2026 12:24:06 +0100
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
		}
	}
});