From 5a58e22bb8bf0a88634cd72b3d63b4cfb8b40af5 Mon Sep 17 00:00:00 2001 From: Martin Kompf Date: Sat, 2 Apr 2016 18:20:11 +0200 Subject: [PATCH] produce larger graph --- graph.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/graph.sh b/graph.sh index ec15aff..a02cd08 100755 --- a/graph.sh +++ b/graph.sh @@ -1,6 +1,7 @@ #!/bin/sh rrdtool graph counter.gif \ -s 'now -1 day' -e 'now' \ + -w 800 -h 600 \ -X 0 -A \ DEF:counter=water.rrd:counter:LAST \ VDEF:lastcount=counter,LAST \ @@ -9,6 +10,7 @@ rrdtool graph counter.gif \ display counter.gif& rrdtool graph consum.gif \ -s 'now -1 day' -e 'now' \ + -w 800 -h 600 \ DEF:consum=water.rrd:consum:AVERAGE \ CDEF:consumltr=consum,60000,* \ CDEF:conpd=consumltr,60,*,24,* \