aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/openvpn.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/openvpn.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 '')
-rw-r--r--plugin/openvpn.php42
1 files changed, 0 insertions, 42 deletions
diff --git a/plugin/openvpn.php b/plugin/openvpn.php
deleted file mode 100644
index 6eba3d5..0000000
--- a/plugin/openvpn.php
+++ /dev/null
@@ -1,42 +0,0 @@
1<?php
2
3# Collectd OpenVPN plugin
4
5require_once 'conf/common.inc.php';
6
7## LAYOUT
8# openvpn-XXXX/
9# openvpn-XXXX/if_octets-XXXX.rrd
10# openvpn-XXXX/users-XXXX.rrd
11
12switch(GET('t')) {
13 case 'if_octets':
14 require_once 'type/GenericIO.class.php';
15 $obj = new Type_GenericIO($CONFIG, $_GET);
16 $obj->data_sources = array('rx', 'tx');
17 $obj->legend = array(
18 'rx' => 'Receive',
19 'tx' => 'Transmit',
20 );
21 $obj->colors = array(
22 'rx' => '0000ff',
23 'tx' => '00b000',
24 );
25 $obj->rrd_title = sprintf('Traffic (%s)', $obj->args['pinstance']);
26 $obj->rrd_vertical = sprintf('%s per second', ucfirst($CONFIG['network_datasize']));
27 $obj->scale = $CONFIG['network_datasize'] == 'bits' ? 8 : 1;
28 $obj->rrd_format = '%5.1lf%s';
29 break;
30 case 'users':
31 require_once 'type/Default.class.php';
32 $obj = new Type_Default($CONFIG, $_GET);
33 $obj->legend = array(
34 'value' => 'Users',
35 );
36 $obj->rrd_title = sprintf('Users (%s)', $obj->args['pinstance']);
37 $obj->rrd_vertical = 'Users';
38 $obj->rrd_format = '%.1lf';
39 break;
40}
41
42$obj->rrd_graph();