<div dir="ltr">Thank you I got it now :) appreciate the help.</div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Aug 10, 2015 at 2:20 PM, Simon Hobson <span dir="ltr"><<a href="mailto:linux@thehobsons.co.uk" target="_blank">linux@thehobsons.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">Devante Vargas <<a href="mailto:devantev@gmail.com">devantev@gmail.com</a>> wrote:<br>
<br>
> I created the rrd file using the following parameters:<br>
><br>
> rrdtool.exe create latency.rrd<br>
> --start now<br>
> DS:response:GAUGE:600:U:U<br>
> RRA:MIN:0.5:12:8760<br>
> RRA:MAX:0.5:12:8760<br>
> RRA:AVERAGE:0.5:12:8760<br>
><br>
> I am trying to update it but having problems getting the following error:<br>
><br>
> "ERROR: latency.rrd: found extra data on update argument: 0.40:0.88:0.73"<br>
<br>
</span>That's because you are offering 3 values to an RRD that's configured to take only one.<br>
<span class=""><br>
> I am typing the following to update the rrd file:<br>
><br>
> rrdtool update latency.rrd 08/10/2015_11:33:0.40:0.88:0.73<br>
><br>
> 0.40 = Minimum<br>
> 0.88 = Maximum<br>
> 0.73 =  Average<br>
<br>
</span>It doesn't work like that. If you want to record the min/avg/max values from a ping then you need to define THREE DSs, eg response_min, response_avg, response_max<br>
You can then define your RRAs as required. You cannot be selective about this, so you will end up with all 9 permutations of min of min, min of avg, min of max, avg of min, ... Only three of these (min of min, avg of avg, max of max) are actually useful.<br>
<br>
_______________________________________________<br>
rrd-users mailing list<br>
<a href="mailto:rrd-users@lists.oetiker.ch">rrd-users@lists.oetiker.ch</a><br>
<a href="https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users" rel="noreferrer" target="_blank">https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users</a><br>
</blockquote></div><br></div>