summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-04-17 17:09:32 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-04-17 17:09:32 +0000
commitf61798ae2296aa215b063f7c69792c402214a4ce (patch)
tree1d984bfd38a8825d4ab0e900e317d366d62920d6 /etc
parent111420552e2fa68fad2dcc48f07d786c47713e8b (diff)
downloadpfsense-f61798ae2296aa215b063f7c69792c402214a4ce.zip
pfsense-f61798ae2296aa215b063f7c69792c402214a4ce.tar.gz
MFC 11506
Tweaked rra values for the databases so the graphs suck less. (especially the 14 days graph).
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/pfsense-utils.inc71
1 files changed, 36 insertions, 35 deletions
diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc
index edf3dca..5586fec 100644
--- a/etc/inc/pfsense-utils.inc
+++ b/etc/inc/pfsense-utils.inc
@@ -1920,14 +1920,14 @@ function enable_rrd_graphing()
$rrdcreate = "$rrdtool create $rrddbpath$ifname$traffic --step $rrdtrafficinterval \
DS:in:COUNTER:$trafficvalid:0:$downstream \
DS:out:COUNTER:$trafficvalid:0:$upstream \
- RRA:AVERAGE:0.5:1:576 \
- RRA:AVERAGE:0.5:6:672 \
- RRA:AVERAGE:0.5:24:732 \
- RRA:AVERAGE:0.5:288:1460 \
- RRA:MAX:0.5:1:576 \
- RRA:MAX:0.5:6:672 \
- RRA:MAX:0.5:24:732 \
- RRA:MAX:0.5:288:1460";
+ RRA:AVERAGE:0.5:1:1000 \
+ RRA:AVERAGE:0.5:5:1000 \
+ RRA:AVERAGE:0.5:60:1000 \
+ RRA:AVERAGE:0.5:360:1000 \
+ RRA:MAX:0.5:1:1000 \
+ RRA:MAX:0.5:5:1000 \
+ RRA:MAX:0.5:60:1000 \
+ RRA:MAX:0.5:360:1000";
$rrdcreatel .= exec("$rrdcreate 2>&1");
}
@@ -1945,14 +1945,14 @@ function enable_rrd_graphing()
$rrdcreate = "$rrdtool create $rrddbpath$ifname$packets --step $rrdpacketsinterval \
DS:in:COUNTER:$packetsvalid:0:$downstream \
DS:out:COUNTER:$packetsvalid:0:$upstream \
- RRA:AVERAGE:0.5:1:576 \
- RRA:AVERAGE:0.5:6:672 \
- RRA:AVERAGE:0.5:24:732 \
- RRA:AVERAGE:0.5:288:1460 \
- RRA:MAX:0.5:1:576 \
- RRA:MAX:0.5:6:672 \
- RRA:MAX:0.5:24:732 \
- RRA:MAX:0.5:288:1460";
+ RRA:AVERAGE:0.5:1:1000 \
+ RRA:AVERAGE:0.5:5:1000 \
+ RRA:AVERAGE:0.5:60:1000 \
+ RRA:AVERAGE:0.5:360:1000 \
+ RRA:MAX:0.5:1:1000 \
+ RRA:MAX:0.5:5:1000 \
+ RRA:MAX:0.5:60:1000 \
+ RRA:MAX:0.5:360:1000";
$rrdcreatel .= exec("$rrdcreate 2>&1");
}
@@ -1982,9 +1982,10 @@ function enable_rrd_graphing()
$rrdcreate = "$rrdtool create $rrddbpath$ifname$quality --step $rrdqualityinterval \
DS:loss:GAUGE:$qualityvalid:0:100 \
DS:roundtrip:GAUGE:$qualityvalid:0:10000 \
- RRA:AVERAGE:0.5:1:120 \
- RRA:AVERAGE:0.5:6:320 \
- RRA:AVERAGE:0.5:24:640";
+ RRA:AVERAGE:0.5:1:1000 \
+ RRA:AVERAGE:0.5:5:1000 \
+ RRA:AVERAGE:0.5:60:1000 \
+ RRA:AVERAGE:0.5:360:1000";
$rrdcreatel .= exec("$rrdcreate 2>&1");
}
@@ -2021,10 +2022,10 @@ function enable_rrd_graphing()
$rrdcreate .= "DS:$name:COUNTER:$queuesvalid:0:$downstream \\\n";
}
- $rrdcreate .= "RRA:AVERAGE:0.5:1:576 \
- RRA:AVERAGE:0.5:6:672 \
- RRA:AVERAGE:0.5:24:732 \
- RRA:AVERAGE:0.5:288:1460 ";
+ $rrdcreate .= "RRA:AVERAGE:0.5:1:1000 \
+ RRA:AVERAGE:0.5:5:1000 \
+ RRA:AVERAGE:0.5:60:1000 \
+ RRA:AVERAGE:0.5:360:1000";
$rrdcreatel .= exec("$rrdcreate 2>&1");
$rrdcreatel .= "\n";
@@ -2065,18 +2066,18 @@ function enable_rrd_graphing()
$rrdcreate = "$rrdtool create $rrddbpath$spamd --step $rrdspamdinterval \
DS:conn:GAUGE:$trafficvalid:0:10000 \
DS:time:GAUGE:$trafficvalid:0:86400 \
- RRA:MIN:0.5:1:576 \
- RRA:MIN:0.5:6:672 \
- RRA:MIN:0.5:24:732 \
- RRA:MIN:0.5:288:1460 \
- RRA:AVERAGE:0.5:1:576 \
- RRA:AVERAGE:0.5:6:672 \
- RRA:AVERAGE:0.5:24:732 \
- RRA:AVERAGE:0.5:288:1460 \
- RRA:MAX:0.5:1:576 \
- RRA:MAX:0.5:6:672 \
- RRA:MAX:0.5:24:732 \
- RRA:MAX:0.5:288:1460";
+ RRA:MIN:0.5:1:1000 \
+ RRA:MIN:0.5:5:1000 \
+ RRA:MIN:0.5:60:1000 \
+ RRA:MIN:0.5:360:1000 \
+ RRA:AVERAGE:0.5:1:1000 \
+ RRA:AVERAGE:0.5:5:1000 \
+ RRA:AVERAGE:0.5:60:1000 \
+ RRA:AVERAGE:0.5:360:1000 \
+ RRA:MAX:0.5:1:1000 \
+ RRA:MAX:0.5:5:1000 \
+ RRA:MAX:0.5:60:1000 \
+ RRA:MAX:0.5:360:1000";
passthru("$rrdcreate 2>&1");
}
OpenPOWER on IntegriCloud