Software /
code /
prosody-modules
File
mod_stats39/mod_stats39.lua @ 3841:b5d367798570
Fix bug readding stanzas to outgoing_queue on resume
author | tmolitor <thilo@eightysoft.de> |
---|---|
date | Thu, 09 Jan 2020 21:21:09 +0100 |
parent | 3840:054898e84a04 |
child | 3846:3941768916f1 |
line wrap: on
line source
local statsman = require "core.statsmanager"; local st = require "util.stanza"; module:hook("iq/host/http://jabber.org/protocol/stats:query", function (event) local origin, stanza = event.origin, event.stanza; local stats, _, extra = statsman.get_stats(); local reply = st.reply(stanza); reply:tag("query", { xmlns = "http://jabber.org/protocol/stats" }); for stat, value in pairs(stats) do local unit = extra[stat] and extra[stat].units; reply:tag("stat", { name = stat, unit = unit, value = tostring(value) }):up(); end origin.send(reply); return true; end)