open-consul/website/source/intro/getting-started/checks.html.markdown

97 lines
3.9 KiB
Markdown
Raw Normal View History

---
layout: "intro"
page_title: "Registering Health Checks"
sidebar_current: "gettingstarted-checks"
description: |-
We've now seen how simple it is to run Consul, add nodes and services, and query those nodes and services. In this section, we will continue our tour by adding health checks to both nodes and services. Health checks are a critical component of service discovery that prevents using services that are unhealthy.
---
2014-04-14 21:00:53 +00:00
# Health Checks
2014-04-14 21:00:53 +00:00
We've now seen how simple it is to run Consul, add nodes and services, and
query those nodes and services. In this section, we will continue our tour
by adding health checks to both nodes and services. Health checks are a
critical component of service discovery that prevents using services that
are unhealthy.
2014-04-14 21:00:53 +00:00
This page will build upon the previous page and assumes you have a
two node cluster running.
2014-04-11 02:06:10 +00:00
## Defining Checks
Similar to a service, a check can be registered either by providing a
[check definition](/docs/agent/checks.html) or by making the
2014-11-26 11:55:42 +00:00
appropriate calls to the [HTTP API](/docs/agent/http.html).
2014-04-14 21:00:53 +00:00
We will use the check definition because, just like with services, definitions
are the most common way to set up checks.
2014-04-14 21:00:53 +00:00
Let's create two definition files in the Consul configuration directory of
the second node:
2014-04-11 02:06:10 +00:00
```text
2014-04-14 21:00:53 +00:00
$ echo '{"check": {"name": "ping", "script": "ping -c1 google.com >/dev/null", "interval": "30s"}}' >/etc/consul.d/ping.json
2014-04-11 02:06:10 +00:00
$ echo '{"service": {"name": "web", "tags": ["rails"], "port": 80,
2014-04-14 21:00:53 +00:00
"check": {"script": "curl localhost:80 >/dev/null 2>&1", "interval": "10s"}}}' >/etc/consul.d/web.json
2014-04-11 02:06:10 +00:00
```
2014-04-14 21:00:53 +00:00
The first definition adds a host-level check named "ping". This check runs
on a 30 second interval, invoking `ping -c1 google.com`. If the command
exits with a non-zero exit code, then the node will be flagged unhealthy.
This is the contract for any `script`-based health check.
2014-04-14 21:00:53 +00:00
The second command modifies the service named `web`, adding a check that sends a
request every 10 seconds via curl to verify that the web server is accessible.
As with the host-level health check, if the script exits with a non-zero exit code,
the service will be flagged unhealthy.
2014-04-11 02:06:10 +00:00
Now restart the second agent or send it a `SIGHUP` signal. You should now see the
2014-04-14 21:00:53 +00:00
following log lines:
2014-04-11 02:06:10 +00:00
```text
2014-04-11 02:06:10 +00:00
==> Starting Consul agent...
...
[INFO] agent: Synced service 'web'
[INFO] agent: Synced check 'service:web'
[INFO] agent: Synced check 'ping'
[WARN] Check 'service:web' is now critical
```
2014-04-14 21:00:53 +00:00
The first few log lines indicate that the agent has synced the new
definitions. The last line indicates that the check we added for
the `web` service is critical. This is because we're not actually running
a web server, so the curl test is failing!
2014-04-11 02:06:10 +00:00
## Checking Health Status
Now that we've added some simple checks, we can use the HTTP API to inspect
them. First, we can look for any failing checks using this command (note, this
can be run on either node):
2014-04-11 02:06:10 +00:00
```text
2014-04-11 02:06:10 +00:00
$ curl http://localhost:8500/v1/health/state/critical
[{"Node":"agent-two","CheckID":"service:web","Name":"Service 'web' check","Status":"critical","Notes":"","ServiceID":"web","ServiceName":"web"}]
```
We can see that there is only a single check, our `web` service check, in the
`critical` state.
2014-04-14 21:00:53 +00:00
Additionally, we can attempt to query the web service using DNS. Consul
will not return any results since the service is unhealthy:
2014-04-11 02:06:10 +00:00
```text
dig @127.0.0.1 -p 8600 web.service.consul
2014-04-14 21:00:53 +00:00
...
2014-04-11 02:06:10 +00:00
;; QUESTION SECTION:
;web.service.consul. IN A
```
In this section, you learned how easy it is to add health checks. Check definitions
2014-04-11 02:06:10 +00:00
can be updated by changing configuration files and sending a `SIGHUP` to the agent.
Alternatively the HTTP API can be used to add, remove, and modify checks dynamically.
The API allows for a "dead man's switch" or [TTL-based check](/docs/agent/checks.html).
2014-04-11 02:06:10 +00:00
TTL checks can be used to integrate an application more tightly with Consul, enabling
business logic to be evaluated as part of assessing the state of a check.