... instead of the config variable:
I searched a long time for the solution.... then i found this dirty bug.
my Patch:
client87:~/oreon-1.3.1-1/www/include/views/graphs/simpleRenderer # diff simpleRenderer.php /usr/local/oreon/www/include/views/graphs/simpleRenderer/simpleRenderer.php
342c342,343
< system("rrdtool update ".$oreon->optGen["oreon_path"]."filesGeneration/graphs/simpleRenderer/rrdDB/".str_replace(" ", "-",$ret["host_name"])."_".str_replace(" ", "-",$ret["service_description"]).".rrd ".$str . " 2>&1", $return);
---
>
> system($oreon->optGen["rrdtool_path_bin"] . " update ".$oreon->optGen["oreon_path"]."filesGeneration/graphs/simpleRenderer/rrdDB/".str_replace(" ", "-",$ret["host_name"])."_".str_replace(" ", "-",$ret["service_description"]).".rrd ".$str . " 2>&1", $return);
375c376
I hope it will help you!
Greetings,
Synox
I searched a long time for the solution.... then i found this dirty bug.
my Patch:
client87:~/oreon-1.3.1-1/www/include/views/graphs/simpleRenderer # diff simpleRenderer.php /usr/local/oreon/www/include/views/graphs/simpleRenderer/simpleRenderer.php
342c342,343
< system("rrdtool update ".$oreon->optGen["oreon_path"]."filesGeneration/graphs/simpleRenderer/rrdDB/".str_replace(" ", "-",$ret["host_name"])."_".str_replace(" ", "-",$ret["service_description"]).".rrd ".$str . " 2>&1", $return);
---
>
> system($oreon->optGen["rrdtool_path_bin"] . " update ".$oreon->optGen["oreon_path"]."filesGeneration/graphs/simpleRenderer/rrdDB/".str_replace(" ", "-",$ret["host_name"])."_".str_replace(" ", "-",$ret["service_description"]).".rrd ".$str . " 2>&1", $return);
375c376
I hope it will help you!
Greetings,
Synox
Comment