<HTML>
<HEAD>
<TITLE>LAST always returning zero</TITLE>
</HEAD>
<BODY>
<FONT FACE="Arial"><SPAN STYLE='font-size:12.0px'>I have a data source defined as a GAUGE that is fairly static - it is always a zero or a one, and does not change frequently. &nbsp;It represents the state of a queue - disabled or enabled. &nbsp;When I graph it, the graph is always correct. &nbsp;GPRINT MAX is always right. &nbsp;However, LAST usually, but not always shows zero.<BR>
<BR>
Data points are generated every 10 seconds.<BR>
<BR>
The definition (removing multiple queue definitions) is:<BR>
<BR>
/usr/local/rrdtool/bin/rrdtool create /var/log/queues --start 1204404266 -s 10 \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;DS:queue1_depth:GAUGE:20:0:U \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;DS:queue1_added:DERIVE:20:0:U \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;DS:queue1_removed:DERIVE:20:0:U \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;DS:queue1_enabled:GAUGE:20:0:U \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:AVERAGE:0.5:1:60480 \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:MAX:0.5:1:8640 \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:AVERAGE:0.5:6:44640 \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:MAX:0.5:6:44640\<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:AVERAGE:0.5:12:267840 \<BR>
&nbsp;&nbsp;&nbsp;&nbsp;RRA:MAX:0.5:12:267840<BR>
<BR>
The value of &#8220;_enabled&#8221; is 0 for disabled and 1 for enabled. &nbsp;I want the graph to be non-zero if the queue is disabled.I call the graph with (removing multiple queues):<BR>
<BR>
/usr/local/rrdtool/bin/rrdtool graph /var/graphs/queues.png -a PNG -l 0 -t &quot;Disabled Queues&quot; \<BR>
DEF:queue1=/var/log/queues:queue1_enabled:AVERAGE \<BR>
CDEF:queue1N=queue1,0,GT,0,1,IF \<BR>
VDEF:queue1L=queue1N,LAST \<BR>
AREA:queue1N#00FF00:&quot;Queue 1&quot; \<BR>
GPRINT:queue1L:'%1.0lf' \<BR>
--upper-limit 4 --vertical-label &quot;Disabled Queue Count&quot; -w 400 -h 100 -s &nbsp;&quot;now-2h&quot; -e &quot;now&quot;<BR>
&nbsp;<BR>
The CDEF is essentially a &#8216;NOT&#8217;. &nbsp;I&#8217;ve tried printing the raw values without the CDEF IF, and they are always zero (not nan) - yes, 0, not 1. &nbsp;I&#8217;ve tried removing the &#8220;-e&#8221; and that didn&#8217;t help. &nbsp;The only thing that seems to get it reasonably reliable is to specify &#8220;-e now-30s&#8221;.<BR>
<BR>
If I print MAX instead of LAST, it is always correct.<BR>
<BR>
How do I get it to properly display the correct latest value? &nbsp;Am I overlooking something above? &nbsp;I&#8217;ve got about three dozen other graphs that have dynamic data and all display LAST correctly.<BR>
<BR>
Wes</SPAN></FONT>
</BODY>
</HTML>