Andy,<br><br>&nbsp;&nbsp; I orginally had done that and set them to GAUGE but the database constantly returned NAN or UNKN values, until I changed it to DERIVE and it worked.... I will rebuild the RRD and try it again.<br><br><div class="gmail_quote">
On Dec 3, 2007 11:29 AM, Andy Riebs &lt;<a href="mailto:andy.riebs@hp.com">andy.riebs@hp.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Marc,<br><br>If the data that you are gathering are the total number of current users<br>on a set of systems, for example, you probably want to use &quot;GAUGE&quot;<br>instead of &quot;DERIVE&quot; in your rrd. &nbsp;DERIVE (and &quot;COUNTER&quot;, for that
<br>matter) both assume numbers that should constantly increase.<br><br>hth!<br><font color="#888888">/andy<br></font><div><div></div><div class="Wj3C7c"><br>On Mon, 2007-12-03 at 15:25 +0000, Marc T. Kaplan wrote:<br>&gt; Andy,
<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp;You are right, I was not sure if it was a specific issue or general<br>&gt; given RRDtools. I posted parts of the script you referenced in your<br>&gt; reply below. I have run different values and tried reading up on RRD
<br>&gt; to understand it better, given the specific database I am trying to<br>&gt; create. This is more or less a project that I was thrown into head<br>&gt; first and I am still trying to understand everything related to RRD.
<br>&gt; If you see anything specific regarding the data below please tell me<br>&gt; what might be wrong.<br>&gt;<br>&gt; ******************************************************************************<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; rrdtool create $rrd_dir/usr.rrd -s 86400 \
<br>&gt; DS:alpha:DERIVE:172800:U:U DS:delta:DERIVE:172800:U:U<br>&gt; DS:eta:DERIVE:172800:U:U DS:epsilon:DERIVE:172800:U:U \<br>&gt; DS:gamma:DERIVE:172800:U:U DS:iota:DERIVE:172800:U:U<br>&gt; DS:kappa:DERIVE:172800:U:U DS:lambda:DERIVE:172800:U:U \
<br>&gt; DS:omega:DERIVE:172800:U:U DS:theta:DERIVE:172800:U:U<br>&gt; DS:xi:DERIVE:172800:U:U DS:zeta:DERIVE:172800:U:U \<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; RRA:AVERAGE:0.5:2:90; \<br>&gt;<br>&gt; ******************************************************************************
<br>&gt;<br>&gt; alpha=$(grep alpha $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; delta=$(grep delta $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; eta=$(grep &#39; eta&#39; $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \
<br>&gt; epsilon=$(grep epsilon $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; gamma=$(grep gamma $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; iota=$(grep iota $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \
<br>&gt; kappa=$(grep kappa $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; lambda=$(grep lambda $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; omega=$(grep omega $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \
<br>&gt; theta=$(grep theta $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; xi=$(grep xi $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;) \<br>&gt; zeta=$(grep zeta $fileloc | awk -F&#39;: &#39; &#39;{print $2}&#39;)
<br>&gt;<br>&gt; rrdtool update $rrd_dir/usr.rrd N:$alpha:$delta:$eta:$epsilon:$gamma:<br>&gt; $iota:$kappa:$lambda:$omega:$theta:$xi:$zeta;<br>&gt;<br>&gt; *****************************************************************************
<br>&gt;<br>&gt; rrdtool graph usr.rrd.gif --title=&quot;Users per server&quot; \<br>&gt; --start -1m &nbsp;\<br>&gt; --vertical-label=Users \<br>&gt; --alt-autoscale \<br>&gt; --units-length 10 \<br>&gt; --units-exponent 0 \<br>
&gt; DEF:pta=usr.rrd:alpha:AVERAGE LINE1:pta#000000:Alpha \<br>&gt; DEF:ptd=usr.rrd:delta:AVERAGE LINE1:ptd#151B54:Delta \<br>&gt; DEF:pte=usr.rrd:eta:AVERAGE LINE1:pte#463E41:Eta \<br>&gt; DEF:ptep=usr.rrd:epsilon:AVERAGE
 LINE1:ptep#800517:Epsilon \<br>&gt; DEF:ptg=usr.rrd:gamma:AVERAGE LINE1:ptg#8E35EF:Gamma \<br>&gt; DEF:pti=usr.rrd:iota:AVERAGE LINE1:pti#F778A1:Iota \<br>&gt; DEF:ptk=usr.rrd:kappa:AVERAGE LINE1:ptk#6698FF:Kappa \<br>&gt; DEF:ptl=
usr.rrd:lambda:AVERAGE LINE1:ptl#667C26:Lambda \<br>&gt; DEF:pto=usr.rrd:omega:AVERAGE LINE1:pto#87F717:Omega \<br>&gt; DEF:ptt=usr.rrd:theta:AVERAGE LINE1:ptt#FFFC17:Theta \<br>&gt; DEF:ptx=usr.rrd:xi:AVERAGE LINE1:ptx#C47451:Xi \
<br>&gt; DEF:ptz=usr.rrd:zeta:AVERAGE LINE1:ptz#806517:Zeta<br>&gt;<br>&gt;<br>&gt; On Dec 3, 2007 10:18 AM, Andy Riebs &lt;<a href="mailto:andy.riebs@hp.com">andy.riebs@hp.com</a>&gt; wrote:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Marc,<br>&gt;
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &quot;Reversed values&quot; is not the norm :)<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; It would help to send along the commands you are using the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; create the<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; graph, and, perhaps, the commands that you are using to store
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; the data.<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; /andy<br>&gt;<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; On Mon, 2007-12-03 at 15:11 +0000, Marc T. Kaplan wrote:<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; Hello all,<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt;<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; &nbsp; &nbsp; Just a quick question, I have gotten my RRD setup and it<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; is<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; running and storing correctly but upon graphing the data I<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; am<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; receiving data that is a bit strange. It seems that
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; everything is<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; getting graphed in reverse, that is that everything is<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; showing as a<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; negative when it should be positive. Is there anything<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; specific I
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; should look up or do to change the values so they are<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; plotted<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &gt; correctly?<br>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; --<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Andy Riebs, &nbsp; &nbsp; HP High Performance Computing R&amp;D
<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Technology for better business outcomes<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Linux Software, &nbsp; &nbsp; &nbsp;&lt;<a href="http://www.hp.com/go/clusters" target="_blank">http://www.hp.com/go/clusters</a>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; Catalyst Program, &nbsp; &lt;
<a href="http://www.hp.com/go/catalysts" target="_blank">http://www.hp.com/go/catalysts</a>&gt;<br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; (w) +1.603.884.1521, <a href="mailto:andy.riebs@hp.com">andy.riebs@hp.com</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; (h) <a href="mailto:andy@candooz.com">
andy@candooz.com</a><br>&gt; &nbsp; &nbsp; &nbsp; &nbsp; My opinions are not necessarily those of HP<br>&gt;<br>&gt;<br></div></div>--<br><div><div></div><div class="Wj3C7c">Andy Riebs, &nbsp; &nbsp; HP High Performance Computing R&amp;D<br> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Technology for better business outcomes
<br>Linux Software, &nbsp; &nbsp; &nbsp;&lt;<a href="http://www.hp.com/go/clusters" target="_blank">http://www.hp.com/go/clusters</a>&gt;<br>Catalyst Program, &nbsp; &lt;<a href="http://www.hp.com/go/catalysts" target="_blank">http://www.hp.com/go/catalysts
</a>&gt;<br>(w) +1.603.884.1521, <a href="mailto:andy.riebs@hp.com">andy.riebs@hp.com</a><br>(h) <a href="mailto:andy@candooz.com">andy@candooz.com</a><br>My opinions are not necessarily those of HP<br><br></div></div></blockquote>
</div><br>