From: Benjamin Oechslein <benjamin.oechslein@informatik.uni-erlangen.de>
Date: Mon, 12 Jan 2015 22:08:46 +0000 (+0100)
Subject: Add daily average graph mode
X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/upsgraph/commitdiff_plain/0bd26ed96f38a7790fb866831e1e5041cfa420db?ds=inline

Add daily average graph mode
---

diff --git a/upsgraph.pl b/upsgraph.pl
index e291cc7..bd3b37f 100755
--- a/upsgraph.pl
+++ b/upsgraph.pl
@@ -90,6 +90,7 @@ sub rrdcreate(@) {
 	push @cmd, "RRA:AVERAGE:0.5:1:${keep}";
 	push @cmd, "RRA:MIN:0.4:${stepsPerHour}:${keepHours}";
 	push @cmd, "RRA:MAX:0.4:${stepsPerHour}:${keepHours}";
+	push @cmd, "RRA:AVERAGE:0.5:${stepsPerHour}:${keepHours}";
 
 	RRDs::create(@cmd);
 	if (RRDs::error) {
@@ -201,9 +202,16 @@ sub dayGraphFunc {
 	}
 	my $dayCons = '';
 	my $consFunc = '';
-	for (my $i = 1; $i < $dataPoints; ++$i) {
-		$dayCons .= "prev${mode}${i},";
-		$consFunc .= ",${mode}";
+	if ($mode ne 'AVG') {
+		for (my $i = 1; $i < $dataPoints; ++$i) {
+			$dayCons .= "prev${mode}${i},";
+			$consFunc .= ",${mode}";
+		}
+	} else {
+		for (my $i = 1; $i < $dataPoints; ++$i) {
+			$dayCons .= "prev${mode}${i},";
+		}
+		$consFunc = ",${dataPoints},${mode}";
 	}
 	push @args, "CDEF:day${mode}=${dayCons}${dataSrc}${consFunc}";
 	push @args, "CDEF:fillCalDay${mode}0=COUNT,${dataPoints},%,0,EQ,day${mode},UNKN,IF";
@@ -237,6 +245,8 @@ sub cfgToGraphDef {
 			push @graphDef, @{dayGraphFunc("${varname}-min", 'MIN', '0000ff', 'Day Minimum Temperature', $dpPerDay)};
 		} elsif ($subGraph eq 'day-max') {
 			push @graphDef, @{dayGraphFunc("${varname}-max", 'MAX', '00ff00', 'Day Maximum Temperature', $dpPerDay)};
+		} elsif ($subGraph eq 'day-avg') {
+			push @graphDef, @{dayGraphFunc("${varname}-houravg", 'AVG', 'ff0000', 'Day Average Temperature', $dpPerDay)};
 		}
 	}
 	return \@graphDef;
@@ -362,7 +372,7 @@ foreach my $host (@$hosts) {
 		}
 		    
 		if ($rrdinfo->{'rra[0].rows'} != $keep ||
-			!defined($rrdinfo->{'rra[1].rows'}) || $rrdinfo->{'rra[1].rows'} != $keepHours ||
+			!defined($rrdinfo->{'rra[3].rows'}) || $rrdinfo->{'rra[3].rows'} != $keepHours ||
 			$limitsChanged == 1) {
 
 			print "Resizing ${rrdfile}.${field} from " . $rrdinfo->{'rra[0].rows'} .
@@ -512,6 +522,7 @@ while(1) {
 			push @graphdef, "DEF:${var}-avg=${rrdfile}.${var}:${var}:AVERAGE";
 			push @graphdef, "DEF:${var}-min=${rrdfile}.${var}:${var}:MIN";
 			push @graphdef, "DEF:${var}-max=${rrdfile}.${var}:${var}:MAX";
+			push @graphdef, "DEF:${var}-houravg=${rrdfile}.${var}:${var}:AVERAGE:step=3600";
 			push @graphdef, "LINE1:${var}-avg#FF0000";
 			push @graphdef, "VDEF:cur=${var}-avg,LAST";
 			push @graphdef, 'GPRINT:cur:Current\\: <span foreground="#FF0000">%.2lf</span>\\r';