Search found 16 matches

by rahuliq
Mon Apr 29, 2013 11:49 am
Forum: Open Source Nagios Projects
Topic: Disk I/O Critical
Replies: 6
Views: 3096

Re: Disk I/O Critical

I'm setting them in the nrpe.cfg file on the remote machine. command[check_DISK_I/O]=/usr/local/nagios/libexec/check_linux_stats.pl -I -w 100,70 -c 150,100 -p sda5 The thing is the check was working fine all these days just until this afternoon, even the pnpgraph seems to have been stuck at one value
by rahuliq
Mon Apr 29, 2013 11:17 am
Forum: Open Source Nagios Projects
Topic: Disk I/O Critical
Replies: 6
Views: 3096

Re: Disk I/O Critical

Hi Below is the conf file define host{ use linux-server,host-pnp host_name xxx.xxx.com alias xxx address xxx.xxx.com } define service{ use local-service,srv-pnp host_name xxx.xxx.com service_description Total Processes check_command check_nrpe!check_total_procs } define service{ use local-service,sr...
by rahuliq
Mon Apr 29, 2013 10:08 am
Forum: Open Source Nagios Projects
Topic: Disk I/O Critical
Replies: 6
Views: 3096

Re: Disk I/O Critical

All

I removed the service check from the .cfg file and restarted Nagios.

Then a little later I re-added the check and upon restarting Nagios I'm getting the correct result.

Still could somebody help as to why Nagios was showing the wrong result earlier.

Regards
Rahul
by rahuliq
Mon Apr 29, 2013 9:57 am
Forum: Open Source Nagios Projects
Topic: Disk I/O Critical
Replies: 6
Views: 3096

Disk I/O Critical

Hi I'm using check_linux_stats.pl plugin to monitor disk I/O. When I execute the check on the local machine as below /usr/local/nagios/libexec/check_linux_stats.pl -I -w 100,70 -c 150,100 -p sda5 The output I'm getting is DISK OK io : |sda5_read=0.00;100;150 sda5_write=0.00;70;100 But the Nagios too...
by rahuliq
Wed Apr 10, 2013 9:39 am
Forum: Open Source Nagios Projects
Topic: checl_linux_stats.pl plugin for CentOS 5.6
Replies: 2
Views: 2097

Re: checl_linux_stats.pl plugin for CentOS 5.6

All

Small correction, the perl module Sys-Statistics-Linux which is required by check_linux_stats.pl is not available for CentOS 5.6 machines.

Is there anyway to get the module installed in CentOS 5.6

Regards
Rahul
by rahuliq
Wed Apr 10, 2013 6:23 am
Forum: Open Source Nagios Projects
Topic: checl_linux_stats.pl plugin for CentOS 5.6
Replies: 2
Views: 2097

checl_linux_stats.pl plugin for CentOS 5.6

Hi All I have been using the checl_linux_stats.pl plugin to monitor cpu utilization, mem usage and DISK I/O on my Red Hat 6.x machines Now I have some CentOS 5.6 machines that I have to set up monitoring for, but the plugin seems to be unavailable for 5.6 version Can someone help if there is a worka...
by rahuliq
Thu Mar 21, 2013 1:30 pm
Forum: Open Source Nagios Projects
Topic: monitoring windows machines
Replies: 1
Views: 1092

monitoring windows machines

Hi All I have been using nagios to monitor Linux machines for some time but now I have a need to monitor windows servers. I have gone through the documentation about installing nsclient++ which would allow you to monitor with check_nt commands But like Linux machines where do you find the commands d...
by rahuliq
Tue Mar 19, 2013 2:49 pm
Forum: Open Source Nagios Projects
Topic: monitor cpu utilization
Replies: 14
Views: 13043

Re: monitor cpu utilization

I have installed pnp4nagios today and getting mixed results. cpu utilization, load average is being graphed perfectly for total_procs the rrd and xml file is not generated at all, which i learned from a friend could be a limitation Also for localhost the disk space is being monitored perfectly with ...
by rahuliq
Mon Mar 18, 2013 3:50 pm
Forum: Open Source Nagios Projects
Topic: monitor cpu utilization
Replies: 14
Views: 13043

Re: monitor cpu utilization

Guys Thanks for all the help

I have one more query. How can I graph and retain data for the above stats and also any other services being monitored by nagios.
by rahuliq
Mon Mar 18, 2013 2:01 pm
Forum: Open Source Nagios Projects
Topic: monitor cpu utilization
Replies: 14
Views: 13043

Re: monitor cpu utilization

Thank you Guys Worked after doing #yum install perl-Sys-Statistics-Linux -y Also made a small change in the script check_linux_stats.pl my $perfdata .= "|" ."user=$cpu->{user}% " ."system=$cpu->{system}% " ."iowait=$cpu->{iowait}% " ."InUse=$cpu_used%;$o_...