aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/ip6tables.php
blob: 090c47536d227d4ae6b57854711d3d5f846769f3 (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
<?php

# Collectd IPTables plugin

require_once 'conf/common.inc.php';
require_once 'type/GenericStacked.class.php';

## LAYOUT
# ip6tables/ipt_bytes-XXX.rrd
# ip6tables/ipt_packets-XXX.rrd

$obj = new Type_GenericStacked($CONFIG, $_GET);

$obj->data_sources = array('value');
switch($_GET['t']) {
	case 'ipt_bytes':
	  $obj->rrd_title = 'Bytes';
	  break;
	case 'ipt_packets':
	  $obj->rrd_title = 'Packets';
	  break;
 }
$obj->rrd_vertical = '';
$obj->rrd_format = '%5.1lf%s';

$obj->rrd_graph();