tiendanube / laravel-health-check
Provides monitoring for the key components of your laravel app.
Installs: 31 856
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 84
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- illuminate/support: ^9.0
This package is not auto-updated.
Last update: 2024-11-12 04:17:14 UTC
README
Allows your Laravel app to run health checks on itself
Usage
- Add to Composer:
- Repositories:
{ "type": "vcs", "url": "git@github.com:npmweb/laravel-health-check" },
- Dependencies:
"npmweb/laravel-health-check": "dev-master@dev",
composer update
- Repositories:
- Add service provider:
app.php
'providers' => array(
...
'NpmWeb\LaravelHealthCheck\LaravelHealthCheckServiceProvider',
);
- Add route for the health check controller:
routes.php
Route::resource(
'monitor/health',
'NpmWeb\LaravelHealthCheck\Controllers\HealthCheckController',
['only' => ['index','show']]
);
- Configure the health checks:
php artisan config:publish npmweb/laravel-health-check
- Edit
app/config/packages/npmweb/laravel-health-check/config.php
For information on each health check, see comments in the appropriate class under src/NpmWeb/LaravelHealthCheck/Checks.