Mercurial > prosody-modules
view mod_statistics_cputotal/mod_statistics_cputotal.lua @ 2443:7f9ff36dc8d5
mod_http_upload: Update for size limit error reporting change in XEP-0363 v0.2 (fixes #813)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 16 Jan 2017 01:40:45 +0100 |
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 } } });