aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/irq.php
blob: 406b7078fe5b0f62faa5178be5ea922a65cfe7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

# Collectd IRQ plugin

require_once 'conf/common.inc.php';
require_once 'type/GenericStacked.class.php';
require_once 'inc/collectd.inc.php';

## LAYOUT
# irq/
# irq/irq-XX.rrd

$obj = new Type_GenericStacked($CONFIG);
$obj->width = $width;
$obj->heigth = $heigth;

$obj->rrd_title = 'Interrupts';
$obj->rrd_vertical = 'IRQs/s';
$obj->rrd_format = '%6.1lf';

collectd_flush($obj->identifiers);
$obj->rrd_graph();