前段时间一直想把Nagios做成MSN报警,毕竟每天接收短信太频繁,虽然现在有免费的139邮箱可以使用,但是谁知道能免费多久。
以下资料来源于网络,但里面存在错误,至少是我配置时改动的地方。
第一步 安装MSN的linux客户端
[root@CactiEZ nagios]# wget
http://downloads.fanatic.net.nz/dev/php/sendMsg.zip
[root@CactiEZ nagios]# unzip sendMsg.zip
然后将解压出来的文件夹移动到WEB的主目录下面
[root@CactiEZ nagios]# mv sendMsg /var/www/html/sendmsn
第二步 测试一下MSN客户端是否正常
修改以下文件:
#vi /var/www/html/sendmsn/simple.php
<?php
error_reporting(E_ALL);
include(‘sendMsg.php’);
$message=$_GET['sendmess'];
$sendMsg = new sendMsg();
$sendMsg->simpleSend(‘[email protected]’,’password’,’[email protected]’,$message);
echo $sendMsg->result.’ ‘.$sendMsg->error;
?>
打开wget http://localhost/sendmsn/simple.php?sendmess=hellofrommsn
同时登陆接收者的MSN,能收到信息说明正常。
第三步 设定nagios使其能够支持MSN报警功能
建立文件:
#touch /usr/local/nagios/msnhost.out
#touch /usr/local/nagios/msnservice.out
修改commands.cfg文件(根据实际情况,在nagios.cfg定义,其实文件名无所谓,主要是文件中的命名方法)
定义service-notify-by-msn 和host-notify-by-msn的检测方式:
define command{
command_name host-notify-by-msn
command_line /usr/bin/printf “%b” “***** Nagios 2.9 *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $DATETIME$\n\nAdditional Info:\n\n$OUTPUT$” > /usr/local/nagios/msnhost.out | $USER1$/check_msn_host.sh
}
define command{
command_name service-notify-by-msn
command_line /usr/bin/printf “%b” “***** Nagios *****\n\nNotification Type: $NOTIFICATIONTYPE$\n\nService: $SERVICEDESC$\nHost: $HOSTALIAS$\nAddress: $HOSTADDRESS$\nState: $SERVICESTATE$\n\nDate/Time: $LONGDATETIME$\n\nAdditional Info:\n\n$SERVICEOUTPUT$” > /usr/local/nagios/msnservice.out | $USER1$/check_msn_service.sh
}
需要注意的事情是/usr/bin/printf 后面跟的是报警的信息,该文章给的内容挺多的,大家根据需要定制就好了。以下是我写的:
command_line /usr/bin/printf "%b" "$HOSTALIAS$ is $HOSTSTATE$" > /usr/local/nagios/msnhost.out | $USER1$/check_msn_host.sh
内容是输出"$HOSTALIAS$ is $HOSTSTATE$"到/usr/local/nagios/msnhost.out并执行check_msn_host.sh。
command_line /usr/bin/printf "%b" "$HOSTALIAS$/ $SERVICEDESC$" > /usr/local/nagios/msnservice.out | $USER1$/check_msn_service.sh
因为以前使用过Email报警发送到139邮箱,所以我直接修改了命令,在sendEmail命令后直接加上上面一段就可以了。
第四步 定义报警信息的联系人:
define contact{
contact_name msn
alias Nagios_msn
service_notification_period 24×7
host_notification_period 24×7
service_notification_options w,u,c,r
host_notification_options d,r
service_notification_commands service-notify-by-msn
host_notification_commands host-notify-by-msn
email [email protected]
}
第五步 定义check_msn_service.sh check_msn_host.sh
check_msn_host.sh的内容如下:
#!/bin/bash
message=$(cat /usr/local/nagios/msnhost.out)
wget -qO- http://192.168.0.251/sendmsn/simple.php?SendMess=“$message”
check_msn_service.sh 的内容定义如下:
#!/bin/bash
message=$(cat /usr/local/nagios/msnservice.out)
wget -qO- http://192.168.0.251/sendmsn/simple.php?SendMess=“$message”
然后将这两个文件拷贝到/usr/lib/nagios/libexec/ 下面,根据版本的不同,目录应该有所差别!
注意/usr/local/nagios/目录的权限!
我在网上看到上面的写法是message=`cat /usr/local/nagios/msnhost.out`但是测试没通过,所以我改成上面写法了。
第六步 测试
如果没有效果可以按照以下步骤排查
1、发生报警后但是没提醒,检查msnhost.out文件是否有内容,如果没内容说明没有写入,还得检查command.cfg文件写入方式。
2、内容没问题则检查/usr/lib/nagios/libexec/的check脚本,可以直接执行看是否有输出,当然得在msnhost.out里输入内容。如果有报错就会提示了。
文章出至
http://hi.baidu.com/blcoffee/blog/item/f997d8cbeebabaf352664fd9.html