Mercurial > prosody-modules
view mod_log_rate/mod_log_rate.lua @ 4996:031e0dd90f4b
mod_cloud_notify: Rename field in event for clarity ('node' is ambiguous here)
...because the push protocol is based on XEP-0060, and the 'node' can mean the
identifier communicated to the push service.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Wed, 13 Jul 2022 11:15:43 +0100 |
parents | f388747c53c7 |
children |
line wrap: on
line source
module:set_global(); local function sink_maker(config) local levels = { debug = module:measure("log.debug", "rate"); info = module:measure("log.info", "rate"); warn = module:measure("log.warn", "rate"); error = module:measure("log.error", "rate"); }; return function (_, level) return levels[level](); end end require"core.loggingmanager".register_sink_type("measure", sink_maker);