温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Shell 计算故障时间

发布时间:2020-07-25 00:41:39 来源:网络 阅读:252 作者:叶俊海 栏目:开发技术
#!/bin/bash
## 配合web监控https://blog.51cto.com/junhai/2437965

fail_time(){

starttime=`tail -n 500 checkfail.log |grep "$url"|grep "第1次"|tail -n 3|head -n 1|awk '{print $1, $2}'`
endtime=`tail -n 500 checkfail.log |grep "$url"|grep "已恢复监控"|tail -n 1|awk '{print $1, $2}'`
oldtime=`tail -n 500 checkfail.log |grep "$url"|grep "已恢复监控"|tail -n 2|head -n 1|awk '{print $1, $2}'`

startm=$(date --date="$starttime" +%M);
endm=$(date --date="$endtime" +%M);

starth=$(date --date="$starttime" +%H);
endh=$(date --date="$endtime" +%H);

startd=$(date --date="$starttime" +%d);
endd=$(date --date="$endtime" +%d);

#echo "上次故障恢复时间 $oldtime"
echo "故障开始时间 $starttime"
echo "故障结束时间 $endtime"

day=$(($((10#$endd)) - $((10#$startd))))
hour=$(($((10#$endh)) - $((10#$starth))))
minute=$(($((10#$endm)) - $((10#$startm))))

total=$(($(($day * 24 * 60)) + $(($hour * 60 )) + $minute))

echo "故障持续时间: $((total / 60)) h $(($total % 60)) m"

}


向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI