Mercurial > prosody-modules
view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2630:96eb1c4f9ff7
mod_auth_http_async: Use "net.http" for async case.
author | JC Brand <jc@opkode.com> |
---|---|
date | Tue, 21 Mar 2017 09:31:13 +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 } } });