web: Tune rrd min and max validation rules. Accept an input power range between 0 and 72kW. Backported to existing rrds. See: http://www.flukso.net/content/bug-clipping-7200-watt. Thanks yschaeff & Wutje!

This commit is contained in:
Bart Van Der Meerssche 2009-12-26 15:18:44 +00:00
parent dcbe39e1ae
commit 251514da22
1 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ function _logger_create($serial, $country ="", $uid = 0) {
// create the meter base rrd
if (!file_exists($path->base . $meter .'.rrd')) {
$command = $path->root .'/rrdtool create '. $path->base . $meter .'.rrd -b 1199487600 -s 60 DS:meter:DERIVE:8640000:-2:2 RRA:AVERAGE:0.5:1:120 RRA:AVERAGE:0.5:15:192 RRA:AVERAGE:0.5:1440:60 RRA:AVERAGE:0.5:10080:520';
$command = $path->root .'/rrdtool create '. $path->base . $meter .'.rrd -b 1199487600 -s 60 DS:meter:DERIVE:8640000:0:20 RRA:AVERAGE:0.5:1:120 RRA:AVERAGE:0.5:15:192 RRA:AVERAGE:0.5:1440:60 RRA:AVERAGE:0.5:10080:520';
system($command, $return);
if ($return == 0) {
system('ln ' . $path->base . $meter . '.rrd ' . $path->alias_base . $alias);
@ -102,7 +102,7 @@ function _logger_create($serial, $country ="", $uid = 0) {
// create the meter night rrd
if (!file_exists($path->night . $meter .'.rrd')) {
$command = $path->root .'/rrdtool create '. $path->night . $meter .'.rrd -b 1199487600 -s 86400 DS:meter:GAUGE:8640000:-2:2 RRA:AVERAGE:0.5:1:60 RRA:AVERAGE:0.5:7:520';
$command = $path->root .'/rrdtool create '. $path->night . $meter .'.rrd -b 1199487600 -s 86400 DS:meter:GAUGE:8640000:0:20 RRA:AVERAGE:0.5:1:60 RRA:AVERAGE:0.5:7:520';
system($command, $return);
if ($return == 0) {
system('ln ' . $path->night . $meter . '.rrd ' . $path->alias_night . $alias);