mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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 listener = {};
|
||||||
local runner_callbacks = {};
|
local runner_callbacks = {};
|
||||||
|
|
||||||
|
local m_tls_params = module:metric(
|
||||||
|
"counter", "encrypted", "",
|
||||||
|
"Encrypted connections",
|
||||||
|
{"protocol"; "cipher"}
|
||||||
|
);
|
||||||
|
|
||||||
module:hook("stats-update", function ()
|
module:hook("stats-update", function ()
|
||||||
-- for push backends, avoid sending out updates for each increment of
|
-- for push backends, avoid sending out updates for each increment of
|
||||||
-- the metric below.
|
-- the metric below.
|
||||||
|
@ -115,6 +121,7 @@ function stream_callbacks._streamopened(session, attr)
|
||||||
local info = sock:info();
|
local info = sock:info();
|
||||||
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
||||||
session.compressed = info.compression;
|
session.compressed = info.compression;
|
||||||
|
m_tls_params:with_labels(info.protocol, info.cipher):add(1)
|
||||||
else
|
else
|
||||||
(session.log or log)("info", "Stream encrypted");
|
(session.log or log)("info", "Stream encrypted");
|
||||||
end
|
end
|
||||||
|
|
|
@ -71,6 +71,11 @@ local m_closed_connections = module:metric(
|
||||||
"Closed connections",
|
"Closed connections",
|
||||||
{"host", "direction", "error"}
|
{"host", "direction", "error"}
|
||||||
);
|
);
|
||||||
|
local m_tls_params = module:metric(
|
||||||
|
"counter", "encrypted", "",
|
||||||
|
"Encrypted connections",
|
||||||
|
{"protocol"; "cipher"}
|
||||||
|
);
|
||||||
|
|
||||||
local sessions = module:shared("sessions");
|
local sessions = module:shared("sessions");
|
||||||
|
|
||||||
|
@ -384,6 +389,7 @@ function stream_callbacks._streamopened(session, attr)
|
||||||
local info = sock:info();
|
local info = sock:info();
|
||||||
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
(session.log or log)("info", "Stream encrypted (%s with %s)", info.protocol, info.cipher);
|
||||||
session.compressed = info.compression;
|
session.compressed = info.compression;
|
||||||
|
m_tls_params:with_labels(info.protocol, info.cipher):add(1)
|
||||||
else
|
else
|
||||||
(session.log or log)("info", "Stream encrypted");
|
(session.log or log)("info", "Stream encrypted");
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue