build_graphs - builds graphs from data collected by status daemon
extras
build_graphs [OPTION]
This program attempts to find the rrd files produced by an status daemon and generate charts of the data they contain. Also builds three HTML files that allow for easier viewing of the graphs
--only-graphs Only produce updated graphs from the RRD data. Do not produce the additional HTML pages to display them.
--only-html Only produce the HTML pages to display the current graphs. Do not update the graphs that are there.
There are two ways to tweak the graphs that are produced:
One caveat---this is a little odd, but it makes the code later cleaner---the last color in the list will be the first used. From there, each new line/area will used the next color in the list, and wrap around the list correctly. Add more colors if you have a lot of items and want unique colors for eveything.
The defaults are: title - test name lable - list of all data source names type - LINE1 stack - LINE1 lower - 0 upper - 1
See the rrdtool website for more information on these items: http://people.ee.ethz.ch/~oetiker/webtools/rrdtool/
Example: $settings{df} = { title => ``Disk Usage'', label => ``% full'', type => 'LINE2', stack => 'LINE2', lower => 0, upper => 100, };
status_daemon