Ticket #598: munin_plugin_irqstats.patch
| File munin_plugin_irqstats.patch, 396 bytes (added by sumpfralle, 3 years ago) |
|---|
-
irqstats
old new 70 70 $irq = shift @data; 71 71 next unless length $irq; 72 72 chop $irq; 73 if ($irq =~ /^\d+$/) { 73 # numeric values or something like NMI/RES/CAL are accepted 74 if (($irq =~ /^\d+$/) || ($irq =~/^[A-Z]{3}$/)) { 74 75 $label = pop @data; 75 76 $type = pop @data; 76 77 }
