|
It is more that, if your interval is 5min, and you store a value of 40 at 12:01, then it will store against 12:00 the value of 40 modified slightly line line with the value at 11:55. This is because it normalises the values to fit in with the RRD granularity. More details are on the RRD website.
EG: 11:55 value is 10. At 12:01 you store a value of 16. However, the granularity is 5min, and so a straight line is drawn between these points and the value at 12:00 is determined to be 15. Therefore, 15 is stored for 12:00.
I picked interges in the example but in real lift you'll end up with awkward decimals. A similar thing happens if your granularity is 1min since it works to the second.
If you set the 'integer' option then it will store integers and display integers, probably what you want. If you have an interval of 1min set (and you have to do this BEFORE the .rrd file is created otherwise it has no effect) and enable the 6hour graphs in the routers2.conf then you will be able to see the 1-min granularity graphs, and RRD will normalise to the 1-min boundaries, not to the 5-min boundaries.
_________________ Steve Shipway UNIX Systems, ITSS, University of Auckland, NZ Woe unto them that rise up early in the morning... -- Isaiah 5:11
|