Skip to content

Instantly share code, notes, and snippets.

@ykushch
Created October 12, 2016 09:20
Show Gist options
  • Save ykushch/fef230c94f040276cad2763558e8754b to your computer and use it in GitHub Desktop.
Save ykushch/fef230c94f040276cad2763558e8754b to your computer and use it in GitHub Desktop.
df -PH | grep -vE '^Filesystem|none|cdrom' | awk '{ print $5 " " $1 }' | while read -r output;
do
echo "$output"
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%" -r system@server sendto@email.com
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment