aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/dns.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/dns.php')
-rw-r--r--plugin/dns.php51
1 files changed, 0 insertions, 51 deletions
diff --git a/plugin/dns.php b/plugin/dns.php
deleted file mode 100644
index 0c44097..0000000
--- a/plugin/dns.php
+++ /dev/null
@@ -1,51 +0,0 @@
1<?php
2
3# Collectd DNS plugin
4
5require_once 'conf/common.inc.php';
6require_once 'type/GenericStacked.class.php';
7
8## LAYOUT
9# dns/
10# dns/dns_octets.rrd
11# dns/dns_opcode-X.rrd
12# dns/dns_qtype-X.rrd
13
14$obj = new Type_GenericStacked($CONFIG, $_GET);
15$obj->rrd_format = '%5.1lf%s';
16
17switch($obj->args['type']) {
18 case 'dns_octets':
19 $obj->data_sources = array(
20 'queries',
21 'responses',
22 );
23 $obj->legend = array(
24 'queries' => 'Queries',
25 'responses' => 'Responses',
26 );
27 $obj->colors = array(
28 'queries' => '0000ff',
29 'responses' => '00ff00',
30 );
31 $obj->rrd_title = 'DNS traffic';
32 $obj->rrd_vertical = 'Bit/s';
33 break;
34 case 'dns_opcode':
35 $obj->data_sources = array('value');
36 $obj->rrd_title = 'DNS Opcode Query';
37 $obj->rrd_vertical = 'Queries/s';
38 break;
39 case 'dns_qtype':
40 $obj->data_sources = array('value');
41 $obj->rrd_title = 'DNS QType';
42 $obj->rrd_vertical = 'Queries/s';
43 break;
44 case 'dns_rcode':
45 $obj->data_sources = array('value');
46 $obj->rrd_title = 'DNS Reply code';
47 $obj->rrd_vertical = 'Queries/s';
48 break;
49}
50
51$obj->rrd_graph();