Page 1 of 1

Service Dependency Management

Posted: Tue Jul 08, 2014 3:53 am
by rajasegar
Nagios XI Ent Ed 2014R1.2
08-07-2014 04-44-59 PM.png
When I select a host os hostgroups, I should only be seeing the services related to the host in the Manage Service.
However what I get is every single service defined in the system.
To make matters worst, there is no hostname in front of the services, so it is very difficult to identify the correct service since most the service description is almost the same.

Please advice on this. The listbox size issue has still not been resolved. this should be an easy fix.
08-07-2014 04-51-17 PM.png
08-07-2014 04-51-27 PM.png

Re: Service Dependency Management

Posted: Tue Jul 08, 2014 12:28 pm
by lmiltchev
In the next Nagios XI release, the services will be "paired" with the hosts under the "Service Dependency Management". See below:
example01.PNG
In regards to the scroll bar - the vertical scroll bar is pushed to the right because of the service names length.

Re: Service Dependency Management

Posted: Tue Jul 08, 2014 10:30 pm
by rajasegar
lmiltchev wrote:In the next Nagios XI release, the services will be "paired" with the hosts under the "Service Dependency Management". See below:
example01.PNG
In regards to the scroll bar - the vertical scroll bar is pushed to the right because of the service names length.
I dont agree with your statement.
Vertical scrollbar should always be visible if the list is longer than what can be displayed.
In Nagios case need to scroll to the right to see the vertical scrollbar. This is not the standard UI behaviour.

Re: Service Dependency Management

Posted: Wed Jul 09, 2014 10:29 am
by lmiltchev
This will also be fixed in the next release. If you need to patch it right away, you can open the "style.css" in a text editor:

Code: Select all

vi /usr/local/nagiosxi/html/includes/components/ccm/css/style.css
and search for "div.listDiv" in the file. On my test box, this is around line 228. Change this line:

Code: Select all

div.listDiv select {min-width:250px;}
to this:

Code: Select all

div.listDiv select {min-width:250px; max-width:275px;}
Save and exit. Let me know if this fixed your issue.

Re: Service Dependency Management

Posted: Wed Jul 09, 2014 9:50 pm
by rajasegar
lmiltchev wrote:This will also be fixed in the next release. If you need to patch it right away, you can open the "style.css" in a text editor:

Code: Select all

vi /usr/local/nagiosxi/html/includes/components/ccm/css/style.css
and search for "div.listDiv" in the file. On my test box, this is around line 228. Change this line:

Code: Select all

div.listDiv select {min-width:250px;}
to this:

Code: Select all

div.listDiv select {min-width:250px; max-width:275px;}
Save and exit. Let me know if this fixed your issue.

It is fine now thanks.
Now the only piece missing is the search filter. Hope Nagios can put this in all the list selection dialogs.

Re: Service Dependency Management

Posted: Thu Jul 10, 2014 11:24 am
by lmiltchev
Now the only piece missing is the search filter. Hope Nagios can put this in all the list selection dialogs.
I will file an internal feature request. There is no guarantee this will be implemented, but it may (if it is not too difficult thing to do).