templatemonster / healthchecks
HTTP and console health checks for microservices
Installs: 37 863
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 4
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=7.4.0
- guzzlehttp/guzzle: ^7.3
- indigerd/yii2-rest: *
- yiisoft/yii2: ^2.0.42
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' => 'templatemonster\healthchecks\Module',
'checks'=> [
'db',
'cache',
'mongodb',
'rabbitmq' = > 'queue',
'elasticsearch',
'urls' => [
'name1' => 'http://ukr1',
'name2' => 'http://ukr2',
]
,
'custom' => function() {
return (2 + 2 == 4);
};
],
],
.........