IP Address not showing in Service Detail Screen

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
rajasegar
Posts: 1018
Joined: Sun Mar 30, 2014 10:49 pm

IP Address not showing in Service Detail Screen

Post 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
You do not have the required permissions to view the files attached to this post.
5 x Nagios 5.6.9 Enterprise Edition
RHEL 6 & 7
rrdcached & ramdisk optimisation
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Re: IP Address not showing in Service Detail Screen

Post by scottwilkerson »

This is not present here, however I will add a feature request to get it included (internal ID #2962).
Former Nagios employee
Creator:
Human Design Website
Get Your Human Design Chart
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: IP Address not showing in Service Detail Screen

Post 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.
Be sure to check out our Knowledgebase for helpful articles and solutions!
rajasegar
Posts: 1018
Joined: Sun Mar 30, 2014 10:49 pm

Re: IP Address not showing in Service Detail Screen

Post 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
5 x Nagios 5.6.9 Enterprise Edition
RHEL 6 & 7
rrdcached & ramdisk optimisation
User avatar
lmiltchev
Bugs find me
Posts: 13589
Joined: Mon May 23, 2011 12:15 pm

Re: IP Address not showing in Service Detail Screen

Post 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.
Be sure to check out our Knowledgebase for helpful articles and solutions!
tmcdonald
Posts: 9117
Joined: Mon Sep 23, 2013 8:40 am

Re: IP Address not showing in Service Detail Screen

Post 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>
Former Nagios employee
rajasegar
Posts: 1018
Joined: Sun Mar 30, 2014 10:49 pm

Re: IP Address not showing in Service Detail Screen

Post 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.
5 x Nagios 5.6.9 Enterprise Edition
RHEL 6 & 7
rrdcached & ramdisk optimisation
Locked