Skip to content

CoreProc/laravel-healthcheck

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Healthcheck

This package provides a simple healthcheck endpoint for your Laravel application.

Import Action

Installation

You can install the package via composer:

composer require coreproc/laravel-healthcheck

Publish the config file:

php artisan vendor:publish --provider="Coreproc\LaravelHealthcheck\HealthcheckServiceProvider"

Usage

Once installed, you can access the healthcheck endpoint at /healthcheck.

You can configure the path in the config/healthcheck.php file along with specifying which services you want to check.

// config/healthcheck.php
return [

    'path' => 'healthcheck',

    'database' => true,

    'redis' => true,

    'horizon' => true,

];

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages