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