12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Consul;
- class Health extends Client implements HealthInterface
- {
- public function node($node, array $options = []): ConsulResponse
- {
- $params = [
- 'query' => $this->resolveOptions($options, ['dc']),
- ];
- return $this->request('GET', '/v1/health/node/' . $node, $params);
- }
- public function checks($service, array $options = []): ConsulResponse
- {
- $params = [
- 'query' => $this->resolveOptions($options, ['dc']),
- ];
- return $this->request('GET', '/v1/health/checks/' . $service, $params);
- }
- public function service($service, array $options = []): ConsulResponse
- {
- $params = [
- 'query' => $this->resolveOptions($options, ['dc', 'tag', 'passing']),
- ];
- return $this->request('GET', '/v1/health/service/' . $service, $params);
- }
- public function state($state, array $options = []): ConsulResponse
- {
- $params = [
- 'query' => $this->resolveOptions($options, ['dc']),
- ];
- return $this->request('GET', '/v1/health/state/' . $state, $params);
- }
- }
|