aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/md.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/md.php')
-rw-r--r--plugin/md.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/plugin/md.php b/plugin/md.php
deleted file mode 100644
index 9d09efe..0000000
--- a/plugin/md.php
+++ /dev/null
@@ -1,20 +0,0 @@
1<?php
2
3# Collectd MD plugin
4
5require_once 'conf/common.inc.php';
6require_once 'type/Default.class.php';
7
8## LAYOUT
9# md-XXXX/
10# md-XXXX/md_disks-XXXX.rrd
11
12$obj = new Type_Default($CONFIG, $_GET);
13$obj->legend = array(
14 'value' => 'Value',
15);
16$obj->rrd_title = sprintf('Disks (md-%s)', $obj->args['pinstance']);
17$obj->rrd_vertical = '#';
18$obj->rrd_format = '%2.0lf';
19
20$obj->rrd_graph();