aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/md.php
blob: c435a23938121f2e6cc733e86c07288ffda8da04 (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 MD plugin

require_once 'conf/common.inc.php';
require_once 'type/Default.class.php';
require_once 'inc/collectd.inc.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';

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