david/scripts-archive
david
/
scripts-archive
Archived
1
0
Fork 0
This repository has been archived on 2022-04-16. You can view files and clone it, but cannot push or open issues or pull requests.
scripts-archive/monitoring/free.sh

15 lines
425 B
Bash

#!/bin/bash
freememory=$(free -m | grep "cache:" | awk '{print $4}')
threshold="300"
if [ $freememory -gt $threshold ]; then
echo "There is $freememory MB availible. Threshold not reached."
else
echo "There is less than $threshold MB of memory availible."
/home/david/mail.sh "There is less than $threshold MB of memory availible!! You should probably do something about that pretty soon brother!!"
fi
exit 0