aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/df.php
blob: f6d861b1f8f232bb0390b1f54cd4dc03fa65bc6c (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
<?php

# Collectd Df plugin

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

# LAYOUT
#
# df-X/df_complex-free.rrd
# df-X/df_complex-reserved.rrd
# df-X/df_complex-used.rrd

$obj = new Type_GenericStacked($CONFIG, $_GET);
$obj->data_sources = array('value');
$obj->order = array('reserved', 'free', 'used');
$obj->ds_names = array(
	'reserved' => 'Reserved',
	'free' => 'Free',
	'used' => 'Used',
);
$obj->colors = array(
	'reserved' => 'aaaaaa',
	'free' => '00ff00',
	'used' => 'ff0000',
);

switch($obj->args['type']) {
	case 'df_complex':
	default:
		$obj->rrd_title = sprintf('Free space (%s)', $obj->args['pinstance']);
		$obj->rrd_vertical = 'Bytes';
		$obj->rrd_format = '%5.1lf%sB';
		break;
	case 'df_inodes':
		$obj->rrd_title = sprintf('Free inodes (%s)', $obj->args['pinstance']);
		$obj->rrd_vertical = 'Inodes';
		$obj->rrd_format = '%5.1lf%s';
		break;
}

# backwards compatibility
if ($CONFIG['version'] < 5) {
	$obj->data_sources = array('free', 'used');
	$obj->rrd_title = sprintf('Free space (%s)', $obj->args['tinstance']);
}

$obj->rrd_graph();