在我的服务器监控自定义bash脚本中,实际上强制我的CentOS服务器采取了一些操作并提醒我,如果资源超出预期的时间超过预期,我会收到以下错误
第17行:[:5.74:预期的整数表达式*
现在根据定义,所有iostat结果都是浮点数,我已经在我的iostat命令(WAIT)中使用了awk
,那么我怎么能让我的bash脚本期望一个而不是整数呢?
**值5.74表示当前的iostat结果
#!/bin/bash
if [[ "`pidof -x $(basename $0) -o %PPID`" ]]; then
# echo "Script is already running with PID `pidof -x $(basename $0) -o %PPID`"
exit
fi
UPTIME=`cat /proc/uptime | awk '{print $1}' | cut -d'.' -f1`
WAIT=`iostat -c | head -4 |tail -1 | awk '{print $4}' |cut -d',' -f1`
LOAD=`cat /proc/loadavg |awk '{print $2}' | cut -d'.' -f1`
if [ "$UPTIME" -gt 600 ]
then
if [ "$WAIT" -gt 50 ]
then
if [ "$LOAD" -gt 4 ]
then
#action to take (reboot, restart service, save state sleep retry)
MAIL_TXT="System Status: iowait:"$WAIT" loadavg5:"$LOAD" uptime:"$UPTIME"!"
echo $MAIL_TXT | mail -s "Server Alert Status" "mymail@foe.foe"
/etc/init.d/httpd stop
# /etc/init.d/mysql stop
sleep 10
# /etc/init.d/mysql start
/etc/init.d/httpd start
fi
fi
fi
CentOS 6.8版(最终版)2.6.32-642.13.1.el6.x86_64
答案 0 :(得分:1)
通常,您需要使用本机shell数学以外的其他内容,如BashFAQ #22中所述。但是,由于您要与整数进行比较,这很容易:您可以在小数点处截断。
[ "${UPTIME%%.*}" -gt 600 ] # truncates your UPTIME at the decimal point
[ "${WAIT%%.*}" -gt 50 ] # likewise