Cacti

Allikas: Traadita Wiki by Jan & Co.
Mine navigeerimisribale Mine otsikasti

Last fail Bug

 /usr/share/cacti/site/lib/functions.php
$hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00';
$hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00';

In order to overcome the issue I changed the code by adding a check:

if ($hosts[$host_id]["status_fail_date"] == ""){
$hosts[$host_id]["status_fail_date"] = '0000-00-00 00:00:00';}
if ($hosts[$host_id]["status_rec_date"] == ""){
$hosts[$host_id]["status_rec_date"] = '0000-00-00 00:00:00';}