dennzo / health-check
A library containing tools for outputting json information for monitoring systems.
Installs: 21
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 3
pkg:composer/dennzo/health-check
Requires
- php: >=7.4
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^8.5
- symfony/phpunit-bridge: ^5.0
- symfony/test-pack: ^1.0
This package is auto-updated.
Last update: 2025-12-29 03:54:24 UTC
README
This package contains a standardized format for easy monitoring checks.
The tools will generate an output in the below format.
{
"status":"OK",
"applicationName":"foo-service",
"version":"1.1",
"environment":"prod"
}
You should set the status manually.
The following information will be automatically detected.
- GIT Version
- Development Environment (ex. dev, test, prod)
- Name of the application
The git tag and application name is ONLY detected automatically if...
- ...the server has git installed
- ...the application itself is a git repository
Installation
composer require dennzo/monitoring-tools
Usage
Use the Class MonitoringTools to implement this feature in your application.
Depending on your application you will need to create the MonitoringController and define a health_check route.
// Json MonitoringTools::provideHealthCheckAsJson(); // Object MonitoringTools::provideHealthCheckAsObject();
You can find some more examples and explanation here.
Defaults
| Name | Default | Description |
|---|---|---|
| Status | OK | You should override this within your application, for example by testing the apps functionality. |
| Git Version | Automatic mechanism or null | If GIT is installed and the current project is a git repository it will automatically detect this. |
| Environment | Automatic mechanism or null | The environment is read to see if certain variables exist. |
| Application Name | Automatic mechanism or null | If GIT is installed and the current project is a git repository it will automatically detect this. |