您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)如何使用shell寫告警次數(shù)控制及恢復(fù)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
代碼如下:
#!/bin/bash
if [ $succ_ping -gt $((ping_count-1)) ];then
if [ -f ./alarm_file/alarm_$host ];then
rm -rf ./alarm_file/alarm_$host
#發(fā)送故障消除短信通知--調(diào)用insert_table
messages="$host服務(wù)器通迅恢復(fù)正常`date "+%Y%m%d %H:%M:%S"`"
echo "$messages" >>./log/ping_err_recover.log
insert_table
else
echo "本次檢測(cè)結(jié)果---->$host服務(wù)器ping檢測(cè)正常"
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服務(wù)器ping檢測(cè)正常,ping次數(shù)$ping_count,接收$succ_ping" >>./log/ping_log
fi
else
echo "本次檢測(cè)結(jié)果---->$host服務(wù)器有丟包現(xiàn)象,丟包率為:$loss_ping"
messages="`date "+%Y%m%d %H:%M:%S"`--->$host服務(wù)器有丟包現(xiàn)象,丟包率為:$loss_ping"
#對(duì)警次數(shù)進(jìn)行處理,超過2次將不告警
#格式host a(告警次數(shù))
#已經(jīng)出現(xiàn)告警的次數(shù)加1
echo "告警服務(wù)器為$host"
if [ -f ./alarm_file/alarm_$host ];then
#取出當(dāng)前的告警次數(shù)并加1
a=`awk '{print$2}' ./alarm_file/alarm_$host`
b=$(($a+1))
echo "$host $b" >./alarm_file/alarm_$host
alarm_count=`awk '{print$2}' ./alarm_file/alarm_$host`
if [ $alarm_count -gt $sms_count ];then
echo "超過2次不發(fā)送短信"
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服務(wù)器有丟包現(xiàn)象,接收$succ_ping,丟包率為:$loss_ping,超過二次不發(fā)送。" >>./log/ping_err_log
else
#未超過2次調(diào)用insert_table函數(shù)發(fā)送短信
echo "未超過2次"
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服務(wù)器有丟包現(xiàn)象,接收$succ_ping,丟包率為:$loss_ping">>./log/ping_err_log
insert_table
fi
else
#第一次告警
echo "第一次告警"
echo "$host 1" >./alarm_file/alarm_$host
insert_table
echo "`date "+%Y%m%d %H:%M:%S"`--->$host服務(wù)器有丟包現(xiàn)象,接收$succ_ping,丟包率為:$loss_ping" >>./log/ping_err_log
fi
fi
done
感謝各位的閱讀!關(guān)于“如何使用shell寫告警次數(shù)控制及恢復(fù)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。