indigerd / healthchecks
HTTP and console health checks for microservices
Package info
github.com/Indigerd/microservice-health-check
Type:package
pkg:composer/indigerd/healthchecks
v0.0.5
2019-05-21 08:49 UTC
Requires
- php: >=5.5.0
- indigerd/yii2-rest: *
- yiisoft/yii2: *
README
Module have several built in health checks like db and cache
Add health check in configuration by populating checks array property
for example
'modules'=>[
.........
'healthchecks' => [
'class' => 'indigerd\healthchecks\Module',
'checks'=> [
'db',
'cache',
'custom' => function() {
return (2 + 2 == 4);
};
],
],
.........