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

# Collectd MD plugin

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

## LAYOUT
# md-XXXX/
# md-XXXX/md_disks-XXXX.rrd

$obj = new Type_Default($CONFIG, $_GET);
$obj->ds_names = array(
	'value' => 'Value',
);
$obj->rrd_title = sprintf('Disks (md-%s)', $obj->args['pinstance']);
$obj->rrd_vertical = '#';
$obj->rrd_format = '%2.0lf';

$obj->rrd_graph();