Hello
In 2011 R1.9 I have problem that I have 0.000 in place of host name. I see it was a bug in R1.8 but I have this in R1.9
Availability Report pbm
-
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Availability Report pbm
this is a known bug that is fixed in the next release. If you would like to fix it before then you can do the following:
open the file /usr/nagiosxi/html/reports/availability.php
on line 895 change
and on line 941 change
open the file /usr/nagiosxi/html/reports/availability.php
on line 895 change
Code: Select all
echo "<td>".number_format($hn,3)." </td>";
to
echo "<td>".$hn." </td>";
Code: Select all
echo "<td>".number_format($sd,3)." </td>";
to
echo "<td>".$sd." </td>";
-
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Availability Report pbm
This is also fixed in 2011R2.0