Recently though I came to a problem, a request from one of the network departments, I keep 5 minute values in my rrd files, and with the plugin the departments requesting the 5 minute information could retrieve this data, the new cacti had not this support, since it uses the rrdtool xport function.
I had to find a way to produce this behaviour inside the new cacti, so here is a quick and dirty fix (maybe we can clean it sometime ) I modified the rrd.php file located under the /lib folder, line 1306:
Code: Select all
$xport_opts =
"-m 1000000" . RRD_NL .
"--start=$xport_start" . RRD_NL .
"--end=$xport_end" . RRD_NL .
"--step 300" . RRD_NL;