diff options
Diffstat (limited to '')
-rw-r--r-- | plugin/tcpconns.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/plugin/tcpconns.php b/plugin/tcpconns.php new file mode 100644 index 0000000..5d8dba7 --- /dev/null +++ b/plugin/tcpconns.php | |||
@@ -0,0 +1,24 @@ | |||
1 | <?php | ||
2 | |||
3 | # Collectd TCPConns plugin | ||
4 | |||
5 | require_once 'conf/common.inc.php'; | ||
6 | require_once 'type/GenericStacked.class.php'; | ||
7 | require_once 'inc/collectd.inc.php'; | ||
8 | |||
9 | ## LAYOUT | ||
10 | # tcpconns-XXXX/ | ||
11 | # tcpconns-XXXX/tcp_connections-XXXX.rrd | ||
12 | |||
13 | $obj = new Type_GenericStacked($CONFIG); | ||
14 | $obj->width = $width; | ||
15 | $obj->heigth = $heigth; | ||
16 | $obj->generate_colors(); | ||
17 | $obj->rrd_title = sprintf('TCP Connections (%s)', $obj->args['pinstance']); | ||
18 | $obj->rrd_vertical = '#'; | ||
19 | $obj->rrd_format = '%5.1lf'; | ||
20 | |||
21 | collectd_flush($obj->identifiers); | ||
22 | $obj->rrd_graph(); | ||
23 | |||
24 | ?> | ||