diff options
author | Pim van den Berg | 2014-05-03 11:15:53 +0200 |
---|---|---|
committer | Pim van den Berg | 2014-05-03 11:15:53 +0200 |
commit | 1c888304d33a8c1405b8716356ae300fad39521c (patch) | |
tree | ce0f5ef1946da9fd006a333f49233007fa574ae4 /plugin/tcpconns.php | |
parent | inc: mv graphs_from_plugin, build_url functions to html.inc.php (diff) | |
download | apt-panopticon_cgp-1c888304d33a8c1405b8716356ae300fad39521c.zip apt-panopticon_cgp-1c888304d33a8c1405b8716356ae300fad39521c.tar.gz apt-panopticon_cgp-1c888304d33a8c1405b8716356ae300fad39521c.tar.bz2 apt-panopticon_cgp-1c888304d33a8c1405b8716356ae300fad39521c.tar.xz |
type/Default: don't depend on external function GET
Diffstat (limited to 'plugin/tcpconns.php')
-rw-r--r-- | plugin/tcpconns.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/tcpconns.php b/plugin/tcpconns.php index bd23de7..1e6917a 100644 --- a/plugin/tcpconns.php +++ b/plugin/tcpconns.php | |||
@@ -10,7 +10,7 @@ require_once 'inc/collectd.inc.php'; | |||
10 | # tcpconns-XXXX/ | 10 | # tcpconns-XXXX/ |
11 | # tcpconns-XXXX/tcp_connections-XXXX.rrd | 11 | # tcpconns-XXXX/tcp_connections-XXXX.rrd |
12 | 12 | ||
13 | $obj = new Type_GenericStacked($CONFIG); | 13 | $obj = new Type_GenericStacked($CONFIG, $_GET); |
14 | $obj->rrd_title = sprintf('TCP Connections (%s)', $obj->args['pinstance']); | 14 | $obj->rrd_title = sprintf('TCP Connections (%s)', $obj->args['pinstance']); |
15 | $obj->rrd_vertical = '#'; | 15 | $obj->rrd_vertical = '#'; |
16 | $obj->rrd_format = '%5.1lf'; | 16 | $obj->rrd_format = '%5.1lf'; |