Filter events
Boundary lets you filter which error, observation, system, or telemetry events are written to a given event sink using allow_filters and deny_filters predicates in the sink configuration. Refer to Filtering and listing resources for more on Boundary's filter syntax.
A variety of event types (error, observation, system, etc) are emitted from Boundary. Boundary events can be emitted in several formats including cloudevents and hclog, and can be encoded as text and json.
Boundary allows you to configure any number of sinks where these events will be
written. When configuring an event sink, you can specify common sink
parameters which include both
allow_filters and deny_filters which use the standard filter
syntax used elsewhere in Boundary.
Example filtered events
Example events encoded as cloudevents-text. The first event is a system event and the second event is an observation event.
{
"id": "DU7u227Jhc",
"source": "https://hashicorp.com/boundary/dev-controller/boundary-dev",
"specversion": "1.0",
"type": "system",
"data": {
"version": "v0.1",
"op": "worker.(Worker).createClientConn",
"data": {
"address": "127.0.0.1:9201",
"msg": "connected to controller"
}
},
"datacontentype": "text/plain",
"time": "2021-08-05T18:00:05.303435-04:00"
}
{
"id": "s5ESg6CckX",
"source": "https://hashicorp.com/boundary/dev-controller/boundary-dev",
"specversion": "1.0",
"type": "observation",
"data": {
"latency-ms": 202.995176,
"request_info": {
"id": "gtraceid_WiLnGzc2UHmNAYlcQ0sK",
"method": "POST",
"path": "/v1/auth-methods/ampw_1234567890:authenticate"
},
"start": "2021-08-05T18:00:34.032333-04:00",
"status": 200,
"stop": "2021-08-05T18:00:34.235335-04:00",
"version": "v0.1"
},
"datacontentype": "text/plain",
"time": "2021-08-05T18:00:34.235357-04:00"
}
Configure sink filters
To filter an event sink which was configured for every event type to only include the above events, use the following sink configuration:
sink "stderr" = {
name = "all-events"
description = "All events sent to stderr"
event_types = ["*"]
format = "cloudevents-text"
allow_filters = [
"\"/data/request_info/path\" contains \":authenticate\"",
"\"/data/op\" contains \".createClientConn\"",
]
# note: deny_filters are also supported.
}
Filter events with boundary dev
When running boundary dev the example allow filter can be given via:
boundary dev \
-event-allow-filter '"/data/request_info/path" contains ":authenticate"' \
-event-allow-filter '"/data/op" contains ".createClientConn"'
Double quotes are part of the filter syntax; when using the CLI, it is likely easier to surround the filter with single quotes than to deal with escaping double quotes.
Note: Both -event-allow-filter and -event-deny-filter command flags are
supported for the boundary dev command.