Skip to content

Instantly share code, notes, and snippets.

@roelentless
Last active August 29, 2015 14:07
Show Gist options
  • Save roelentless/ac8eda0e2c55847d4af0 to your computer and use it in GitHub Desktop.
Save roelentless/ac8eda0e2c55847d4af0 to your computer and use it in GitHub Desktop.
A script to warn when disks are getting full
#!/bin/bash
EMAIL="your_email@gmail.com"
WARNING_LEVEL=90
df -H | grep -vE '^Filesystem|tmpfs|cdrom' | awk '{ print $5 " " $1 }' | while read output;
do
echo $output
usep=$(echo $output | awk '{ print $1}' | cut -d'%' -f1 )
partition=$(echo $output | awk '{ print $2 }' )
if [ $usep -ge $WARNING_LEVEL ]; then
echo "Running out of space \"$partition ($usep%)\" on $(hostname) as on $(date)" | mail -s "Alert: Almost out of disk space $usep%" $EMAIL
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment