博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
检查硬盘告警的脚本
阅读量:4296 次
发布时间:2019-05-27

本文共 603 字,大约阅读时间需要 2 分钟。

改编自网络:

#!/bin/bash

mail=xxxx@xxx.com;
mailflag="true"
logfile=/root/check/checkdisk.log
#limit is 90
cat /dev/null > $logfile;
#count ,how many disks > 90%;
count=`df | grep -v mnt|grep -c -E \(9[1-9]\%\)\|\(100\%\)`;
if [ $count -gt 0 ];
then 
  echo "This is a alert for disk usage." >> $logfile
  echo "host address:" >> $logfile
  ifconfig |grep "inet addr" |grep -v "127.0.0.1" |awk '{print $2}'|awk -F ":" '{print $2}' >> $logfile
  echo "disk info:" >> $logfile
  df -h >> $logfile
  if [ "$mailflag" == "true" ]; then mail -s "disk alert" $mail < $logfile;fi;
fi

注意:

邮件服务要正常,把sendmail装好。

发件地址如xxx.com要能ping到。

转载地址:http://hqbws.baihongyu.com/

你可能感兴趣的文章
iOS开发中遇到的问题整理 (一)
查看>>
Swift code into Object-C 出现 ***-swift have not found this file 的问题
查看>>
为什么你的App介绍写得像一坨翔?
查看>>
RTImageAssets插件--@3x可自动生成@2x图片
查看>>
iOS开发的一些奇巧淫技
查看>>
常浏览的博客和网站
查看>>
Xcode 工程文件打开不出来, cannot be opened because the project file cannot be parsed.
查看>>
点击button实现Storyboard中TabBar Controller的tab切换
查看>>
Xcode 的正确打开方式——Debugging
查看>>
打包app出现的一个问题
查看>>
iOS在Xcode6中怎么创建OC category文件
查看>>
Expanding User-Defined Runtime Attributes in Xcode with Objective-C
查看>>
iOS7 UITabBar自定义选中图片显示为默认蓝色的Bug
查看>>
提升UITableView性能-复杂页面的优化
查看>>
25 iOS App Performance Tips & Tricks
查看>>
那些好用的iOS开发工具
查看>>
iOS最佳实践
查看>>
使用CFStringTransform将汉字转换为拼音
查看>>
更轻量的 View Controllers
查看>>
Chisel-LLDB命令插件,让调试更Easy
查看>>