最近剛好需要測試一下新建站的穩定性,所以寫了個SHELL腳本放到本機(最近換了mac本),能夠實時查看你需要監控的WEB頁面狀態,并發送到指定郵箱.
這里贊一下OS X自帶有crontab計劃任務,可以直接在本機測試腳本啦^_^
# vi check_web_alive.sh
# check network
NET_ALIVE=$(ping -c 5 8.8.8.8 |grep 'received'|awk 'BEGIN {FS=","} {print $2}'|awk '{print $1}')
if [ $NET_ALIVE == 0 ]; then
echo "Network is not active,please check your network configuration!"
exit 0
fi
# check url
for((i=0; i!=${#WEB_URL[@]}; ++i))
{
ALIVE=$(curl -o /dev/null -s -m 10 -connect-timeout 10 -w %{http_code} ${WEB_URL[i]} |grep"000000")
if [ "$ALIVE" == "000000" ]; then
echo "'${WEB_URL[i]}' can not be open,please check!" | mail -s "Website Notification to ${WEB_URL[i]}" [email protected]
echo "failed"
else
echo "'${WEB_URL[i]}' is OK!"
fi
}
新聞熱點
疑難解答