aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-06-06 21:29:34 +0100
committerMatthew Wild <mwild1@gmail.com>2009-06-06 21:29:34 +0100
commit2c8f13edc6e93b58c6e21fe8cb46bd3a84221a8b (patch)
tree71d6bb597c33363b2468fe8cab38c0d2c88c5fcf /plugins
parent78259b97be85a222f040dda7d3e27f719e3b467d (diff)
downloadprosody-2c8f13edc6e93b58c6e21fe8cb46bd3a84221a8b.tar.gz
prosody-2c8f13edc6e93b58c6e21fe8cb46bd3a84221a8b.zip
mod_console: Show total incoming/outgoing s2s connections
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_console.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/mod_console.lua b/plugins/mod_console.lua
index c676c0eb..77d76a82 100644
--- a/plugins/mod_console.lua
+++ b/plugins/mod_console.lua
@@ -318,10 +318,14 @@ def_env.s2s = {};
function def_env.s2s:show(match_jid)
local _print = self.session.print;
local print = self.session.print;
+
+ local count_in, count_out = 0,0;
+
for host, host_session in pairs(hosts) do
print = function (...) _print(host); _print(...); print = _print; end
for remotehost, session in pairs(host_session.s2sout) do
if (not match_jid) or remotehost:match(match_jid) or host:match(match_jid) then
+ count_out = count_out + 1;
print(" "..host.." -> "..remotehost);
if session.sendq then
print(" There are "..#session.sendq.." queued outgoing stanzas for this connection");
@@ -354,6 +358,7 @@ function def_env.s2s:show(match_jid)
for session in pairs(incoming_s2s) do
if session.to_host == host and ((not match_jid) or host:match(match_jid)
or (session.from_host and session.from_host:match(match_jid))) then
+ count_in = count_in + 1;
print(" "..host.." <- "..(session.from_host or "(unknown)"));
if session.type == "s2sin_unauthed" then
print(" Connection not yet authenticated");
@@ -371,10 +376,13 @@ function def_env.s2s:show(match_jid)
for session in pairs(incoming_s2s) do
if not session.to_host and ((not match_jid) or session.from_host and session.from_host:match(match_jid)) then
+ count_in = count_in + 1;
print("Other incoming s2s connections");
print(" (unknown) <- "..(session.from_host or "(unknown)"));
end
end
+
+ return true, "Total: "..count_out.." outgoing, "..count_in.." incoming connections";
end
-------------