aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/plugin/tcpconns.php
blob: 5c629c55181a17cb5e397813f60943a36201bb9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

# Collectd TCPConns plugin

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

## LAYOUT
# tcpconns-XXXX/
# tcpconns-XXXX/tcp_connections-XXXX.rrd

$obj = new Type_GenericStacked($CONFIG, $_GET);
$obj->rrd_title = sprintf('TCP Connections (%s)', $obj->args['pinstance']);
$obj->rrd_vertical = '#';
$obj->rrd_format = '%5.1lf';

$obj->rrd_graph();