I am creating daily graphs using RRDTool from the logs of my application. I am using below settings to do the same.<br><br><pre class="code" id="CODE">rrdtool graph - \<br> --start=end -7d \<br> --end=midnight \<br> --imgformat=PNG \<br>
 --width=1048 \<br> --base=1000 \<br> --height=266 \<br> --logarithmic \<br> --interlaced \<br> DEF:A=test.rrd:data:AVERAGE \<br> CDEF:A=f,POP,LTIME,86400,%,3600,/,FLOOR,DUP,23,LT,*,6,GT,INF,UNKN,IF \<br> AREA:A#7FFFD4: Day Time \<br>
 LINE2:f#DDA0DD:data AVERAGE</pre>Currently I am displaying the day time as shown in above example but I want to get the output average of day time data only i.e. 7AM to 10 PM. Can anyone please suggest how can I get the average of day time data only and skip other data.<br>
<br><br>