Basta substituir if_eth0:down
por if_eth0.down
.
Eu tenho uma configuração padrão do nó munin em 3 dos meus servidores, e gostaria de criar um gráfico de resumo que exibe a largura de banda total de saída.
Aqui está o que eu fiz minin.conf:
[example.com;aggregation]
update no
total_bandwidth.graph_title Aggregated bandwidth
total_bandwidth.upload.label upload
total_bandwidth.upload.sum \
serv1.example.com:if_eth0:up \
serv2.example.com:if_eth0:up \
serv3.example.com:if_eth0:up
Mas não está funcionando, só recebo imagens quebradas em vez de gráficos. Em munin-graph.log:
[RRD ERROR] Unable to graph /var/www/munin/example.com/aggregation/total_bandwidth-month.png : opening '': No such file or directory
EDITAR:
Seguindo link , tentei que não funcionasse melhor:
[example.com;aggregation]
update no
total_bandwidth.graph_title Our total bandwidth
total_bandwidth.out.sum example.com;serv1.example.com:if_eth0:up example.com;serv2.example.com:if_eth0:up
total_bandwidth.out.draw STACK
total_bandwidth.out.label Out bandwidth
total_bandwidth.in.sum example.com;serv1.example.com:if_eth0:down example.com;serv2.example.com:if_eth0:down
total_bandwidth.in.draw STACK
total_bandwidth.in.label In bandwidth
Tags monitoring debian munin