aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_c2s.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-09-12 15:01:16 +0200
committerKim Alvefur <zash@zash.se>2016-09-12 15:01:16 +0200
commit522f448b356cf7f5b11e9af228e0aa64fd8fa27d (patch)
treedc239f7148a624cde4a4ede7b33319fa98ed0287 /plugins/mod_c2s.lua
parent582a2180f2ebd07d084d85ffd3e7641565be6d2f (diff)
downloadprosody-522f448b356cf7f5b11e9af228e0aa64fd8fa27d.tar.gz
prosody-522f448b356cf7f5b11e9af228e0aa64fd8fa27d.zip
mod_c2s, mod_s2s: Switch connection counting to 'amount' type and enumerate once per statistics interval
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r--plugins/mod_c2s.lua8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua
index 1b5dd91a..041eb1f2 100644
--- a/plugins/mod_c2s.lua
+++ b/plugins/mod_c2s.lua
@@ -27,7 +27,7 @@ local c2s_timeout = module:get_option_number("c2s_timeout");
local stream_close_timeout = module:get_option_number("c2s_close_timeout", 5);
local opt_keepalives = module:get_option_boolean("c2s_tcp_keepalives", module:get_option_boolean("tcp_keepalives", true));
-local measure_connections = module:measure("connections", "counter");
+local measure_connections = module:measure("connections", "amount");
local sessions = module:shared("sessions");
local core_process_stanza = prosody.core_process_stanza;
@@ -36,7 +36,7 @@ local hosts = prosody.hosts;
local stream_callbacks = { default_ns = "jabber:client" };
local listener = {};
-do
+module:hook("stats-update", function ()
-- Connection counter resets to 0 on load and reload
-- Bump it up to current value
local count = 0;
@@ -44,7 +44,7 @@ do
count = count + 1;
end
measure_connections(count);
-end
+end);
--- Stream events handlers
local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'};
@@ -207,7 +207,6 @@ end, 200);
--- Port listener
function listener.onconnect(conn)
- measure_connections(1);
local session = sm_new_session(conn);
sessions[conn] = session;
@@ -276,7 +275,6 @@ function listener.onincoming(conn, data)
end
function listener.ondisconnect(conn, err)
- measure_connections(-1);
local session = sessions[conn];
if session then
(session.log or log)("info", "Client disconnected: %s", err or "connection closed");