library laravel-health-check
Provides monitoring for the key components of your laravel app.
tiendanube/laravel-health-check
Provides monitoring for the key components of your laravel app.
- Wednesday, March 29, 2017
- by devsdmf
- Repository
- 3 Watchers
- 0 Stars
- 4,820 Installations
- PHP
- 0 Dependents
- 0 Suggesters
- 0 Forks
- 0 Open issues
- 2 Versions
- 24 % Grown
laravel-health-checks
Allows your Laravel app to run health checks on itself, (*1)
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
- Add service provider:
app.php, (*2)
'providers' => array(
...
'NpmWeb\LaravelHealthCheck\LaravelHealthCheckServiceProvider',
);
- Add route for the health check controller:
routes.php, (*3)
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., (*4)
dev-master
9999999-dev
Provides monitoring for the key components of your laravel app.
Sources
Download
The Requires
by
Josh Justice
v1.0.0
1.0.0.0
Provides monitoring for the key components of your laravel app.
Sources
Download
The Requires
by
Josh Justice