以下分别是三个脚本,分别对流量使用、磁盘空间使用、mysql健康状况进行检查,只要定个计划任务即可,还可以及时发送邮件、短信的。
##URL http://blog.chinaunix.net/uid/25046147.html
##name gavin && 随风飘云
##Date 2012-10-08
流量使用状况检测:
#!/bin/bash
while : ; do
time=`date +%m"-"%d" "%k":"%M`
day=`date +%m"-"%d`
rx_before=`ifconfig eth0|sed -n "8"p|awk '{print $2}'|cut -c7-`
tx_before=`ifconfig eth0|sed -n "8"p|awk '{print $6}'|cut -c7-`
sleep 2
rx_after=`ifconfig eth0|sed -n "8"p|awk '{print $2}'|cut -c7-`
tx_after=`ifconfig eth0|sed -n "8"p|awk '{print $6}'|cut -c7-`
rx_result=$[(rx_after-rx_before)/256]
tx_result=$[(tx_after-tx_before)/256]
echo "$time Now_In_Speed: "$rx_result"kbps Now_OUt_Speed: "$tx_result"kbps"
sleep 2
done
磁盘空间使用状况检测:
#!/bin/bash
IP=`ifconfig eth0|sed -n '2p'|awk '{print $2}'|cut -c 6-`
SPACE=`df |sed -n '/\/$/p'|awk '{print $4}'|sed 's/%//'`
if [ $SPACE -ge 90 ];then
echo "The / disk is full"
fi
mysql存活健康状况检测
#!bin/bash
##
##
CT=`date |awk -F " " '{print $6}'| cut -c 3,4`
DATE=`date +"$CT"%m%d`
TIME=`date +%H:`
HNAME=`hostname`
echo $DATE $TIME
cat db140.iqnode.cn.err|grep "$DATE"|grep "$TIME"|grep "ERROR"
if [ $? == 1 ];then
echo "well"
else
echo "bad"
fi
阅读(1544) | 评论(1) | 转发(0) |