irqstats plugin has superfluous ';'
Brought to you by:
runesk
The config() function of the irqstats plugin outputs a superfluous ';', causing munin to choke. See error below:
munin-graph.log:2018/08/29 12:55:43 [RRD ERROR] Unable to graph /var/cache/munin/www/DOMAIN/HOST.DOMAIN/irqstats-month.png : option -l - Converted '0;' to 0.000000, but cannot convert ';'
This effectively causes data not to be graphed, although it is still collected.
The reason for this is the semicolon in line 3 of plugins/irqstats:
1 config_irqstats() {
2 echo "graph_title Individual interrupts
3 graph_args --base 1000 -l 0;
4 graph_vlabel interrupts / \${graph_period}
I've attached a simple patch which rids the world of this problem.
Your patch finally found its way into muninlite's repository (at its new home at github):
https://github.com/munin-monitoring/muninlite/commit/56bf90a6f8bfe68ac76b9911ad2fe470f6b7eb7e
Thank you!