首页 > 其他 > 详细

17.磁盘空间告警脚本

时间:2020-11-02 10:08:59      阅读:24      评论:0      收藏:0      [点我收藏+]
思路:for循环判断出四种磁盘使用情况,并根据四种情况赋值case语句进行邮箱报警。 #!/bin/bash LANG=EN dir=/tmp/disk d=`date +%F` py_dir=/usr/local/mail.py #定义python路径 e_mail=abc@123.com #邮箱地址 [ -d $dir ] || mkdir $dir #判断目录是否存在 date +%F/%T >> $dir/$d.log df -h >> $dir/$d.log df -i >> $dir/$d.log #记录日志 tag1=0 tag2=0 for i in `df -h |grep -vi ‘use%‘|awk -F ‘ +|%‘ ‘{print $5}‘ ` #for循环查看磁盘空间use值大于等于85%的目录挂载 do if [ $i -ge 85 ];then tag1=1 break #遍历挂载点有一个符合就退出循环 fi done for j in `df -i |grep -vi ‘use%‘|awk -F ‘ +|%‘ ‘{print $5}‘` #for循环查看磁盘inode点use值大于等于85%的目录挂载 do if [ $j -ge 85 ];then tag2=1 break#遍历挂载点有一个符合就退出循环 fi done tag=0 if [ "$tag1" -eq 0 ] && [ "$tag2" -eq 0 ];then#判断四种情况并且给tag赋值 tag=0 elif [ "$tag1" -eq 1 ] && [ "$tag2" -eq 1 ];then tag=1 elif [ "$tag1" -eq 1 ] && [ "$tag2" -eq 0 ];then tag=2 else tag=3 fi case $tag in 1) python $py_dir $e_mail "disk and inode is full!" "`tail $dir/$d.log`"#发送邮箱报警 ;; 2) python $py_dir $e_mail "disk is full!" "`tail $dir/$d.log`" ;; 3) python $py_dir $e_mail "inode is full!" "`tail $dir/$d.log`" ;; 0) echo "do noting! " ;; *) python $py_dir $e_mail "$0 is malfuction!" "please login your server and check out !" ;; esac 使用:crontab -e 0 8 * * * /bin/bash disk_check.sh

17.磁盘空间告警脚本

原文:https://blog.51cto.com/11594671/2545853

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!