File

mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1874:8ef500508c59

mod_http_upload.lua: use official namespace from XEP-0363
author Michael Töglhofer <michael@toeglhofer.net>
date Thu, 24 Sep 2015 07:22:11 +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
		}
	}
});