filld / health
Simple health check for your database connections.
v5.5.0
2018-01-30 20:14 UTC
Requires
- illuminate/database: ~5.0
This package is auto-updated.
Last update: 2026-03-09 17:06:34 UTC
README
A simple plugin for Laravel / Lumen, which enumerates your database connections, and returns a JSON block showing if the connections are healthy or not. It specifically doesn't show the connection names so as to not leak confidential information.
{
"status": true,
"dbs": {
"DB_1": true,
"DB_2": true,
"DB_3": true
}
}
Installation
Laravel
Register the Service provider in config/app.php
'providers' => [
// Other Service Providers
Filld\Health\Providers\HealthServiceProvider::class,
],
Lumen
Register the Service provider in bootstrap/app.php:
$app->register(Filld\Health\Providers\HealthServiceProvider::class);