mod_csi_simple: Report whitespace keepalives

Single space character is sent by mod_c2s when a session has been
silent for some time. This should account for the vast majority of raw
strings passing through here. If this is not the case then having stats
to say otherwise will be interesting.
This commit is contained in:
Kim Alvefur 2020-05-10 23:09:15 +02:00
parent 9b7ab06ef3
commit c34f2c9ebf

View file

@ -16,8 +16,9 @@ local queue_size = module:get_option_number("csi_queue_size", 256);
local important_payloads = module:get_option_set("csi_important_payloads", { }); local important_payloads = module:get_option_set("csi_important_payloads", { });
function is_important(stanza) --> boolean, reason: string function is_important(stanza) --> boolean, reason: string
if type(stanza) == "string" then if stanza == " " then
-- whitespace pings etc return true, "whitespace keepalive";
elseif type(stanza) == "string" then
return true, "raw data"; return true, "raw data";
elseif not st.is_stanza(stanza) then elseif not st.is_stanza(stanza) then
return true; return true;