Software /
code /
prosody-modules
File
mod_statistics_cputotal/mod_statistics_cputotal.lua @ 1384:f67eacb1ac9f
mod_candy: Redirect from /candy -> /candy/
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 11 Apr 2014 14:58:44 +0200 |
parent | 1378:aa371405db34 |
child | 1386:4557ac5c205d |
line wrap: on
line source
-- Provides total CPU time, useful for DERIVE module:provides("statistics", { statistics = { cpu_total = { -- milliseconds of CPU time used get = function() return os.clock() * 1000; end } } });