Tentando descobrir quais campos eram permitidos no munin.conf, acabei lendo o código-fonte de Config.pm .
Infelizmente, as únicas referências ao registro são as seguintes:
config => bless ( {
debug => 0,
logdir => $Munin::Common::Defaults::MUNIN_LOGDIR,
}, $class )
Mas analisar o código-fonte mostra alguns commits recentes nas mensagens registradas:
@@ -90,7 +90,7 @@ while (new CGI::Fast) {
my $pinpoint = undef;
my $path = $ENV{PATH_INFO} || "";
- INFO "Request path is $path";
+ DEBUG "Request path is $path";
# The full URL looks like this:
# Case 1:
@@ -133,7 +133,7 @@ while (new CGI::Fast) {
my ($dom, $host, $serv, $scale) =
$path =~ m#^/(.*)/([^/]+)/([\w-]+)-([\w=,]+)\.png#; ## avoid bug in vim
- INFO "asked for ($dom, $host, $serv, $scale)";
+ DEBUG "asked for ($dom, $host, $serv, $scale)";
if ($scale =~ /pinpoint=(\d+),(\d+)/) {
$pinpoint = [ $1, $2, ];
Eu atualizei o munin para o 2.0.6-1 enquanto estava rodando o Debian estável 1.4.5-3 e o logging era de fato reduzido!