diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-06-22 13:20:38 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-06-22 13:20:38 +0100 |
commit | d869a898035d7bd35daa5ce6ef973747e31ce8fc (patch) | |
tree | 11fb0de7077b194ae6221d63b387026d602fc061 | |
parent | 899924566ef8a30745387efac5003536d3ffd088 (diff) | |
download | prosody-d869a898035d7bd35daa5ce6ef973747e31ce8fc.tar.gz prosody-d869a898035d7bd35daa5ce6ef973747e31ce8fc.zip |
mod_admin_telnet: Add debug:events() and debug:logevents()
-rw-r--r-- | plugins/mod_admin_telnet.lua | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/plugins/mod_admin_telnet.lua b/plugins/mod_admin_telnet.lua index 9d0e4c74..5e8d8534 100644 --- a/plugins/mod_admin_telnet.lua +++ b/plugins/mod_admin_telnet.lua @@ -12,6 +12,7 @@ local hostmanager = require "core.hostmanager"; local modulemanager = require "core.modulemanager"; local s2smanager = require "core.s2smanager"; local portmanager = require "core.portmanager"; +local helpers = require "util.helpers"; local _G = _G; @@ -1130,6 +1131,26 @@ function def_env.http:list() return true; end +def_env.debug = {}; + +function def_env.debug:logevents(host) + helpers.log_host_events(host); + return true; +end + +function def_env.debug:events(host, event) + local events_obj; + if host and host ~= "*" then + if not hosts[host] then + return false, "Unknown host: "..host; + end + events_obj = hosts[host].events; + else + events_obj = prosody.events; + end + return true, helpers.show_events(events_obj, event); +end + module:hook("server-stopping", function(event) for conn, session in pairs(sessions) do session.print("Shutting down: "..(event.reason or "unknown reason")); |