Skip to content

Instantly share code, notes, and snippets.

@ET-CS
Created January 29, 2015 01:35
Show Gist options
  • Save ET-CS/065b897031b6516e2e24 to your computer and use it in GitHub Desktop.
Save ET-CS/065b897031b6516e2e24 to your computer and use it in GitHub Desktop.
Send yourself an email if your CentOS server has less than 10% free space.
#!/bin/sh
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
do
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge 90 ]; then
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" |
mail -s "Alert: Almost out of disk space $usep%" youremail@example.com
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment