Got warning not match in threshold check processes plugin

This support forum board is for support questions relating to Nagios XI, our flagship commercial network monitoring solution.
Locked
dimsum
Posts: 153
Joined: Thu Aug 15, 2013 6:05 pm

Got warning not match in threshold check processes plugin

Post by dimsum »

Hi,

I have monitoring linux processes a threshold is w=200 and c=250 but I got the email alert warning in 162 total of processes. please see the attached pictures. What happen about a alerting?

Thank you.
You do not have the required permissions to view the files attached to this post.
User avatar
tgriep
Madmin
Posts: 9190
Joined: Thu Oct 30, 2014 9:02 am

Re: Got warning not match in threshold check processes plugi

Post by tgriep »

I would check the nrpe.cfg file on that remote host and verify that the check_total_proces command does not have the thresholds hard coded.
If they are, it would look like this.

Code: Select all

command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200
To allow Arguments for the command, you would have to change the command to the following

Code: Select all

command[check_total_procs]=/usr/local/nagios/libexec/check_procs $ARG1$
And if the

Code: Select all

dont_blame_nrpe=0
is set to zero, you will have to change it to

Code: Select all

dont_blame_nrpe=1
Save the nrpe.cfg file and restart the agent.
That will allow that command to receive the arguments from the Nagios server and should fix the issue for you.
Be sure to check out our Knowledgebase for helpful articles and solutions!
Locked