2017 © Pedro Peláez
 

laravel5-plugin health

Simple health check for your database connections.

image

filld/health

Simple health check for your database connections.

  • Tuesday, January 30, 2018
  • by russianryebread
  • Repository
  • 4 Watchers
  • 1 Stars
  • 911 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 1 Open issues
  • 5 Versions
  • 9 % Grown

The README.md

Filld Laravel / Lumen Health check

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., (*1)

{
  "status": true,
  "dbs": {
    "DB_1": true,
    "DB_2": true,
    "DB_3": true
  }
}

Installation

Laravel

Register the Service provider in config/app.php, (*2)

'providers' => [
    // Other Service Providers
    Filld\Health\Providers\HealthServiceProvider::class,
],

Lumen

Register the Service provider in bootstrap/app.php:, (*3)

$app->register(Filld\Health\Providers\HealthServiceProvider::class);

The Versions

30/01 2018

dev-lumen-5.5

dev-lumen-5.5

Simple health check for your database connections.

  Sources   Download

MIT

The Requires

 

by Ryan Hoshor

30/01 2018

v5.5.0

5.5.0.0

Simple health check for your database connections.

  Sources   Download

MIT

The Requires

 

by Ryan Hoshor

08/08 2017

dev-master

9999999-dev

Simple health check for your database connections.

  Sources   Download

MIT

The Requires

 

by Ryan Hoshor

08/08 2017

v1.0.1

1.0.1.0

Simple health check for your database connections.

  Sources   Download

MIT

The Requires

 

by Ryan Hoshor

23/11 2016

v1.0.0

1.0.0.0

Simple health check for your database connections.

  Sources   Download

MIT

The Requires

 

by Ryan Hoshor