view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 3992:0233da912ab6

mod_csi_muc_priorities: Fix bad argument to 'ipairs' on a missing list If either of the two list-multi are empty then apparently nothing thougth to include an empty array. Meh.
author Kim Alvefur <zash@zash.se>
date Thu, 23 Apr 2020 22:07:44 +0200
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
		}
	}
});