diff options
Diffstat (limited to 'plugin/irq.php')
-rw-r--r-- | plugin/irq.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/plugin/irq.php b/plugin/irq.php deleted file mode 100644 index 6cd87f9..0000000 --- a/plugin/irq.php +++ /dev/null | |||
@@ -1,18 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | # Collectd IRQ plugin | ||
4 | |||
5 | require_once 'conf/common.inc.php'; | ||
6 | require_once 'type/GenericStacked.class.php'; | ||
7 | |||
8 | ## LAYOUT | ||
9 | # irq/ | ||
10 | # irq/irq-XX.rrd | ||
11 | |||
12 | $obj = new Type_GenericStacked($CONFIG, $_GET); | ||
13 | |||
14 | $obj->rrd_title = 'Interrupts'; | ||
15 | $obj->rrd_vertical = 'IRQs/s'; | ||
16 | $obj->rrd_format = '%6.1lf'; | ||
17 | |||
18 | $obj->rrd_graph(); | ||