First of all, thank for the nice documentation and work.
I read a few times in the documentation, but unfortunately I can't figure out, why this behaviour happens.
My RRAs look like this:
Hourly (1 Minute Average) 1 500 14400
Daily (5 Minute Average) 1 600 86400
Weekly (5 Minute Average) 1 2016 604800
Monthly (5 Minute Average) 1 8928 2678400
Yearly (5 Minute Average) 1 105120 31536000
3 Year (5 Minute Average) 1 315360 94608000
10 Year (10 Minute Average) 2 525600 315360000
In all RRAs I've enabled AVERAGE, MIN, MAX, LAST.
Now lets look at a weekly graph. Can someone tell me, why the two Lines (one with consolidation LAST, one with consolidation average) are showing different values?
Code: Select all
/usr/bin/rrdtool graph - \
--imgformat=PNG \
--start='1474476963' \
--end='1475081763' \
--title='TEST GRAPH 333' \
--base='1000' \
--height='120' \
--width='500' \
--alt-autoscale-max \
--lower-limit='100' \
--y-grid='50:1' \
COMMENT:"From 2016/09/21 18\:56\:03 To 2016/09/28 18\:56\:03\c" \
COMMENT:" \n" \
--vertical-label='' \
--slope-mode \
--font TITLE:10: \
--font AXIS:7: \
--font LEGEND:8: \
--font UNIT:7: \
DEF:a='/usr/share/cacti/site/rra/RPI_REG_ina219_current_18.rrd':'ina219_current':LAST \
DEF:b='/usr/share/cacti/site/rra/RPI_REG_ina219_current_18.rrd':'ina219_current':AVERAGE \
LINE1:a#FF3932FF:'LAST' \
LINE1:b#0000FFFF:'AVERAGE'
But, the daily graph is showing the same values for average and last:
Code: Select all
/usr/bin/rrdtool graph - \
--imgformat=PNG \
--start='1474995930' \
--end='1475082330' \
--title='TEST GRAPH 333' \
--base='1000' \
--height='120' \
--width='500' \
--alt-autoscale-max \
--lower-limit='100' \
--y-grid='50:1' \
COMMENT:"From 2016/09/27 19\:05\:30 To 2016/09/28 19\:05\:30\c" \
COMMENT:" \n" \
--vertical-label='' \
--slope-mode \
--font TITLE:10: \
--font AXIS:7: \
--font LEGEND:8: \
--font UNIT:7: \
DEF:a='/usr/share/cacti/site/rra/RPI_REG_ina219_current_18.rrd':'ina219_current':LAST \
DEF:b='/usr/share/cacti/site/rra/RPI_REG_ina219_current_18.rrd':'ina219_current':AVERAGE \
LINE1:a#FF3932FF:'LAST' \
LINE1:b#0000FFFF:'AVERAGE'
Is it possible to disable the consolidation in cacti complety, or for selected RRAs?
Thank you very much
Best, Mete