aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/powerdns.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/powerdns.php')
-rw-r--r--plugin/powerdns.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugin/powerdns.php b/plugin/powerdns.php
new file mode 100644
index 0000000..c8508cc
--- /dev/null
+++ b/plugin/powerdns.php
@@ -0,0 +1,18 @@
1<?php
2
3# Collectd PowerDNS plugin
4
5require_once 'conf/common.inc.php';
6require_once 'type/Default.class.php';
7require_once 'inc/collectd.inc.php';
8
9
10$obj = new Type_Default($CONFIG);
11$obj->width = $width;
12$obj->heigth = $heigth;
13
14$obj->rrd_title = sprintf('PowerDNS %s (%s)', $obj->args['type'], $obj->args['pinstance']);
15$obj->rrd_format = '%5.1lf%s';
16
17collectd_flush($obj->identifiers);
18$obj->rrd_graph();