rich1888 / disk-space-monitor
There is no license information available for the latest version (dev-master) of this package.
Check the available disk space on the server, and alert when a threshold is met.
dev-master / 0.1.x-dev
2020-07-20 09:32 UTC
Requires
- illuminate/console: ^6.0|^7.0|^8.0
- illuminate/support: ^6.0|^7.0|^8.0
This package is not auto-updated.
Last update: 2025-07-15 10:05:49 UTC
README
Check the available disk space on the server, and alert when a threshold is met.
Getting Started
- Set env variable
DISK_USAGE_ALERT_EMAIL
to correct email address to receive email - Set env variable
DISK_USAGE_ALERT_THRESHOLD
to be the threshold where alerts start. The default is 90, and will alert when 90% of disk space has been reached. - Set env variable
DISK_USAGE_ALERT_DIRECTORY
to monitor specific directories on the server. Default is / and will monitor the whole instance. - Set env variable
DISK_USAGE_ALERT_SCHEDULE
to change how often the process runs. Default is0 * * * *
which runs on the hour. Use something like https://crontab.guru/ to get the pattern for a new schedule.