I want to graph just a CDEF using some Data Sources, this is easy to do with rrdtool directly:
Code: Select all
...
DEF:a='/var/www/cacti/rra/....rrd':foo:AVERAGE \
DEF:b='/var/www/cacti/rra/....rrd':bar:AVERAGE \
CDEF:c=a,b,+ \
AREA:c#ff0000:'baz'
Code: Select all
...
DEF:a='/var/www/cacti/rra/....rrd':foo:AVERAGE \
DEF:b='/var/www/cacti/rra/....rrd':bar:AVERAGE \
CDEF:c=a,b,+ \
LINE1:a:'' \
LINE1:b:'' \
AREA:c#ff0000:'baz'
Any idea how to accomplish this?