Hi!<br><br>I have a RRD database with a number of error counters defined as DS:counter1:ABSOLUTE:60:0:U. The values is stored in the database and graphed as number of errors/second, but I would like to show the actual counter values. This can be achieved by multiplying with the step size.<br>
<br>I have seen some examples doing something like this:<br><br>CDEF:cur_time=counter1,POP,TIME<br>CDEF:step=cur_time,PREV(cur_time),-<br>CDEF:counter1_sum=my_ds,step,*<br><br>This works except that the &quot;PREV(cur_time)&quot; for the first value in the graph will be undefined, and thus also the &quot;step&quot; and &quot;counter1_sum&quot;. Is there any other way to get the step size in a CDEF or is there another way to do what I want to do?<br>
<br>/Fredrik<br>