Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
730 views

Why does ps only return one line of output in my Perl script when I call it with Nagios?

I have this running: if (open(PS_ELF, "/bin/ps -eLf|")) { while (<PS_ELF>) { if ($_ =~ m/some regex/) { # do some stuff } } } If called locally, the loop runs just fine, ...
0
votes
0answers
30 views

Erlang SSL connection failed

Spent all night trying to establish SSL connection from my erlang program to Nagios NRPE service. This is kind of excerpt from check_nrpe code which connects fine: SSL_library_init(); ...
0
votes
0answers
32 views

Is there a generic “all-arguments” variable to be used in nrpe.cfg instead of listing out $ARG1$ $ARG2$ etc

For example: I have an fping check, defined as follows: command[check_fping]=/usr/sbin/fping $ARG1$ And a service check defined as follows: check_command ...
0
votes
0answers
141 views

VirtualBox: Running VM not recognized with VBoxManage.exe

I have to monitor a VM, runned in a Windows Server 2008 environment, using VirtualBox. I use Nagios to do the monitoring job. This process is executed in an Ubuntu Server environment. The ...
0
votes
1answer
148 views

NRPE status message

I there a way to return status message along with status code. Here is an example in my python script how i return status code but not message: def checkResults(): if not ...
0
votes
2answers
903 views

Nagios/NRPE giving a “No output returned from plugin” error

Getting a "No output returned from plugin" error message from a Nagios/NRPE script 1) Running Nagios v3.2.3 and NRPE v2.12 2) The script: OK_STATE=0 UNAME=/bin/uname -r echo "OK: Kernel ...
0
votes
1answer
106 views

Problem connecting NRPE monitoring server to monitored server via a BSD gateway

As part of my job I need to be kept aware of the availability of a server within my client's corporate network. Just to make my life hard, their entire network is hidden behind a pair of gateway ...
0
votes
1answer
576 views

Error: The requested service provider could not be loaded or initialized. - socket(2)

I am running a ruby script that uses Ruby/MySQL and net/ftp. The script is running on a Windows Vista box and is trying to create a database and ftp connection to the same remote Solaris server. Here ...