首页 > 代码库 > 监控磁盘信息

监控磁盘信息

以前有过曾经因为inode耗尽造成服务down掉的情况,下面写一个shell监控磁盘使用情况:

#!/bin/bash

#######################################################
##this script is for monitoring the disk space status##
##write date:12/07/2016                              ##

##author:victor_chen

#######################################################
DATE=`date "+%Y-%m-%d"`
record_date=`date "+%Y-%m-%d %H:%M:%S"`

if [ ! -d "/root/$DATE" ]
  then
    mkdir -p /root/$DATE
fi

echo -e "`df -Th` \n">>/root/$DATE/disk.log
echo "`df -i`">>/root/$DATE/disk.log
echo -e "$record_date \n">>/root/$DATE/disk.log

本文出自 “Victor的奋斗历程” 博客,请务必保留此出处http://victor2016.blog.51cto.com/6768693/1880261

监控磁盘信息