Mercurial > prosody-modules
view mod_discodot/mod_discodot.tl @ 5787:e79f9dec35c0
mod_c2s_conn_throttle: Reduce log level from error->info
Our general policy is that "error" should never be triggerable by remote
entities, and that it is always about something that requires admin
intervention. This satisfies neither condition.
The "warn" level can be used for unexpected events/behaviour triggered by
remote entities, and this could qualify. However I don't think failed auth
attempts are unexpected enough.
I selected "info" because it is what is also used for other notable session
lifecycle events.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 07 Dec 2023 15:46:50 +0000 |
parents | 253df0798996 |
children |
line wrap: on
line source
local cm = require"core.configmanager"; local function format_host(host:string, conf:{string:any}) : string if host == "*" then return "Global"; end local component_module = conf["component_module"]; if component_module is string then if component_module == "component" then return string.format("Component %q", host); else return string.format("Component %q %q", host, component_module); end else return string.format("VirtualHost %q", host); end end function module.command(arg : { string }) : integer local config : { string : { string : any } } = cm.getconfig(); print"digraph \"prosody\" {" for host, conf in pairs(config) do print(string.format("%q [label=%q]", host, format_host(host, conf))); local parent = host:match("%.(.*)"); if parent and rawget(config, parent) then print(string.format("%q -> %q", parent, host)); end local disco_items = conf["disco_items"] if disco_items is { { string, string } } then for _, pair in ipairs(disco_items) do print(string.format("%q -> %q", host, pair[1])); end end end print"}" return 0 end