I&#39;m storing the amount of bits that the interface is counting, this increases until the integer wrap (hence the high upper limit).<div>What would you suggest to store instead? The amount of bits per second at that time?<br>
<br><div class="gmail_quote">On Sun, Dec 5, 2010 at 9:29 AM, Tobias Oetiker <span dir="ltr">&lt;<a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Hoi Wouter,<br>
<div class="im"><br>
Yesterday Wouter van Eekelen wrote:<br>
<br>
&gt; And just to confirm, these arguments:<br>
&gt; --<br>
&gt;                 $command = &quot;/usr/bin/rrdtool create &quot;.$rrd_file.&quot; -s 60 \<br>
&gt;                                 DS:ds0:DERIVE:90:0:4294967295 \<br>
&gt;                                 DS:ds1:DERIVE:90:0:4294967295 \<br>
&gt;                                 RRA:AVERAGE:0.5:1:600 \<br>
&gt;                                 RRA:AVERAGE:0.5:6:700 \<br>
&gt;                                 RRA:AVERAGE:0.5:24:775 \<br>
&gt;                                 RRA:AVERAGE:0.5:288:797 \<br>
&gt;                                 RRA:MAX:0.5:1:600 \<br>
&gt;                                 RRA:MAX:0.5:6:700 \<br>
&gt;                                 RRA:MAX:0.5:24:775 \<br>
&gt;                                 RRA:MAX:0.5:288:797 \<br>
&gt;                                 RRA:MIN:0.5:1:600 \<br>
&gt;                                 RRA:MIN:0.5:6:700 \<br>
&gt;                                 RRA:MIN:0.5:24:775 \<br>
&gt;                                 RRA:MIN:0.5:288:797&quot;;<br>
&gt; --<br>
&gt;<br>
&gt; Will be fine for graphing bandwidth (on HP procurve switchports)?<br>
&gt; Any int wraps (the HP resets to 0 when it passes the unsigned integer limit<br>
&gt; of 4,294,967,295) will be recognized and not cause any problems?<br>
&gt; How long will the data be stored for?<br>
<br>
</div>note that the upper limit is the rate and not the actual value you<br>
are putting in ... so the 4 trillions are a bit much ... I would<br>
rather suggest to use the actual bandwidth of the switch port<br>
<div><div></div><div class="h5"><br>
cheers<br>
tobi<br>
<br>
&gt;<br>
&gt; On Sat, Dec 4, 2010 at 10:28 PM, Wouter van Eekelen &lt;<br>
&gt; <a href="mailto:wouter.van.eekelen@serverffs.com">wouter.van.eekelen@serverffs.com</a>&gt; wrote:<br>
&gt;<br>
&gt; &gt; That works a lot better indeed. Is there a reason updatev can&#39;t output such<br>
&gt; &gt; information?<br>
&gt; &gt; If it would just tell me &#39;mrhb expired, assuming nan&#39; I would have solved<br>
&gt; &gt; this way faster.<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt; &gt; On Sat, Dec 4, 2010 at 10:08 PM, Tobias Oetiker &lt;<a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; Wouter,<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; Today Wouter van Eekelen wrote:<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &gt; Aren&#39;t my updates incremental? The second update has quite a higher<br>
&gt; &gt;&gt; value<br>
&gt; &gt;&gt; &gt; than the first one, yet it&#39;s still NaN.<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; it seems to me that you have set the mrhb to 5 seconds ... while<br>
&gt; &gt;&gt; the step size is 60 seconds ... this is possible but it requires<br>
&gt; &gt;&gt; you to update the rrd at least every 5 seconds ...<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; cheers<br>
&gt; &gt;&gt; tobi<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; On Sat, Dec 4, 2010 at 9:23 PM, Steve Shipway &lt;<a href="mailto:s.shipway@auckland.ac.nz">s.shipway@auckland.ac.nz</a><br>
&gt; &gt;&gt; &gt;wrote:<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt; &gt; &gt;   Your DS are of type &#39;derive&#39;, with a minimum value of 0.  &#39;Derive&#39;<br>
&gt; &gt;&gt; &gt; &gt; stores the rate of change of the variable, IE (( x -<br>
&gt; &gt;&gt; x(prev))/(t-t(prev)))<br>
&gt; &gt;&gt; &gt; &gt; This means you&#39;ll need at least two sequential updates, which must be<br>
&gt; &gt;&gt; &gt; &gt; increasing (in order to get a valid positive derivitive) before you&#39;ll<br>
&gt; &gt;&gt; see<br>
&gt; &gt;&gt; &gt; &gt; anything stored in the RRAs.  Since your step is 60s, this means two<br>
&gt; &gt;&gt; &gt; &gt; increasing updates about 1min apart, and more than 2 (4, 13, 145) if<br>
&gt; &gt;&gt; you<br>
&gt; &gt;&gt; &gt; &gt; want any of the RRAs with a cdp of more than 1 to show a value (since<br>
&gt; &gt;&gt; your<br>
&gt; &gt;&gt; &gt; &gt; XFF is 0.5).<br>
&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt; &gt; &gt; Steve<br>
&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt; &gt; &gt;  *Steve Shipway*<br>
&gt; &gt;&gt; &gt; &gt; University of Auckland ITS<br>
&gt; &gt;&gt; &gt; &gt; *UNIX Systems Design Lead*<br>
&gt; &gt;&gt; &gt; &gt; <a href="mailto:s.shipway@auckland.ac.nz">s.shipway@auckland.ac.nz</a><br>
&gt; &gt;&gt; &gt; &gt; Ph: +64 9 373 7599 ext 86487<br>
&gt; &gt;&gt; &gt; &gt; **<br>
&gt; &gt;&gt; &gt; &gt;   ------------------------------<br>
&gt; &gt;&gt; &gt; &gt; *From:* rrd-users-bounces+s.shipway=<a href="http://auckland.ac.nz" target="_blank">auckland.ac.nz</a>@<a href="http://lists.oetiker.ch" target="_blank">lists.oetiker.ch</a><br>
&gt; &gt;&gt; [rrd-users-bounces+s.shipway=<br>
&gt; &gt;&gt; &gt; &gt; <a href="http://auckland.ac.nz" target="_blank">auckland.ac.nz</a>@<a href="http://lists.oetiker.ch" target="_blank">lists.oetiker.ch</a>] on behalf of Wouter van Eekelen [<br>
&gt; &gt;&gt; &gt; &gt; <a href="mailto:wouter.van.eekelen@serverffs.com">wouter.van.eekelen@serverffs.com</a>]<br>
&gt; &gt;&gt; &gt; &gt; *Sent:* Sunday, 5 December 2010 8:09 a.m.<br>
&gt; &gt;&gt; &gt; &gt; *To:* <a href="mailto:rrd-users@lists.oetiker.ch">rrd-users@lists.oetiker.ch</a><br>
&gt; &gt;&gt; &gt; &gt; *Subject:* [rrd-users] RRDTool not accepting any updates (NaN instead)<br>
&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt; &gt; &gt;  I&#39;m having a huge trouble with RRDtool, all updates I&#39;m doing are<br>
&gt; &gt;&gt; &gt; &gt; accepted as &#39;NaN&#39;<br>
&gt; &gt;&gt; &gt; &gt; Here is are all commands with output:<br>
&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt; &gt; &gt;<br>
&gt; &gt;&gt; &gt;<br>
&gt; &gt;&gt;<br>
&gt; &gt;&gt; --<br>
&gt; &gt;&gt; Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland<br>
&gt; &gt;&gt; <a href="http://it.oetiker.ch" target="_blank">http://it.oetiker.ch</a> <a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a> ++41 62 775 9902 / sb: -9900<br>
&gt; &gt;&gt;<br>
&gt; &gt;<br>
&gt; &gt;<br>
&gt;<br>
<br>
</div></div>--<br>
<div><div></div><div class="h5">Tobi Oetiker, OETIKER+PARTNER AG, Aarweg 15 CH-4600 Olten, Switzerland<br>
<a href="http://it.oetiker.ch" target="_blank">http://it.oetiker.ch</a> <a href="mailto:tobi@oetiker.ch">tobi@oetiker.ch</a> ++41 62 775 9902 / sb: -9900<br>
</div></div></blockquote></div><br></div>