summaryrefslogtreecommitdiffstats
path: root/usr/local/www/status_rrd_graph.php
diff options
context:
space:
mode:
authorsmos <seth.mos@dds.nl>2010-07-23 16:04:39 +0200
committersmos <seth.mos@dds.nl>2010-07-23 16:04:39 +0200
commitedd2d8b736bb445880fb70f4413875d450a6ec54 (patch)
tree379502f71b0b2c03739dabeb75ad24ce59f1ad64 /usr/local/www/status_rrd_graph.php
parent55c08a96455fbb86ef5107b89babf88499507f84 (diff)
downloadpfsense-edd2d8b736bb445880fb70f4413875d450a6ec54.zip
pfsense-edd2d8b736bb445880fb70f4413875d450a6ec54.tar.gz
Add OpenVPN users database, sync the tabs on the settings page.
Graphing page doesn't know about openvpn users yet. But that's ok.
Diffstat (limited to 'usr/local/www/status_rrd_graph.php')
-rwxr-xr-xusr/local/www/status_rrd_graph.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/usr/local/www/status_rrd_graph.php b/usr/local/www/status_rrd_graph.php
index 036a3b2..08e2df3 100755
--- a/usr/local/www/status_rrd_graph.php
+++ b/usr/local/www/status_rrd_graph.php
@@ -109,9 +109,9 @@ if ($_GET['option']) {
continue 2;
}
}
- case "vpn":
+ case "vpnusers":
foreach($databases as $database) {
- if(preg_match("/[-]vpn\.rrd/i", $database)) {
+ if(preg_match("/[-]vpnusers\.rrd/i", $database)) {
/* pick off the 1st database we find that matches the VPN graphs */
$name = explode("-", $database);
$curoption = "$name[0]";
@@ -167,7 +167,7 @@ $dbheader = array("allgraphs-traffic.rrd",
"allgraphs-quality.rrd",
"allgraphs-wireless.rrd",
"allgraphs-cellular.rrd",
- "allgraphs-vpn.rrd",
+ "allgraphs-vpnusers.rrd",
"allgraphs-packets.rrd",
"system-allgraphs.rrd",
"system-throughput.rrd",
@@ -176,17 +176,17 @@ $dbheader = array("allgraphs-traffic.rrd",
"outbound-traffic.rrd");
foreach($databases as $database) {
- if(stristr($database, "wireless")) {
+ if(stristr($database, "-wireless")) {
$wireless = true;
}
- if(stristr($database, "queues")) {
+ if(stristr($database, "-queues")) {
$queues = true;
}
- if(stristr($database, "cellular")) {
+ if(stristr($database, "-cellular")) {
$cellular = true;
}
- if(stristr($database, "vpn")) {
- $vpn = true;
+ if(stristr($database, "-vpnusers")) {
+ $vpnusers = true;
}
}
/* append the existing array to the header */
@@ -278,9 +278,9 @@ function get_dates($curperiod, $graph) {
$tab_array[] = array("Quality", $tabactive, "status_rrd_graph.php?cat=quality");
if($queues) {
if($curcat == "queues") { $tabactive = True; } else { $tabactive = False; }
- $tab_array[] = array("Queues", $tabactive, "status_rrd_graph.php?cat=queues");
+ $tab_array[] = array("Queues", $tabactive, "status_rrd_graph.php?cat=queues");
if($curcat == "queuedrops") { $tabactive = True; } else { $tabactive = False; }
- $tab_array[] = array("QueueDrops", $tabactive, "status_rrd_graph.php?cat=queuedrops");
+ $tab_array[] = array("QueueDrops", $tabactive, "status_rrd_graph.php?cat=queuedrops");
}
if($wireless) {
if($curcat == "wireless") { $tabactive = True; } else { $tabactive = False; }
@@ -290,9 +290,9 @@ function get_dates($curperiod, $graph) {
if($curcat == "cellular") { $tabactive = True; } else { $tabactive = False; }
$tab_array[] = array("Cellular", $tabactive, "status_rrd_graph.php?cat=cellular");
}
- if($vpn) {
- if($curcat == "vpn") { $tabactive = True; } else { $tabactive = False; }
- $tab_array[] = array("VPN", $tabactive, "status_rrd_graph.php?cat=vpn");
+ if($vpnusers) {
+ if($curcat == "vpnusers") { $tabactive = True; } else { $tabactive = False; }
+ $tab_array[] = array("VPN", $tabactive, "status_rrd_graph.php?cat=vpnusers");
}
if($curcat == "custom") { $tabactive = True; } else { $tabactive = False; }
$tab_array[] = array("Custom", $tabactive, "status_rrd_graph.php?cat=custom");
OpenPOWER on IntegriCloud