aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/interface.php
blob: bda05502ec583db19c430299b9a63788d9ff2fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php

# Collectd Interface plugin

require_once 'conf/common.inc.php';
require_once 'type/GenericIO.class.php';

# LAYOUT
# interface/
# interface/if_errors-XXXX.rrd
# interface/if_octets-XXXX.rrd
# interface/if_packets-XXXX.rrd

$obj = new Type_GenericIO;
$obj->datadir = $CONFIG['datadir'];
$obj->path_format = '{host}/{plugin}/{type}-{tinstance}.rrd';
$obj->args = array(
	'host' => $host,
	'plugin' => $plugin,
	'pinstance' => $pinstance,
	'type' => $type,
	'tinstance' => $tinstance,
);
$obj->data_sources = array('rx', 'tx');
$obj->ds_names = array(
	'rx' => 'Receive ',
	'tx' => 'Transmit',
);
$obj->colors = array(
	'rx' => '0000ff',
	'tx' => '00b000',
);
$obj->width = $width;
$obj->heigth = $heigth;
$obj->seconds = $seconds;
$obj->rrd_format = '%5.1lf%s';
switch($type) {
	case 'if_errors':
		$obj->rrd_title = "Interface Errors ($tinstance) on $host";
		$obj->rrd_vertical = 'Errors per second';
	break;
	case 'if_octets':
		$obj->rrd_title = "Interface Traffic ($tinstance) on $host";
		$obj->rrd_vertical = 'Bits per second';
	break;
	case 'if_packets':
		$obj->rrd_title = "Interface Packets ($tinstance) on $host";
		$obj->rrd_vertical = 'Packets per second';
	break;
}

$obj->rrd_graph();

?>