Questions tagged as ['nrpe']

NRPE - Nagios Remote Plugin Executor, used to remotely execute Nagios plugins.
Score: -1
harish chilukuri avatar
CHECK_NRPE STATE CRITICAL: Socket timeout after 10 seconds
uz flag

but as mentioned in other articles ,i am able to telnet ,but it is happening from public ip of client , i am doing from Nagios server telnet public ip of client 5666.it is working, but in nrpe.cfg i gave private ip,also in nagios servers .cfg also i gave private ip even check_nrpe is also working ,what to do

Score: 0
Tim Perkins avatar
NRPE: Command 'check_ssh' not defined
cn flag

We have a new Nagios Core server monitoring Linux hosts running NRPE plugins. Most of them are working as expected, but the SSH Monitor is failing with "NRPE: Command 'check_ssh' not defined". I can run check_ssh locally, but it's not working from the Nagios monitor.

nagios_errors

What am I doing wrong? I can run check_ssh on the linix agent itself and it works. Other plugins, like check_users ...

Score: 0
nagios-nrpe-server output different vs running locally
pl flag

To be sure I don't have any double definition of the command, I created a new debug command name in the nrpe config

/etc/nagios/nrpe.d # grep -R debug
debug.cfg:command[debug_check_disks]=/usr/lib/nagios/plugins/check_disk -w 20% -c 5% -C -w 10000 -c 5000 -p /home -p /

Executing it via nrpe plugin gives me a warning

/usr/lib/nagios/plugins/check_nrpe -H 127.0.0.1 -c debug_check_disks
DISK WARNING ...
Score: 0
Kamil Bu avatar
Linux server nrpe nagios check_procs process state monitoring - need info, when process is restarted
mx flag

I need to be informed by nagios when a process on a remote server is restarted.

The only thing I do not know how to do is to check its process state, and what way to do it?

I got in remote server this nrpe command for now: ./check_procs -c 1: -a "/usr/local/yyyprogram/sbin/XXXdaemon" -s Sl but this process must work all the time, has own mechanism to restart, and this is the only thing I need to k ...

Score: 0
donmelchior avatar
How to properly display accentuated characters in a check_nrpe result based on a Powershell script?
ai flag

I have a custom Powershell script called by Nagios using "check_nrpe". Currently all check results output messages with special characters like 'è', 'é' or 'à' are not displayed properly when the check result is shown on Nagios.

How to allow those to be displayed properly?

Check command

$USER1$/check_nrpe  -H server.tld -c check_foo -a 7 7 7  

Script call on nsclient.ini

[/settings/external scri ...
Score: 0
Netanel Peretz avatar
How can I make check_nrpe alert on certain event log ID and recover on another
de flag

I'm trying to make a check_nrpe check through Nagios that will alert me on event log being generated and resolve the alert when another event log is generated(recover).

Currently I'm using the following but I'm not sure what's the way to make it also notice another id.

alias_event_log -a test "id='19003' AND strings like 'Not arrived for' AND source='Test'" 1 1 'syntax=%strings%'

How do I make it so that ...