indigerd / healthchecks
HTTP and console health checks for microservices
Installs: 37 900
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 1
Open Issues: 0
Type:package
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);
};
],
],
.........