Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
check Hadoop datanodes
Meet The New Nagios Core Services Platform
Built on over 25 years of monitoring experience, the Nagios Core Services Platform provides insightful monitoring dashboards, time-saving monitoring wizards, and unmatched ease of use. Use it for free indefinitely.
Monitoring Made Magically Better
- Nagios Core on Overdrive
- Powerful Monitoring Dashboards
- Time-Saving Configuration Wizards
- Open Source Powered Monitoring On Steroids
- And So Much More!
Perl script to check the number of Hadoop datanodes alive
useage:
Nagios Configuration
services.cfg
define service {
use generic-service
host_name [namenode's host]
service_description check_remote_datanode
contact_groups admins
check_command check_remote_datanode!15!13
}
above example says that:
check_remote_datanode returns
1 ("WARNING") if the number of datanodes alive is equal or less than 15
2 ("CRITICAL") if the number of datanodes alive is equal or less than 13
0 ("OK") if the number of datanodes alive is more than 15
commands.cfg
define command {
command_name check_remote_datanode
command_line /usr/local/bin/check_hadoop_datanode.pl $HOSTADDRESS$ $ARG1$ $ARG2$
}
useage:
Nagios Configuration
services.cfg
define service {
use generic-service
host_name [namenode's host]
service_description check_remote_datanode
contact_groups admins
check_command check_remote_datanode!15!13
}
above example says that:
check_remote_datanode returns
1 ("WARNING") if the number of datanodes alive is equal or less than 15
2 ("CRITICAL") if the number of datanodes alive is equal or less than 13
0 ("OK") if the number of datanodes alive is more than 15
commands.cfg
define command {
command_name check_remote_datanode
command_line /usr/local/bin/check_hadoop_datanode.pl $HOSTADDRESS$ $ARG1$ $ARG2$
}
Reviews (0)
Be the first to review this listing!