Search found 17 matches

by raggmopp
Thu Dec 15, 2011 11:41 am
Forum: Open Source Nagios Projects
Topic: how to monitor a process?
Replies: 2
Views: 1136

Re: how to monitor a process?

The check_procs can monitor processes. Lots of options.
by raggmopp
Thu Nov 10, 2011 2:23 pm
Forum: Open Source Nagios Projects
Topic: How to monitor process CPU usage on Windows box via Nagios?
Replies: 10
Views: 10436

Re: How to monitor process CPU usage on Windows box via Nagi

Here are my services.cfg entries define service{ use local-service host_name xxxxxxxx service_description NSCP VERSION check_command check_nt!CLIENTVERSION max_check_attempts 3 notification_interval 480 notification_options c,u contact_groups denver } define service{ use local-service,srv-pnp host_n...
by raggmopp
Thu Nov 10, 2011 1:54 pm
Forum: Open Source Nagios Projects
Topic: How to monitor process CPU usage on Windows box via Nagios?
Replies: 10
Views: 10436

Re: How to monitor process CPU usage on Windows box via Nagi

The following page will give you the instructions for installing and configuring NSClient++. As can be seen, cpu, memory, disk space, service states, etc. are available from NSClient++ (via check_nt) http://nagios.sourceforge.net/docs/3_0/monitoring-windows.html The NRPE for WIN instructions can be ...
by raggmopp
Thu Nov 10, 2011 11:03 am
Forum: Open Source Nagios Projects
Topic: Status stuck on WARNING
Replies: 3
Views: 1342

Re: Status stuck on WARNING

Also look in the nagios.log file.
by raggmopp
Thu Nov 10, 2011 10:51 am
Forum: Open Source Nagios Projects
Topic: Status stuck on WARNING
Replies: 3
Views: 1342

Re: Status stuck on WARNING

What is the error? What is happening? Check the logs to see if anything stands out (status.dat, perfdata.log, messages, etc)
by raggmopp
Thu Nov 10, 2011 10:21 am
Forum: Open Source Nagios Projects
Topic: Nagios plugins
Replies: 2
Views: 1041

Re: Nagios plugins

From a command line - yes.
To get the syntax, append the -h switch. Example
/usr/local/nagios/libexec/check_ping -h
by raggmopp
Thu Nov 10, 2011 10:19 am
Forum: Open Source Nagios Projects
Topic: How to monitor process CPU usage on Windows box via Nagios?
Replies: 10
Views: 10436

Re: How to monitor process CPU usage on Windows box via Nagi

The check_nt does more than CPU. It will do disk usage, memory, paging file Another solution, one that I did, is to install cygwin. Then you can install the nrpe and create UN*X like shell scripts for monitoring. If you cannot install cygwin, look again at check_nt. I did a google search using only ...
by raggmopp
Thu Nov 10, 2011 10:10 am
Forum: Open Source Nagios Projects
Topic: NDOutil Error Unable To Connect To Data Sink???
Replies: 3
Views: 9897

Re: NDOutil Error Unable To Connect To Data Sink???

The NDO needs to be started first.

Stop nagios, start NDO, start nagios
by raggmopp
Thu Nov 03, 2011 9:29 am
Forum: Open Source Nagios Projects
Topic: Nagios to Alret only if Device is down for more than 5 min
Replies: 1
Views: 979

Re: Nagios to Alret only if Device is down for more than 5 m

Change the max_check_attempts from 1 to 2 and change the retry_check_interval from 3 to 5. The max_check_attempts is saying that on the 1st check that a problem is found, send an alert. Changing that to 2 with a retry of 5 says, on 1st check, if problem found then retry the check in 5 min, if proble...
by raggmopp
Thu Nov 03, 2011 7:30 am
Forum: Open Source Nagios Projects
Topic: The requested URL /nagios/cgi-bin/ was not found on the serv
Replies: 3
Views: 1562

Re: The requested URL /nagios/cgi-bin/ was not found on the

For your virtual definition, you have DocumentRoot=/usr/local/nagios/share. For ScriptAlias you have /nagios/cgi-bin. Not sure how you want to setup but here is an example from my config (nagios is installed in /usr/local/nagios) DocumentRoot=/usr/local ScriptAlias /cgi-bin /usr/local/nagios/cgi-bin...