I've got Nagios Core Version 4.1.0rc2 configured server-side with a client running NRPE 2.15.
I've got the two devices properly communicating using the check_nrpe command, but for whatever reason the Nagios web-portal isn't showing the right value being returned when using check_procs.
Here's the nrpe.cfg from the remote host:
command[check_asterisk_proc]=env COLUMNS=500 /usr/local/nagios/libexec/check_procs -C asterisk -c 1:
Here's the output the check_nrpe command when run from the CLI:
/usr/lib/nagios/plugins/check_nrpe -H 192.168.100.7 -c check_asterisk_proc
PROCS OK: 1 process with command name 'asterisk' | procs=1;;1:;0;
But when you look inside the Nagios web-portal, all you see is the following response:
asterisk-proc OK 08-04-2015 21:17:27 0d 0h 15m 45s 1/3 NRPE v2.15
Another view in the web-portal:
Status Information: NRPE v2.15
What's throwing it off is that it seems like NRPE is returning it's version number, but not actually running the check_procs command.
Is there something I'm missing?