Page 1 of 1

Nagios XI 2014 - How Do You Throttle Down Workers?

Posted: Mon Jun 16, 2014 11:45 am
by mrochelle
I'm attempting to limit the number of processes that Nagios XI 2014 will place against a remote server. Are there any nagios.cfg settings that limit processes, workers, etc? I have removed Mod Gearman which I was able to limit worker processes available. I'm hoping there is a configuration setting within Nagios that will do the same?
Thanks, Marcus

Re: Nagios XI 2014 - How Do You Throttle Down Workers?

Posted: Mon Jun 16, 2014 12:21 pm
by sreinhardt
Yes there are. You can use the following commands to limit the starting number of workers, and the total number of workers respectively:

Code: Select all

core_workers=6
max_concurrent=20

Re: Nagios XI 2014 - How Do You Throttle Down Workers?

Posted: Mon Jun 16, 2014 12:30 pm
by mrochelle
That worked! Thanks.
I had to change core_workers to check_workers, fyi.