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

# Collectd PowerDNS plugin

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


$obj = new Type_Default($CONFIG);

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

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