In order to get things working right, I made two changes, both of which didn't seem to be that big of a deal. I just don't know what else ties into this code, so I'm coming here to see if there is a problem.
1st change:
In functions.php, change line 396 from
Code: Select all
$cacti_stats = sprintf("Time:%01.4f ", round($end-$start,4));
Code: Select all
$cacti_stats = sprintf("%01.4f ", round($end-$start,4));
Code: Select all
cacti_log("DSSTATS STATS: Type:" . $type . ", " . $cacti_stats , TRUE, "SYSTEM");
Code: Select all
cacti_log("DSSTATS STATS: Type:" . $type . ", Time:" . $cacti_stats , TRUE, "SYSTEM");
If this is implemented in the supported code, I have a working graph solution for DSSTATS that I can post up.