nagios 监控shell脚本

                              nagios监控相关小脚本                              

参考链接:http://os.51cto.com/art/201301/376725.htm

 

  • 0--各方面都正常,检查成功完成。
  • 1--资源处于警告状态。某个地方不太妙。
  • 2--资源处于临界状态。原因可能是主机宕机或服务未运行。
  • 3--未知状态,这未必表明就有问题,而是表明检查没有给出一个清楚明确的状态。

 

监控游戏注册人数:

#!/bin/bash
REG=$(cat /data/bobo_online/res2.txt | grep "^3" | cut -d , -f 2)
if [ $REG -gt 8500 ];then
        echo "Android ID:3,regist num is $REG man,Critical"
exit 2
elif [ $REG -gt 7500 ];then
        echo "Android ID:3,regist num is $REG man,Warning"
exit 1
else
        echo "Android ID:3,regist num is $REG man,OK"
exit 0
fi

 

你可能感兴趣的:(nagios 监控shell脚本)