diff options
author | Kim Alvefur <zash@zash.se> | 2015-04-26 00:06:11 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-04-26 00:06:11 +0200 |
commit | b028ed1feed0ca36b0923533df89a184412cdc2c (patch) | |
tree | b0e5bddeb790f735271b1daca5e1ea612a7a0dba /plugins/mod_c2s.lua | |
parent | 3439df2a51cc3e003c31354f23a0d8ac6002fab1 (diff) | |
download | prosody-b028ed1feed0ca36b0923533df89a184412cdc2c.tar.gz prosody-b028ed1feed0ca36b0923533df89a184412cdc2c.zip |
mod_c2s, mod_s2s: Collect statistics on number of connections
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r-- | plugins/mod_c2s.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index 4238b2e7..1423eaa3 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -28,6 +28,8 @@ 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 sessions = module:shared("sessions"); local core_process_stanza = prosody.core_process_stanza; local hosts = prosody.hosts; @@ -198,6 +200,7 @@ end --- Port listener function listener.onconnect(conn) + measure_connections(1); local session = sm_new_session(conn); sessions[conn] = session; @@ -270,6 +273,7 @@ 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"); |