mod_c2s,mod_s2s: Collect stats on TLS versions and ciphers

This commit is contained in:
Kim Alvefur 2021-06-16 00:00:17 +02:00
parent df48c1e867
commit aa041ffa10
2 changed files with 13 additions and 0 deletions

View file

@ -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