aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/bind.php
blob: cfbd4c694938f1181f060b0b134159a6f60a4ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

# Collectd bind plugin

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


$obj = new Type_GenericStacked($CONFIG, $_GET);

$obj->rrd_title = sprintf('%s/%s', $obj->args['pinstance'], $obj->args['type']);
$obj->rrd_format = '%5.1lf%s';

$obj->rrd_graph();