first commit
This commit is contained in:
39
scripts/mon_disk
Executable file
39
scripts/mon_disk
Executable file
@@ -0,0 +1,39 @@
|
||||
#!/bin/bash
|
||||
|
||||
export LANG=en_US.UTF-8
|
||||
LOG_PATH="/var/log/monitor"
|
||||
LOG_NAME="disk"
|
||||
INTERVAL=300
|
||||
|
||||
function Init {
|
||||
local self_count=$(pgrep -cx "$(basename $0)")
|
||||
[ 0 -eq $? ] || exit 1
|
||||
[ 1 -eq $self_count ] || exit 1
|
||||
mkdir -p $LOG_PATH || exit 1
|
||||
}
|
||||
|
||||
function Log {
|
||||
local msg="$1"
|
||||
local log_time="$(date +'%F %T')"
|
||||
local log_file="$LOG_PATH/$LOG_NAME-${log_time% *}.log"
|
||||
echo "$log_time $msg" >> $log_file
|
||||
cd $LOG_PATH && ls ${LOG_NAME}-* 2>/dev/null \
|
||||
| head -n -7 | xargs rm -f
|
||||
}
|
||||
|
||||
function GetDiskInfo {
|
||||
df | grep '^/dev/' \
|
||||
| awk '{print $1,substr($5,0,length($5)-1)}'
|
||||
}
|
||||
|
||||
function Main {
|
||||
sleep $INTERVAL
|
||||
GetDiskInfo|while read line; do
|
||||
Log "$line"
|
||||
done
|
||||
}
|
||||
|
||||
# start
|
||||
Init
|
||||
Main
|
||||
|
Reference in New Issue
Block a user