File

mod_statistics_cputotal/mod_statistics_cputotal.lua @ 3311:5b3347056f07

mod_conversejs/README: Fix links to mod_bosh and mod_websocket (thanks jubalh)
author Kim Alvefur <zash@zash.se>
date Mon, 10 Sep 2018 14:49:49 +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
		}
	}
});