Server free space email alert
This script is pretty simple - just send an email if your server free space is critical.
Same simple.
- Get the contents from this repo.
- Setup config
- Setup crontab
- Sleep calm!
Copy config_sample.php to congfig.php:
cp config_sample.php config.php
Edit your config.php
- set up paths of your disks to be checked, minimum space (default 1Gb or 1%), emails to send.
Add a line to crontab:
(example)
#every hour
0 * * * * php /home/user/freespacealert/freespacealert.php
#-or-
#every half an hour
0,30 * * * * php /home/user/freespacealert/freespacealert.php
Do a test run:
php /home/user/freespacealert/freespacealert.php
Now it's all fine.