Re: RRD Graph downward to 0 date prediction

Steve Shipway <[email protected]>
Newsgroups gmane.comp.db.rrdtool.user
Message-ID <5820DC553954E44FA1A36C78323AD1485A01D60A@uxcn10-tdc06.UoA.auckland.ac.nz>
> Hm, this doesn't help any. Now I do get a date, but it is just the end
date of
> the graph...
...
> options.push("DEF:#{c}=#{rrdfile}:#{c}:MIN")
> options.push("VDEF:#{c}slope=#{c},LSLSLOPE")
> options.push("VDEF:#{c}int=#{c},LSLINT")
> options.push("CDEF:#{c}avg=#{c},POP,#{c}slope,COUNT,*,#{c}int,+")
> options.push("CDEF:#{c}limit=#{c}avg,0,2000000000000,LIMIT")
> options.push("VDEF:#{c}warning=#{c}avg,MINIMUM")
> options.push("GPRINT:#{c}warning:    2TB free @ %c\\l:strftime")
> 

You are using the wrong cdef in your warning definition!  So, of course you
get the end time of the graph...

options.push("VDEF:#{c}warning=#{c}limit,MINIMUM")

Define your warning on the limited CDEF.  Now, #{c}limit becomes unknown
when #{c}avg drops below 0.  Therefore, the minimum value of #{c}warning
must be 0 (if it reaches 0) and so the strftime for this point will be the
time it hits 0.

Steve

Steve Shipway
[email protected]

_______________________________________________
rrd-users mailing list
[email protected]
https://lists.oetiker.ch/cgi-bin/listinfo/rrd-users
smime.p7s (application/pkcs7-signature, 10.1 KB) - not displayed
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.