标签:space size pac echo ifconf mil 服务 ddr mon
shell脚本第三篇——监控主机的磁盘空间,当使用空间超过90%就通过发mail来发警告#!/bin/bash
#monitor available disk space
#提取本服务器的IP地址信息
IP=`ifconfig eth0 | grep "inet addr" | cut -f 2 -d ":" | cut -f 1 -d " "`
SPACE=` df -hP | awk '{print int($5)}'`
if [ $SPACE -ge 90 ]
then
echo "$IP 服务器 磁盘空间 使用率已经超过90%,请及时处理。"| mail -s "$IP 服务器硬盘告警" lili@163.com
fi
shell脚本第三篇——监控主机的磁盘空间,当使用空间超过90%就通过发mail来发警告
标签:space size pac echo ifconf mil 服务 ddr mon
原文地址:http://blog.51cto.com/13571706/2062488