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.
Thanks
IP Address not showing in Service Detail Screen
IP Address not showing in Service Detail Screen
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
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
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
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!
Re: IP Address not showing in Service Detail Screen
Thanks.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.
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
RHEL 6 & 7
rrdcached & ramdisk optimisation
Re: IP Address not showing in Service Detail Screen
It should be fairly soon. We are doing some testing. As soon as everything is tested thoroughly, we will release it.BTW when is the tentative service release of Nagios XI 2014R1.1 due?
Be sure to check out our Knowledgebase for helpful articles and solutions!
Re: IP Address not showing in Service Detail Screen
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:
to
/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>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
Re: IP Address not showing in Service Detail Screen
Thanks. It works as expected. Please close this ticket.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:
toCode: Select all
<div class="hostname"><a href="<?php echo get_host_status_detail_link($host);?>"><?php echo encode_form_val($host);?></a></div>
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>
5 x Nagios 5.6.9 Enterprise Edition
RHEL 6 & 7
rrdcached & ramdisk optimisation
RHEL 6 & 7
rrdcached & ramdisk optimisation