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.
Got warning not match in threshold check processes plugin
Got warning not match in threshold check processes plugin
You do not have the required permissions to view the files attached to this post.
Re: Got warning not match in threshold check processes plugi
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.
To allow Arguments for the command, you would have to change the command to the following
And if the
is set to zero, you will have to change it to
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.
If they are, it would look like this.
Code: Select all
command[check_total_procs]=/usr/local/nagios/libexec/check_procs -w 150 -c 200Code: Select all
command[check_total_procs]=/usr/local/nagios/libexec/check_procs $ARG1$
Code: Select all
dont_blame_nrpe=0Code: Select all
dont_blame_nrpe=1That 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!