<pre style="background-color:rgb(255,255,255)">Thanks for the prompt reply.  I created a new rrd with a step of 30, minimum # is 0, and changed the RRA average to 10000.  Below is the graph I got.  As you can see, the X axis is garbled.</pre>
<pre style="background-color:rgb(255,255,255)"><br></pre><pre style="background-color:rgb(255,255,255)"><a href="http://imgur.com/zRziE">http://imgur.com/zRziE</a></pre><pre style="background-color:rgb(255,255,255)"><br></pre>
<pre style="background-color:rgb(255,255,255)">I will keep playing around with it more but any more help is appreciated.  Also any ideas on how to handle weekly, monthly and yearly graphs?  Shall my code include a function to concatanate daily csv files into weekly, and then weekly -&gt; monthly and monthly -&gt; yearly and get RRD to process those?  Or is there a way to get RRD to handle this automatically by keeping the initial RRD database updated with new values and then running new graph commands (which is something I will explore but just wanted to run by the group on the ideal way of doing this...)</pre>
<pre style="background-color:rgb(255,255,255)"><br></pre><pre style="background-color:rgb(255,255,255)"><br></pre><pre style="background-color:rgb(255,255,255)">Thanks again, your help is very much appreciated.</pre><pre style="background-color:rgb(255,255,255)">
<br></pre><pre style="background-color:rgb(255,255,255)">Regards,</pre><pre style="background-color:rgb(255,255,255)"><br></pre><pre style="background-color:rgb(255,255,255)"><br></pre><pre style="background-color:rgb(255,255,255)">
<br></pre><pre style="background-color:rgb(255,255,255)">v g wrote:

&gt;<i>I have a question about importing non-realtime data into rrdtool. 
</i>&gt;<i> There is an arduino device that logs various parameters and sends 
</i>&gt;<i>the CSV to a server once per day.  The data is logged for the whole 
</i>&gt;<i>day obviously (at an interval of approximately every 20-23 seconds): 
</i>&gt;<i> Sample below:
</i>&gt;<i>
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:12:53,193.5,174.0,159.0,142.8,132.3,123.5,245.3,162.5,12.5,5.0,0.0,115990,40618,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:13:14,188.8,169.9,155.0,139.0,128.4,119.7,225.7,156.7,12.5,5.0,0.0,111852,39975,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:13:35,189.2,170.2,155.5,139.4,128.8,120.0,222.2,153.9,12.5,5.0,0.0,113136,40170,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:13:56,189.7,170.2,155.5,139.8,128.9,120.1,224.6,157.4,12.5,5.0,0.0,115207,39350,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:14:17,191.1,170.9,156.3,140.8,129.8,120.9,226.4,158.2,12.4,5.0,0.0,118940,38754,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:14:39,194.1,174.0,159.3,143.8,132.7,123.8,225.1,159.2,12.5,5.0,0.0,119053,38814,0
</i>&gt;<i>2011/12/30 
</i>&gt;<i>16:15:00,195.6,175.0,159.9,144.3,133.3,124.5,231.2,164.9,12.4,5.0,0.0,121238,38925,0
</i>&gt;<i>
</i>&gt;<i>I am new to RRDtool and would like to create daily, weekly, monthly 
</i>&gt;<i>and yearly graphs for all this data.  For example, field 13 in the 
</i>&gt;<i>data above is btu per/hr.
</i>
Really ? It look more like a count of something to me. Or do you mean 
field 14 (the last one) ?

&gt;<i>I am fairly new to rrdtool and played around with it and created a 
</i>&gt;<i>graph using the following commands  (i had to change all the 
</i>&gt;<i>date/times to epoch and do an rrdtool update of course):
</i>&gt;<i>
</i>&gt;<i>rrdtool create btuperhr.rrd --start 1325232008 --step 1 
</i>&gt;<i>DS:btu_per_hr:GAUGE:600:1:U RRA:AVERAGE:0.5:1:100000
</i>
&quot;step 1&quot; is a bit short. It means having 86400 &quot;buckets&quot; per day, and 
you then have to process all of those to draw a graph. For a normal 
resolution of graph, 60 or 300 seconds is probably enough to keep. 
You&#39;ve also set the min as 1, which means you won&#39;t be able to handle 
very low output/plant shut down situations. You&#39;ve then asked RRD to 
store 100,000 1 second averaged samples (a little under 28 hours).

&gt;<i>rrdtool graph btuperhr.png --start 1325232008 --title=&quot;Boiler BTU 
</i>&gt;<i>Dec 30 2011&quot; --vertical-label=&quot;BTU per Hr&quot; -x 
</i>&gt;<i>MINUTE:10:HOUR:1:MINUTE:120:0:%R 
</i>&gt;<i>DEF:btu_per_hr=btuperhr.rrd:btu_per_hr:AVERAGE 
</i>&gt;<i>LINE2:btu_per_hr#FF0000
</i>&gt;<i>
</i>&gt;<i>
</i>&gt;<i>the graph on the x axis doesnt look right.
</i>
Dunno, I can&#39;t see your screen from here ;-) If you want comment on 
what it looks like then you&#39;ll need to provide an example we can see.

What you are doing is OK in principal - as long as you have 
timestamped data, so you can feed it into RRD, and get RRD to munge 
it and draw pretty graphs.
-- 
Simon Hobson

Visit <a href="http://www.magpiesnestpublishing.co.uk/">http://www.magpiesnestpublishing.co.uk/</a> for books by acclaimed
author Gladys Hobson. Novels - poetry - short stories - ideal as
Christmas stocking fillers. Some available as e-books.

</pre>