Mercurial > prosody-modules
diff mod_http_stats_stream/mod_http_stats_stream.lua @ 3643:740870196b97
mod_http_stats_stream: Make global to simplify
The stats are all global anyways and HTTP modules can now be global.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 09 Aug 2019 19:00:35 +0200 |
parents | fd054689a64c |
children | bac3dae031ee |
line wrap: on
line diff
--- a/mod_http_stats_stream/mod_http_stats_stream.lua Fri Aug 09 18:59:35 2019 +0200 +++ b/mod_http_stats_stream/mod_http_stats_stream.lua Fri Aug 09 19:00:35 2019 +0200 @@ -1,3 +1,5 @@ +module:set_global(); + local statsman = require "core.statsmanager"; local http = require "net.http.server"; local json = require "util.json"; @@ -28,7 +30,7 @@ end -module:hook_global("stats-updated", function (event) +module:hook("stats-updated", function (event) local data = table.concat({ "event: stats-updated"; "data: "..json.encode(event.changed_stats);