This check collects distributed system observability metrics from Envoy.
The Envoy check is included in the Datadog Agent package, so you don't need to install anything else on your server.
If you are using Envoy as part of Istio, to access Envoy's admin endpoint you need to set Istio's proxyAdminPort.
There are 2 ways to setup the /stats
endpoint:
Here's an example Envoy admin configuration:
admin:
access_log_path: "/dev/null"
address:
socket_address:
address: 0.0.0.0
port_value: 8001
Create a listener/vhost that routes to the admin endpoint (Envoy connecting to itself), but only has a route for /stats
; all other routes get a static/error response. Additionally, this allows nice integration with L3 filters for auth, for example.
Here's an example config (from this gist):
admin:
access_log_path: /dev/null
address:
socket_address:
protocol: TCP
address: 127.0.0.1
port_value: 8081
static_resources:
listeners:
- address:
socket_address:
protocol: TCP
address: 0.0.0.0
port_value: 80
filter_chains:
- filters:
- name: envoy.http_connection_manager
config:
codec_type: AUTO
stat_prefix: ingress_http
route_config:
virtual_hosts:
- name: backend
domains:
- "*"
routes:
- match:
prefix: /stats
route:
cluster: service_stats
http_filters:
- name: envoy.router
config:
clusters:
- name: service_stats
connect_timeout: 0.250s
type: LOGICAL_DNS
lb_policy: ROUND_ROBIN
hosts:
- socket_address:
protocol: TCP
address: 127.0.0.1
port_value: 8001
To configure this check for an Agent running on a host:
-
Edit the
envoy.d/conf.yaml
file, in theconf.d/
folder at the root of your Agent's configuration directory to start collecting your Envoy performance data. See the sample envoy.d/conf.yaml for all available configuration options.init_config: instances: ## @param stats_url - string - required ## The admin endpoint to connect to. It must be accessible: ## https://www.envoyproxy.io/docs/envoy/latest/operations/admin ## Add a `?usedonly` on the end if you wish to ignore ## unused metrics instead of reporting them as `0`. # - stats_url: http://localhost:80/stats
-
Check if the Datadog Agent can access Envoy's admin endpoint.
Metrics can be filtered using a regular expression metric_whitelist
or metric_blacklist
. If both are used, then whitelist is applied first, and then blacklist is applied on the resulting set.
The filtering occurs before tag extraction, so you have the option to have certain tags decide whether or not to keep or ignore metrics. An exhaustive list of all metrics and tags can be found in metrics.py. Let's walk through an example of Envoy metric tagging!
...
'cluster.grpc.success': {
'tags': (
('<CLUSTER_NAME>', ),
('<GRPC_SERVICE>', '<GRPC_METHOD>', ),
(),
),
...
},
...
Here there are 3
tag sequences: ('<CLUSTER_NAME>')
, ('<GRPC_SERVICE>', '<GRPC_METHOD>')
, and empty ()
. The number of sequences corresponds exactly to how many metric parts there are. For this metric, there are 3
parts: cluster
, grpc
, and success
. Envoy separates everything with a .
, hence the final metric name would be:
cluster.<CLUSTER_NAME>.grpc.<GRPC_SERVICE>.<GRPC_METHOD>.success
If you care only about the cluster name and grpc service, you would add this to your whitelist:
^cluster\.<CLUSTER_NAME>\.grpc\.<GRPC_SERVICE>\.
Available for Agent versions >6.0
-
Collecting logs is disabled by default in the Datadog Agent, enable it in your
datadog.yaml
file:logs_enabled: true
-
Next, edit
envoy.d/conf.yaml
by uncommenting thelogs
lines at the bottom. Update the logspath
with the correct path to your Envoy log files.logs: - type: file path: /var/log/envoy.log source: envoy service: envoy
For containerized environments, see the Autodiscovery Integration Templates for guidance on applying the parameters below.
Parameter | Value |
---|---|
<INTEGRATION_NAME> |
envoy |
<INIT_CONFIG> |
blank or {} |
<INSTANCE_CONFIG> |
{"stats_url": "http://%%host%%:80/stats"} |
Available for Agent versions >6.0
Collecting logs is disabled by default in the Datadog Agent. To enable it, see Kubernetes log collection documentation.
Parameter | Value |
---|---|
<LOG_CONFIG> |
{"source": "envoy", "service": "<SERVICE_NAME>"} |
Run the Agent's status subcommand and look for envoy
under the Checks section.
See metadata.csv for a list of metrics provided by this integration.
See metrics.py for a list of tags sent by each metric.
The Envoy check does not include any events.
envoy.can_connect:
Returns CRITICAL
if the Agent cannot connect to Envoy to collect metrics, otherwise returns OK
.
Need help? Contact Datadog support.