mirror of
https://github.com/munin-monitoring/muninlite.git
synced 2024-11-13 07:11:12 +01:00
muninlite: fix irqstats plugin
The config() function of irqstats seems to contain a superfluous semicolon, causing munin to choke on this plugin. This simple patch fixes exactly that. Source: patch "240-fix-irqstats" from OpenWrt Author: Jorik Jonker
This commit is contained in:
parent
b2366408f6
commit
56bf90a6f8
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
config_irqstats() {
|
||||
echo "graph_title Individual interrupts
|
||||
graph_args --base 1000 -l 0;
|
||||
graph_args --base 1000 -l 0
|
||||
graph_vlabel interrupts / \${graph_period}
|
||||
graph_category system"
|
||||
CPUS=$(grep 'CPU[0-9]' /proc/interrupts | wc -w)
|
||||
|
|
Loading…
Reference in a new issue