Page 1 of 1
IP Address not showing in Service Detail Screen
Posted: Thu May 29, 2014 6:55 am
by rajasegar
Nagios XI 2014R1.0 - Dev Env
RHEL 6.5 x64
Manual Install - Upgrade from Nagios XI 2012R2.9
I just did a test upgrade of 2014 and IP address when hovering is enabled in most places.
However the place I really need it for convenience - Service Detail Screen, it is not working.
Please advice if this can be enabled with some minor changes to the php.
Hover.png
Thanks
Re: IP Address not showing in Service Detail Screen
Posted: Thu May 29, 2014 12:18 pm
by scottwilkerson
This is not present here, however I will add a feature request to get it included (internal ID #2962).
Re: IP Address not showing in Service Detail Screen
Posted: Thu May 29, 2014 12:22 pm
by lmiltchev
I filed an internal feature request about this (TASK ID 2961). I expect it would be very easy to implement and it could be added to one of our future versions of XI.
Re: IP Address not showing in Service Detail Screen
Posted: Thu May 29, 2014 6:52 pm
by rajasegar
lmiltchev wrote:I filed an internal feature request about this (TASK ID 2961). I expect it would be very easy to implement and it could be added to one of our future versions of XI.
Thanks.
BTW when is the tentative service release of Nagios XI 2014R1.1 due?
Holding off upgrade until all the initial release issues have been sorted.
Thanks
Re: IP Address not showing in Service Detail Screen
Posted: Fri May 30, 2014 9:55 am
by lmiltchev
BTW when is the tentative service release of Nagios XI 2014R1.1 due?
It should be fairly soon. We are doing some testing. As soon as everything is tested thoroughly, we will release it.
Re: IP Address not showing in Service Detail Screen
Posted: Mon Jun 09, 2014 4:37 pm
by tmcdonald
Seeing as this was a minor change I went ahead and made the edit myself. Not sure if/when it will make it into the official release, but here's what I changed:
/usr/local/nagiosxi/html/includes/components/xicore/status-object-detail.inc.php - Line 75 changed from:
Code: Select all
<div class="hostname"><a href="<?php echo get_host_status_detail_link($host);?>"><?php echo encode_form_val($host);?></a></div>
to
Code: Select all
<div class="hostname"><a href="<?php echo get_host_status_detail_link($host);?>" title="<?php echo strval($xml->servicestatus->host_address); ?>"><?php echo encode_form_val($host);?></a></div>
Re: IP Address not showing in Service Detail Screen
Posted: Mon Jun 09, 2014 6:22 pm
by rajasegar
tmcdonald wrote:Seeing as this was a minor change I went ahead and made the edit myself. Not sure if/when it will make it into the official release, but here's what I changed:
/usr/local/nagiosxi/html/includes/components/xicore/status-object-detail.inc.php - Line 75 changed from:
Code: Select all
<div class="hostname"><a href="<?php echo get_host_status_detail_link($host);?>"><?php echo encode_form_val($host);?></a></div>
to
Code: Select all
<div class="hostname"><a href="<?php echo get_host_status_detail_link($host);?>" title="<?php echo strval($xml->servicestatus->host_address); ?>"><?php echo encode_form_val($host);?></a></div>
Thanks. It works as expected. Please close this ticket.