linux 监控系统缓存和cpu

a=`free |head -n 2 |tail -n 1 |awk ‘{print $7}‘`
if [ $a -ge 900000 ];then
     sync && echo 1 >/proc/sys/vm/drop_caches
else
    echo  "`date +%x%T` cache: <90000" >> /home/1
fi

b=`vmstat 1 |head -n 4 |tail -n 1 |awk ‘{print $ 13}‘`
if [ $b -ge 90 ];then
    echo "cpu >90,restart server----------------" >>/home/1
else
    echo "`date +%x%T` cpu:$b" >>/home/1
fi

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。