open-consul/website/source/docs/agent/watches.html.markdown

352 lines
8.6 KiB
Markdown
Raw Normal View History

2014-08-22 00:25:42 +00:00
---
layout: "docs"
page_title: "Watches"
sidebar_current: "docs-agent-watches"
description: |-
2015-02-05 03:25:29 +00:00
Watches are a way of specifying a view of data (e.g. list of nodes, KV pairs, health checks) which is monitored for updates. When an update is detected, an external handler is invoked. A handler can be any executable. As an example, you could watch the status of health checks and notify an external system when a check is critical.
2014-08-22 00:25:42 +00:00
---
# Watches
2015-02-05 03:25:29 +00:00
Watches are a way of specifying a view of data (e.g. list of nodes, KV pairs, health
checks) which is monitored for updates. When an update is detected, an external handler
is invoked. A handler can be any executable. As an example, you could watch the status
of health checks and notify an external system when a check is critical.
2014-08-22 00:25:42 +00:00
Watches are implemented using blocking queries in the [HTTP API](/docs/agent/http.html).
2015-02-05 03:25:29 +00:00
Agents automatically make the proper API calls to watch for changes
2014-08-22 00:25:42 +00:00
and inform a handler when the data view has updated.
2014-09-18 05:41:00 +00:00
Watches can be configured as part of the [agent's configuration](/docs/agent/options.html),
2014-08-22 00:25:42 +00:00
causing them to run once the agent is initialized. Reloading the agent configuration
allows for adding or removing watches dynamically.
Alternatively, the [watch command](/docs/commands/watch.html) enables a watch to be
2015-02-05 03:25:29 +00:00
started outside of the agent. This can be used by an operator to inspect data in Consul
2014-08-22 00:25:42 +00:00
or to easily pipe data into processes without being tied to the agent lifecycle.
In either case, the `type` of the watch must be specified. Each type of watch
2015-02-05 03:25:29 +00:00
supports different parameters, some required and some optional. These options are specified
in a JSON body when using agent configuration or as CLI flags for the watch command.
2014-08-22 00:25:42 +00:00
## Handlers
2015-02-05 03:25:29 +00:00
The watch configuration specifies the view of data to be monitored.
Once that view is updated, the specified handler is invoked. The handler
2014-08-22 00:25:42 +00:00
can be any executable.
2015-02-05 03:25:29 +00:00
A handler should read its input from stdin and expect to read
2014-08-22 00:25:42 +00:00
JSON formatted data. The format of the data depends on the type of the
2015-02-05 03:25:29 +00:00
watch. Each watch type documents the format type. Because they
2014-08-22 00:25:42 +00:00
map directly to an HTTP API, handlers should expect the input to
match the format of the API.
2015-02-05 03:25:29 +00:00
Additionally, the `CONSUL_INDEX` environment variable will be set.
This maps to the `X-Consul-Index` value in responses from the
[HTTP API](/docs/agent/http.html).
2014-08-22 00:25:42 +00:00
## Global Parameters
In addition to the parameters supported by each option type, there
are a few global parameters that all watches support:
* `datacenter` - Can be provided to override the agent's default datacenter.
* `token` - Can be provided to override the agent's default ACL token.
* `handler` - The handler to invoke when the data view updates.
## Watch Types
2015-02-05 03:25:29 +00:00
The following types are supported. Detailed documentation on each is below:
2014-08-22 00:25:42 +00:00
* `key` - Watch a specific KV pair
* `keyprefix` - Watch a prefix in the KV store
* `services` - Watch the list of available services
* `nodes` - Watch the list of nodes
* `service`- Watch the instances of a service
* `checks` - Watch the value of health checks
2014-08-29 00:22:56 +00:00
* `event` - Watch for custom user events
2014-08-22 00:25:42 +00:00
### Type: key
The "key" watch type is used to watch a specific key in the KV store.
It requires that the "key" parameter be specified.
This maps to the `/v1/kv/` API internally.
Here is an example configuration:
```javascript
{
"type": "key",
"key": "foo/bar/baz",
"handler": "/usr/bin/my-key-handler.sh"
}
```
2014-08-22 00:25:42 +00:00
Or, using the watch command:
$ consul watch -type key -key foo/bar/baz /usr/bin/my-key-handler.sh
An example of the output of this command:
```javascript
{
"Key": "foo/bar/baz",
"CreateIndex": 1793,
"ModifyIndex": 1793,
"LockIndex": 0,
"Flags": 0,
"Value": "aGV5",
"Session": ""
}
```
2014-08-22 00:25:42 +00:00
### Type: keyprefix
The "keyprefix" watch type is used to watch a prefix of keys in the KV store.
It requires that the "prefix" parameter be specified.
This maps to the `/v1/kv/` API internally.
Here is an example configuration:
```javascript
{
"type": "keyprefix",
"prefix": "foo/",
"handler": "/usr/bin/my-prefix-handler.sh"
}
```
2014-08-22 00:25:42 +00:00
Or, using the watch command:
$ consul watch -type keyprefix -prefix foo/ /usr/bin/my-prefix-handler.sh
An example of the output of this command:
```javascript
[
{
"Key": "foo/bar",
"CreateIndex": 1796,
"ModifyIndex": 1796,
"LockIndex": 0,
"Flags": 0,
"Value": "TU9BUg==",
"Session": ""
},
{
"Key": "foo/baz",
"CreateIndex": 1795,
"ModifyIndex": 1795,
"LockIndex": 0,
"Flags": 0,
"Value": "YXNkZg==",
"Session": ""
},
{
"Key": "foo/test",
"CreateIndex": 1793,
"ModifyIndex": 1793,
"LockIndex": 0,
"Flags": 0,
"Value": "aGV5",
"Session": ""
}
]
```
2014-08-22 00:25:42 +00:00
### Type: services
The "services" watch type is used to watch the list of available
services. It has no parameters.
This maps to the `/v1/catalog/services` API internally.
An example of the output of this command:
```javascript
{
"consul": [],
"redis": [],
"web": []
}
```
2014-08-22 00:25:42 +00:00
### Type: nodes
The "nodes" watch type is used to watch the list of available
nodes. It has no parameters.
This maps to the `/v1/catalog/nodes` API internally.
An example of the output of this command:
```javascript
[
{
"Node": "nyc1-consul-1",
"Address": "192.241.159.115"
},
{
"Node": "nyc1-consul-2",
"Address": "192.241.158.205"
},
{
"Node": "nyc1-consul-3",
"Address": "198.199.77.133"
},
{
"Node": "nyc1-worker-1",
"Address": "162.243.162.228"
},
{
"Node": "nyc1-worker-2",
"Address": "162.243.162.226"
},
{
"Node": "nyc1-worker-3",
"Address": "162.243.162.229"
}
]
```
2014-08-22 00:25:42 +00:00
### Type: service
The "service" watch type is used to monitor the providers
2015-02-05 03:25:29 +00:00
of a single service. It requires the "service" parameter
and optionally takes the parameters "tag" and "passingonly".
The "tag" parameter will filter by tag, and "passingonly" is
a boolean that will filter to only the instances passing all
health checks.
2014-08-22 00:25:42 +00:00
This maps to the `/v1/health/service` API internally.
Here is an example configuration:
```javascript
{
"type": "service",
"service": "redis",
"handler": "/usr/bin/my-service-handler.sh"
}
```
2014-08-22 00:25:42 +00:00
Or, using the watch command:
$ consul watch -type service -service redis /usr/bin/my-service-handler.sh
An example of the output of this command:
```javascript
[
{
"Node": {
"Node": "foobar",
"Address": "10.1.10.12"
},
"Service": {
"ID": "redis",
"Service": "redis",
"Tags": null,
"Port": 8000
},
"Checks": [
{
"Node": "foobar",
"CheckID": "service:redis",
"Name": "Service 'redis' check",
"Status": "passing",
"Notes": "",
"Output": "",
"ServiceID": "redis",
"ServiceName": "redis"
},
{
"Node": "foobar",
"CheckID": "serfHealth",
"Name": "Serf Health Status",
"Status": "passing",
"Notes": "",
"Output": "",
"ServiceID": "",
"ServiceName": ""
}
2014-08-22 00:25:42 +00:00
]
}
]
```
2014-08-22 00:25:42 +00:00
### Type: checks
The "checks" watch type is used to monitor the checks of a given
2014-11-26 13:48:33 +00:00
service or those in a specific state. It optionally takes the "service"
2015-02-05 03:25:29 +00:00
parameter to filter to a specific service or the "state" parameter to
filter to a specific state. By default, it will watch all checks.
2014-08-22 00:25:42 +00:00
2015-02-05 03:25:29 +00:00
This maps to the `/v1/health/state/` API if monitoring by state
2014-08-22 00:25:42 +00:00
or `/v1/health/checks/` if monitoring by service.
An example of the output of this command:
```javascript
[
{
"Node": "foobar",
"CheckID": "service:redis",
"Name": "Service 'redis' check",
"Status": "passing",
"Notes": "",
"Output": "",
"ServiceID": "redis",
"ServiceName": "redis"
}
]
```
2014-08-29 00:22:56 +00:00
### Type: event
The "event" watch type is used to monitor for custom user
events. These are fired using the [consul event](/docs/commands/event.html) command.
2015-02-05 03:25:29 +00:00
It takes only a single optional "name" parameter which restricts
2014-08-29 00:22:56 +00:00
the watch to only events with the given name.
2014-08-29 02:23:01 +00:00
This maps to the `v1/event/list` API internally.
2014-08-29 00:22:56 +00:00
Here is an example configuration:
```javascript
{
"type": "event",
"name": "web-deploy",
"handler": "/usr/bin/my-deploy-handler.sh"
}
```
2014-08-29 00:22:56 +00:00
Or, using the watch command:
$ consul watch -type event -name web-deploy /usr/bin/my-deploy-handler.sh
An example of the output of this command:
```javascript
[
{
"ID": "f07f3fcc-4b7d-3a7c-6d1e-cf414039fcee",
"Name": "web-deploy",
"Payload": "MTYwOTAzMA==",
"NodeFilter": "",
"ServiceFilter": "",
"TagFilter": "",
"Version": 1,
"LTime": 18
},
...
]
```
2014-08-29 00:22:56 +00:00
To fire a new `web-deploy` event the following could be used:
$ consul event -name web-deploy 1609030