- 论坛徽章:
- 0
|
再共享一个监控linux,aix,sunos根目录使用率报警的小脚本:
#!/bin/bash for linux /usr/bin/bash for AIX and SunOS
#ksh is compatible with bash,the script can be exec with ksh
/export/home/admin/fs_use.sh
#/usr/bin/ksh for AIX.SunOS and Suse linux,/bin/ksh for Redhat linux
#uname output = AIX,SunOS,Linux
#set ENV
export LANG=en_US.UTF8
OSTYPE="$(uname)"
#set alert threshold= %90 for default
ALERT=90
#set alert email
ADMINS="admin@jinni.com"
$MYDATE=`date +%F" "%T`
case $OSTYPE in
Linux )
fs_used=`df -P|grep -vE'^Filesystem'|head -1|awk '{print $5}'|awk -F '%' {print $1}`
;;
SunOS )
fs_used=`df -P|grep -vE'^Filesystem'|head -1|awk '{print $5}'|awk -F% {print $1}`
;;
fs_used=`df -P|grep -vE'^Filesystem'|head -1|awk '{print $5}'|awk -F '%' {print $1}`
;;
* )
echo "Unknow OS type!"
;;
esac
if [ "$fs_used" -ge "$ALERT" ]; then
df -k >./mon_root.txt
mailx -s "Alert (hostname)/FS usage exceed $ALERT% at $MYDATE" "$ADMINS" <./mon.root.txt
rm -f ./mon.root.txt
fi
欢迎各位大侠继续拍砖。。。。 |
|