#!/bin/sh df -Ph | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5,$1 }' | whileread output; do echo$output used=$(echo$output | awk '{print $1}' | sed s/%//g) partition=$(echo$output | awk '{print $2}') if [ $used -ge 60 ]; then echo"The partition \"$partition\" on $(hostname) has used $used% at $(date)" | mail -s "Disk Space Alert: $used% Used On $(hostname)" [email protected] fi done
输出:我获得了下列两封邮件警告。
1 2 3
The partition "/dev/mapper/vg_2g-lv_home"on2g.CentOS7 has used 85% at Mon Apr 2906:16:14 IST 2019
The partition "/dev/mapper/vg_2g-lv_root"on2g.CentOS7 has used 67% at Mon Apr 2906:16:14 IST 2019
#!/bin/sh df -Ph | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5,$1 }' | whileread output; do max=60% echo$output used=$(echo$output | awk '{print $1}') partition=$(echo$output | awk '{print $2}') if [ ${used%?} -ge ${max%?} ]; then echo"The partition \"$partition\" on $(hostname) has used $used at $(date)" | mail -s "Disk Space Alert: $used Used On $(hostname)" [email protected] fi done
输出:我获得了下列两封邮件警告。
1 2 3
The partition "/dev/mapper/vg_2g-lv_home"on2g.CentOS7 has used 85% at Mon Apr 2906:16:14 IST 2019
The partition "/dev/mapper/vg_2g-lv_root"on2g.CentOS7 has used 67% at Mon Apr 2906:16:14 IST 2019
*/10 * * * * df -Ph | sed s/%//g | awk '{ if($5 > 60) print $0;}' | mail -s "Disk Space Alert On $(hostname)" [email protected]
输出: 我获得了一封关于所有警告的邮件。
1 2 3
Filesystem Size Used Avail Use Mounted on /dev/mapper/vg_2g-lv_root 10G 6.7G 3.4G 67 / /dev/mapper/vg_2g-lv_home 5.0G 4.3G 784M 85 /home
方法四:Linux Shell 脚本来监控某个分区的磁盘空间使用情况和发送邮件
1 2 3 4 5 6 7 8
# vi /opt/script/disk-usage-alert-2.sh
#!/bin/bash used=$(df -Ph | grep '/dev/mapper/vg_2g-lv_dbs' | awk {'print $5'}) max=80% if [ ${used%?} -ge ${max%?} ]; then echo "The Mount Point "/DB" on $(hostname) has used $used at $(date)" | mail -s "Disk space alert on $(hostname): $used used" [email protected] fi
输出: 我得到了下面的邮件警告。
1
The partition /dev/mapper/vg_2g-lv_dbs on2g.CentOS6 has used 82% at Mon Apr 2906:16:14 IST 2019