view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 5050:48c27b51f992

mod_spam_reporting: Remove redundant rockspec dependency on mod_blocklist mod_blocklist is included in the same version that has the plugin installer
author Kim Alvefur <zash@zash.se>
date Fri, 23 Sep 2022 12:10:03 +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
		}
	}
});