aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_s2s
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2016-09-12 22:31:25 +0100
committerMatthew Wild <mwild1@gmail.com>2016-09-12 22:31:25 +0100
commitf4690a6063ec7940ef304691906fdfdebb57eab6 (patch)
tree1b740492720e5c386b928514e711e90e705f5693 /plugins/mod_s2s
parent0e971a43895405f996ea49fc70142ec9ba182cc1 (diff)
parentcd10e4439e1c9b6209f87bb6c77e51fb2f7992fc (diff)
downloadprosody-f4690a6063ec7940ef304691906fdfdebb57eab6.tar.gz
prosody-f4690a6063ec7940ef304691906fdfdebb57eab6.zip
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r--plugins/mod_s2s/mod_s2s.lua13
1 files changed, 3 insertions, 10 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua
index a6fdd254..c9b6b137 100644
--- a/plugins/mod_s2s/mod_s2s.lua
+++ b/plugins/mod_s2s/mod_s2s.lua
@@ -38,7 +38,7 @@ local secure_domains, insecure_domains =
module:get_option_set("s2s_secure_domains", {})._items, module:get_option_set("s2s_insecure_domains", {})._items;
local require_encryption = module:get_option_boolean("s2s_require_encryption", false);
-local measure_connections = module:measure("connections", "counter");
+local measure_connections = module:measure("connections", "amount");
local sessions = module:shared("sessions");
@@ -46,7 +46,7 @@ local runner_callbacks = {};
local log = module._log;
-do
+module:hook("stats-update", function ()
-- Connection counter resets to 0 on load and reload
-- Bump it up to current value
local count = 0;
@@ -54,7 +54,7 @@ do
count = count + 1;
end
measure_connections(count);
-end
+end);
--- Handle stanzas to remote domains
@@ -619,7 +619,6 @@ function runner_callbacks:error(err)
end
function listener.onconnect(conn)
- measure_connections(1);
conn:setoption("keepalive", opt_keepalives);
local session = sessions[conn];
if not session then -- New incoming connection
@@ -650,13 +649,7 @@ function listener.onstatus(conn, status)
end
end
-function listener.ontimeout(conn)
- -- Called instead of onconnect when the connection times out
- measure_connections(1);
-end
-
function listener.ondisconnect(conn, err)
- measure_connections(-1);
local session = sessions[conn];
if session then
sessions[conn] = nil;