view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 3838:9f0c10bd4633

mod_http_upload: Recommend against adding to modules_enabled Users were confused. Client compatibility is mixed (though I think most/all are fixed now).
author Matthew Wild <mwild1@gmail.com>
date Wed, 08 Jan 2020 10:55:43 +0000
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
		}
	}
});