Hi, <br><br>I created a rrd database with following command: <br><i>rrdtool create plays.rrd --step=300 DS:plays:GAUGE:600:U:U RRA:AVERAGE:0.5:1:2016</i><br><br>So I keep 2016 samples, every 5 minutes. Which means I have a history of 7 days.
<br><br>When I create a graph like this: <br><i>rrdtool graph stats.png -a PNG --vertical-label "Number" --start "<b>-1day</b>" DEF:test=plays.rrd:plays:AVERAGE AREA:test#FF0000:"Number of PLAY's"
</i><br>All the data is shown correct. <br><br>But when I create on the same database a graph like this: <br><i>rrdtool graph stats.png -a PNG --vertical-label "Number" --start "<b>-7day</b>" DEF:test=
plays.rrd:plays:AVERAGE AREA:test#FF0000:"Number of PLAY's"</i><br>Then the data isn't correct anymore. It's like all values on the y-axis are scaled (or an average of the data is shown) <br><br>How is this possible? Why can't I get the real vallue (instead of an average). According to me, the '1' in
<i>AVERAGE:0.5:<b>1</b>:2016</i> means there will not be taken an average on the data. <br><br>Any answer on this would help me a lot! <br><br>Kind regards, <br>Stijn.