aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/dns.php
diff options
context:
space:
mode:
authorPim van den Berg2014-05-03 19:17:16 +0200
committerPim van den Berg2014-05-12 21:32:24 +0200
commit0a547add2f4cc264380d2dab2c472efe5a1d7094 (patch)
tree55bb43a3e31c5814848d61eea92c8438e4a37886 /plugin/dns.php
parenttype/base: set default title to "Plugin Type (PluginInstance) (Category)" (diff)
downloadapt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.zip
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.gz
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.bz2
apt-panopticon_cgp-0a547add2f4cc264380d2dab2c472efe5a1d7094.tar.xz
graph.php: use JSON plugins instead of including PHP plugin files
A couple of big changes here. A lot of logic moved to graph.php. The PHP plugin files have been rewritten to JSON. In these JSON files *everything* is optional. Also *NOT* having a JSON plugin file won't block you from having a graph. The JSON will just make the graphs prettier (by having a title, y-axis title, legend, colors, etc..). The Collectd types.db file is parsed and used to determine RRD content. When things are not defined in the JSON it will fallback to a default.
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();