Hi guys,
The operation of NagVis is better.
Apparently; the old configuration was generating an overhead on the Broker layer.
I continue with high CPU in Apache processes.
I'm looking into the possibility of changing NDOMOD; of Socket; for TCP; so I can move the NDO to a separate server; In order to; not impact the NDO when the machine is high CPU utilization.
Do you consider it a good idea?
NagVis - NDO claims that nagios did not status update
-
ssoliveira
- Posts: 91
- Joined: Wed Dec 07, 2016 6:02 pm
-
ssoliveira
- Posts: 91
- Joined: Wed Dec 07, 2016 6:02 pm
Re: NagVis - NDO claims that nagios did not status update
My CORE machine, where Nagios runs, is always CPU intensive. Due to Apache processes.
The MySQL server is practically asleep.
When we restart Nagios, the NDOMOD socket is restarted.
Apparently, in this scenario, NDOMOD Daemon loses the connection to the socket, and waits for the output socket to return to reestablish the connection.
My hypothesis is: If I move the NDO2DB to the same MYSQL server, and change the UNIX Socket connection to TCP; I believe that the time for the system to return to normal (after restarting the NAGIOS service) will be much lower because the NDO2DB service will no longer be affected by performance problems and will always be connected directly to MySQL.
Does this make sense?
The MySQL server is practically asleep.
When we restart Nagios, the NDOMOD socket is restarted.
Apparently, in this scenario, NDOMOD Daemon loses the connection to the socket, and waits for the output socket to return to reestablish the connection.
My hypothesis is: If I move the NDO2DB to the same MYSQL server, and change the UNIX Socket connection to TCP; I believe that the time for the system to return to normal (after restarting the NAGIOS service) will be much lower because the NDO2DB service will no longer be affected by performance problems and will always be connected directly to MySQL.
Does this make sense?
You do not have the required permissions to view the files attached to this post.
Re: NagVis - NDO claims that nagios did not status update
That config does make sense and I follow the logic although can't say for certain it will make a big difference. I would look forward to hearing your results if you do give this a try.
As of May 25th, 2018, all communications with Nagios Enterprises and its employees are covered under our new Privacy Policy.
-
SteveBeauchemin
- Posts: 524
- Joined: Mon Oct 14, 2013 7:19 pm
Re: NagVis - NDO claims that nagios did not status update
Apache load is high because of the Ajax refresh rate. If you poll less often, the load will decrease. At least that is what happens in my setup.
I made the following changes and no one even noticed.
These are my notes:
In order to reduce httpd load, the primary Nagios XI GUI refresh rates can be changed. The current default intervals are set to 7 seconds and 10 seconds for different parts of the GUI. We can change those by modifying the PHP code and making the interval longer.
Change to the file locations. There are 3 files we can modify
cd /usr/local/nagiosxi/html/includes/components/xicore
These are the files
status-object-detail.inc.php
status-utils.inc.php
status.php
We can change the defaults by looking for lines like this:
Search for the text "everyTime"
To set it to 30 seconds
...blah.everyTime(30*1000, blah...
To set it to 60 seconds
...blah.everyTime(60*1000, blah...
Example of actual code from a file
In the status-object-detail.inc.php file I found that these changes had the most influence
7 second default is now set to 60 - in 4 places
10 second default is now set to 90 - in 8 places
(Default) x 4
You would need to make changes in increments slowly and see how your installation is affected.
These 'performance' changes are supposed to be part of an upcoming release.
Good luck.
Steve B
I made the following changes and no one even noticed.
These are my notes:
In order to reduce httpd load, the primary Nagios XI GUI refresh rates can be changed. The current default intervals are set to 7 seconds and 10 seconds for different parts of the GUI. We can change those by modifying the PHP code and making the interval longer.
Change to the file locations. There are 3 files we can modify
cd /usr/local/nagiosxi/html/includes/components/xicore
These are the files
status-object-detail.inc.php
status-utils.inc.php
status.php
We can change the defaults by looking for lines like this:
Search for the text "everyTime"
To set it to 30 seconds
...blah.everyTime(30*1000, blah...
To set it to 60 seconds
...blah.everyTime(60*1000, blah...
Example of actual code from a file
Code: Select all
$("#' . $id . '").everyTime(90*1000, "timer-' . $id . '", function(i) {7 second default is now set to 60 - in 4 places
10 second default is now set to 90 - in 8 places
(Default) x 4
You would need to make changes in increments slowly and see how your installation is affected.
These 'performance' changes are supposed to be part of an upcoming release.
Good luck.
Steve B
XI 5.7.3 / Core 4.4.6 / NagVis 1.9.8 / LiveStatus 1.5.0p11 / RRDCached 1.7.0 / Redis 3.2.8 /
SNMPTT / Gearman 0.33-7 / Mod_Gearman 3.0.7 / NLS 2.0.8 / NNA 2.3.1 /
NSClient 0.5.0 / NRPE Solaris 3.2.1 Linux 3.2.1 HPUX 3.2.1
SNMPTT / Gearman 0.33-7 / Mod_Gearman 3.0.7 / NLS 2.0.8 / NNA 2.3.1 /
NSClient 0.5.0 / NRPE Solaris 3.2.1 Linux 3.2.1 HPUX 3.2.1
-
dwhitfield
- Former Nagios Staff
- Posts: 4583
- Joined: Wed Sep 21, 2016 10:29 am
- Location: NoLo, Minneapolis, MN
- Contact:
Re: NagVis - NDO claims that nagios did not status update
I think this already happened:SteveBeauchemin wrote: These 'performance' changes are supposed to be part of an upcoming release.
I could be wrong though. Are you talking about something else?Fixed dashlet refresh rates on object status pages to show up in "dashlet" tab in performance settings [TPS#11974] -JO
At the very least, the performance settings are definitely an option to help!