aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/conntrack.php
blob: 6c387765953190dad2a8a71425b7b6ff8df344f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php

# Collectd Conntrack plugin

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

## LAYOUT
# conntrack/conntrack.rrd

$obj = new Type_Default($CONFIG);
$obj->data_sources = array('value');
$obj->ds_names = array(
	'value' => 'Conntrack entries',
);
$obj->colors = array(
	'value' => '0000f0',
);
$obj->width = $width;
$obj->heigth = $heigth;
$obj->rrd_title = 'Conntrack entries';
$obj->rrd_vertical = '#';
$obj->rrd_format = '%.1lf';

# backwards compatibility
# the data source is named 'entropy' in collectd's types.db
if ($CONFIG['version'] < 5) {
	$obj->data_sources = array('entropy');

	$obj->ds_names['entropy'] = $obj->ds_names['value'];
	unset($obj->ds_names['value']);

	$obj->colors['entropy'] = $obj->colors['value'];
	unset($obj->colors['value']);
}

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