spatie/laravel-health
Monitor your Laravel app’s health by registering checks (disk space, etc.) with warning/fail thresholds. Get notified via mail or Slack when checks degrade, and extend with custom checks for proactive alerting.
This package provides several ways of listing the latest check results.
You can use the label function to customize the title that is shown on the health dashboard, and on the Oh Dear application health screen.
use Spatie\Health\Facades\Health;
use Spatie\Health\Checks\Checks\UsedDiskSpaceCheck;
Health::checks([
UsedDiskSpaceCheck::new()->label('Disk space on main disk'),
]);
How can I help you explore Laravel packages today?