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.
When using the Spatie\Health\ResultStores\CacheHealthResultStore result store the latest check results will be written to the cache.
In the health config file, the store can be configured in the health_stores key like this:
return [
'result_stores' => [
CacheHealthResultStore::class => [
'store' => 'file',
],
],
The store key can be set to any of the stores you configured in config/cache.php.
How can I help you explore Laravel packages today?