符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
检测命令篇:
文中内容包括:序述nagios从发现主机到web界面显示出状态再到邮件报警的整个过程。方面以后进行排错,还有如何编写特定应用的特定检测程序。
煮酒品茶:文章需要改进的有如何做触发报警的条件,警告等。
为古浪等地区用户提供了全套网页设计制作服务,及古浪网站建设行业解决方案。主营业务为成都网站设计、成都网站建设、古浪网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!
更新:
1、说明一些定义一些宏资料。
$ARGn$:The nth argument passed to the command (notification, event handler, service check, etc.). Nagios supports up to 32 argument macros ($ARG1$ through $ARG32$). $USERn$:The nth user-definable macro. User macros can be defined in one or more resource files. Nagios supports up to 256 user macros ($USER1$ through $USER32$). |
2、解决问题,报警四种状态。
define command{
command_name check-host-alive command_line $USER1$/check_ping -H $HOSTADDRESS$ -w 3000.0,80% -c 5000.0,100% -p 5 } |
[root@weihack libexec]# ./check_ping -h
Use ping to check connection statistics for a remote host. Usage:check_ping -H [-p packets] [-t timeout] [-4|-6] Options: -h, --help Print detailed help screen -V, --version Print version information -4, --use-ipv4 Use IPv4 connection -6, --use-ipv6 Use IPv6 connection -H, --hostname=HOST host to ping -w, --warning=THRESHOLD warning threshold pair -c, --critical=THRESHOLD critical threshold pair -p, --packets=INTEGER number of ICMP ECHO packets to send (Default: 5) -L, --link show HTML in the plugin output (obsoleted by urlize) -t, --timeout=INTEGER Seconds before connection times out (default: 10) |
[root@weihack objects]# cat commands.cfg |grep command_name
command_name notify-host-by-email command_name notify-service-by-email command_name check-host-alive command_name check_local_disk command_name check_local_load command_name check_local_procs command_name check_local_users command_name check_local_swap command_name check_local_mrtgtraf command_name check_ftp command_name check_hpjd command_name check_snmp command_name check_http command_name check_ssh command_name check_dhcp command_name check_ping command_name check_pop command_name check_imap command_name check_smtp command_name check_tcp command_name check_udp command_name check_nt command_name process-host-perfdata command_name process-service-perfdata |
define command{
command_name notify-host-by-email command_line /usr/bin/printf "%b" "***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\nHost: $HOSTNAME$\nState: $HOSTSTATE$\nAddress: $HOSTADDRESS$\nInfo: $HOSTOUTPUT$\n\nDate/Time: $LONGDATETIME$\n" | /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ } |
/usr/bin/printf "%b" "***** Nagios *****\n\n
Notification Type: $NOTIFICATIONTYPE$ Host: $HOSTNAME$\nState: $HOSTSTATE$ Address: $HOSTADDRESS$ Info: $HOSTOUTPUT$\n Date/Time: $LONGDATETIME$ " | /bin/mail -s "** $NOTIFICATIONTYPE$ Host Alert: $HOSTNAME$ is $HOSTSTATE$ **" $CONTACTEMAIL$ |
主 题: ** RECOVERY Host Alert: rsync-89 is UP ** [新窗口打开]
时 间: 2013-03-13 22:57 (星期三) 发件人: nagios 收件人: 我 **** Nagios ***** Notification Type: RECOVERY Host: rsync-89 State: UP Address: 192.168.100.89 Info: PING OK - Packet loss = 0%, RTA = 0.32 ms Date/Time: Wed Mar 13 22:57:44 CST 2013 |
[root@weihack libexec]# ./check_tcp -h
Usage:check_tcp -H host -p port [-w [-e [-t [-D Options: -h, --help Print detailed help screen -V, --version Print version information -H, --hostname=ADDRESS Host name, IP Address, or unix socket (must be an absolute path) -p, --port=INTEGER Port number (default: none) -4, --use-ipv4 Use IPv4 connection -6, --use-ipv6 Use IPv6 connection -E, --escape Can use \n, \r, \t or \ in send or quit string. Must come before send or quit option Default: nothing added to send, \r\n added to end of quit -s, --send=STRING String to send to the server -e, --expect=STRING String to expect in server response (may be repeated) -A, --all All expect strings need to occur in server response. Default is any -q, --quit=STRING String to send server to initiate a clean close of the connection -r, --refuse=ok|warn|crit Accept TCP refusals with states ok, warn, crit (default: crit) -M, --mismatch=ok|warn|crit Accept expected string mismatches with states ok, warn, crit (default: warn) -j, --jail Hide output from TCP socket -m, --maxbytes=INTEGER Close connection once more than this number of bytes are received -d, --delay=INTEGER Seconds to wait between sending string and polling for response -w, --warning=DOUBLE Response time to result in warning status (seconds) -c, --critical=DOUBLE Response time to result in critical status (seconds) -t, --timeout=INTEGER Seconds before connection times out (default: 10) -v, --verbose Show details for command-line debugging (Nagios may truncate output) |
define command{
command_name check_tcp command_line $USER1$/check_tcp -H $HOSTADDRESS$ -p $ARG1$ $ARG2$ } |
# Nagios supports up to 32 $USERx$ macros ($USER1$ through $USER32$)
# Sets $USER1$ to be the path to the plugins $USER1$=/usr/local/nagios/libexec |
[root@weihack objects]# vim services.cfg
define service { host_name rsync-89 service_description check_tcp 80 check_period 24x7 max_check_attempts 4 normal_check_interval 3 retry_check_interval 2 contact_groups ktm notification_interval 10 notification_period 24x7 notification_options w,u,c,r check_command check_tcp!80 } |
[root@weihack libexec]# cat /test/passwd |wc -l
25 |
#check_user_nagios cwtea
#blog: cwtea.blog.51cto.com cu=`cat /test/passwda |wc -l` if [ $cu -ne 0 ]; then echo "User OK - User is running (UserNumber: ${cu})" else echo "User CRITICAL,"User is none"" fi |
[root@weihack libexec]# ./check_user
User CRITICAL,User is none |
User OK - User is running (UserNumber: 25) |
#check user
define command{ command_name check_user command_line $USER1$/check_user } |
define service {
host_name rsync-89 service_description check_user check_period 24x7 max_check_attempts 4 normal_check_interval 3 retry_check_interval 2 contact_groups ktm notification_interval 10 notification_period 24x7 notification_options w,u,c,r check_command check_user } |
#check_user_nagios cwtea
#blog: cwtea.blog.51cto.com cu=`cat /test/passwd |wc -l` if [ $cu -ne 0 ]; then echo "User OK - User is running (UserNumber: ${cu})" #Is OK. exit 0 else echo "User CRITICAL,"User is none"" exit 2 fi |
主 题: ** PROBLEM Service Alert: rsync 89/check_user is CRITICAL ** [新窗口打开]
时 间: 2013-03-14 00:32 (星期四) 发件人: nagios 收件人: 我 ***** Nagios ***** Notification Type: PROBLEM Service: check_user Host: rsync 89 Address: 192.168.100.89 State: CRITICAL Date/Time: Thu Mar 14 00:32:39 CST 2013 Additional Info: User CRITICAL,User is none |