aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/md.php
blob: 9d09efeb23ffdafc4766701b6fe5404819e430f2 (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->legend = array(
	'value' => 'Value',
);
$obj->rrd_title = sprintf('Disks (md-%s)', $obj->args['pinstance']);
$obj->rrd_vertical = '#';
$obj->rrd_format = '%2.0lf';

$obj->rrd_graph();