mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_c2s,mod_s2s: Collect stats on TLS versions and ciphers
This commit is contained in:
parent
df48c1e867
commit
aa041ffa10
2 changed files with 13 additions and 0 deletions
|
@ -39,6 +39,12 @@ local stream_callbacks = { default_ns = "jabber:client" };
|
|||
local listener = {};
|
||||
local runner_callbacks = {};
|
||||
|
||||
local m_tls_params = module:metric(
|
||||
"counter", "encrypted", "",
|
||||
"Encrypted connections",
|
||||
{"protocol"; "cipher"}
|
||||
);
|
||||
|
||||
module:hook("stats-update", function ()
|
||||
-- for push backends, avoid sending out updates for each increment of
|
||||
-- the metric below.
|
||||
|
@ -115,6 +121,7 @@ function stream_callbacks._streamopened(session, attr)
|
|||
local info = sock:info();
|
||||
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
||||
session.compressed = info.compression;
|
||||
m_tls_params:with_labels(info.protocol, info.cipher):add(1)
|
||||
else
|
||||
(session.log or log)("info", "Stream encrypted");
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue