Skip to main content

Envoy

Plugin: go.d.plugin Module: envoy

Overview

This collector monitors Envoy proxies. It collects server, cluster, and listener metrics.

This collector is supported on all platforms.

This collector supports collecting metrics from multiple instances of this integration, including remote instances.

Envoy can be monitored further using the following other integrations:

Default Behavior

Auto-Detection

By default, it detects Envoy instances running on localhost.

Limits

The default configuration for this integration does not impose any limits on data collection.

Performance Impact

The default configuration for this integration is not expected to impose a significant performance impact on the system.

Setup

You can configure the envoy collector in two ways:

MethodBest forHow to
UIFast setup without editing filesGo to Nodes → Configure this node → Collectors → Jobs, search for envoy, then click + to add a job.
FileIf you prefer configuring via file, or need to automate deployments (e.g., with Ansible)Edit go.d/envoy.conf and add a job.
important

UI configuration requires paid Netdata Cloud plan.

Prerequisites

No action required.

Configuration

Options

The following options can be defined globally: update_every, autodetection_retry.

Config options
GroupOptionDescriptionDefaultRequired
Collectionupdate_everyData collection interval (seconds).1no
autodetection_retryAutodetection retry interval (seconds). Set 0 to disable.0no
TargeturlTarget endpoint URL.http://127.0.0.1:9091/stats/prometheusyes
timeoutHTTP request timeout (seconds).1no
HTTP AuthusernameUsername for Basic HTTP authentication.no
passwordPassword for Basic HTTP authentication.no
bearer_token_filePath to a file containing a bearer token (used for Authorization: Bearer).no
TLStls_skip_verifySkip TLS certificate and hostname verification (insecure).nono
tls_caPath to CA bundle used to validate the server certificate.no
tls_certPath to client TLS certificate (for mTLS).no
tls_keyPath to client TLS private key (for mTLS).no
Proxyproxy_urlHTTP proxy URL.no
proxy_usernameUsername for proxy Basic HTTP authentication.no
proxy_passwordPassword for proxy Basic HTTP authentication.no
RequestmethodHTTP method to use.GETno
bodyRequest body (e.g., for POST/PUT).no
headersAdditional HTTP headers (one per line as key: value).no
not_follow_redirectsDo not follow HTTP redirects.nono
force_http2Force HTTP/2 (including h2c over TCP).nono
Virtual NodevnodeAssociates this data collection job with a Virtual Node.no

via UI

Configure the envoy collector from the Netdata web interface:

  1. Go to Nodes.
  2. Select the node where you want the envoy data-collection job to run and click the (Configure this node). That node will run the data collection.
  3. The Collectors → Jobs view opens by default.
  4. In the Search box, type envoy (or scroll the list) to locate the envoy collector.
  5. Click the + next to the envoy collector to add a new job.
  6. Fill in the job fields, then click Test to verify the configuration and Submit to save.
    • Test runs the job with the provided settings and shows whether data can be collected.
    • If it fails, an error message appears with details (for example, connection refused, timeout, or command execution errors), so you can adjust and retest.

via File

The configuration file name for this integration is go.d/envoy.conf.

The file format is YAML. Generally, the structure is:

update_every: 1
autodetection_retry: 0
jobs:
- name: some_name1
- name: some_name2

You can edit the configuration file using the edit-config script from the Netdata config directory.

cd /etc/netdata 2>/dev/null || cd /opt/netdata/etc/netdata
sudo ./edit-config go.d/envoy.conf
Examples
Basic

A basic example configuration.

jobs:
- name: local
url: http://127.0.0.1:9901/stats/prometheus

HTTP authentication

Basic HTTP authentication.

Config
jobs:
- name: local
url: http://127.0.0.1:9901/stats/prometheus
username: username
password: password

HTTPS with self-signed certificate

Do not validate server certificate chain and hostname.

Config
jobs:
- name: local
url: https://127.0.0.1:9901/stats/prometheus
tls_skip_verify: yes

Multi-instance

Note: When you define multiple jobs, their names must be unique.

Collecting metrics from local and remote instances.

Config
jobs:
- name: local
url: http://127.0.0.1:9901/stats/prometheus

- name: remote
url: http://192.0.2.1:9901/stats/prometheus

Alerts

There are no alerts configured by default for this integration.

Metrics

Metrics grouped by scope.

The scope defines the instance that the metric belongs to. An instance is uniquely identified by a set of labels.

Per Envoy instance

Envoy exposes metrics in Prometheus format. All metric labels are added to charts.

This scope has no labels.

Metrics:

MetricDescriptionDimensionsUnit
envoy.server_stateServer current statelive, draining, pre_initializing, initializingstate
envoy.server_connections_countServer current connectionsconnectionsconnections
envoy.server_parent_connections_countServer current parent connectionsconnectionsconnections
envoy.server_memory_allocated_sizeServer memory allocated sizeallocatedbytes
envoy.server_memory_heap_sizeServer memory heap sizeheapbytes
envoy.server_memory_physical_sizeServer memory physical sizephysicalbytes
envoy.server_uptimeServer uptimeuptimeseconds
envoy.cluster_manager_cluster_countCluster manager current clustersactive, not_activeclusters
envoy.cluster_manager_cluster_changes_rateCluster manager cluster changesadded, modified, removedclusters/s
envoy.cluster_manager_cluster_updates_rateCluster manager updatesclusterupdates/s
envoy.cluster_manager_cluster_updated_via_merge_rateCluster manager updates applied as merged updatesvia_mergeupdates/s
envoy.cluster_manager_update_merge_cancelled_rateCluster manager cancelled merged updatesmerge_cancelledupdates/s
envoy.cluster_manager_update_out_of_merge_window_rateCluster manager out of a merge window updatesout_of_merge_windowupdates/s
envoy.cluster_membership_endpoints_countCluster membership current endpointshealthy, degraded, excludedendpoints
envoy.cluster_membership_changes_rateCluster membership changesmembershipchanges/s
envoy.cluster_membership_updates_rateCluster membership updatessuccess, failure, empty, no_rebuildupdates/s
envoy.cluster_upstream_cx_active_countCluster upstream current active connectionsactiveconnections
envoy.cluster_upstream_cx_rateCluster upstream connectionscreatedconnections/s
envoy.cluster_upstream_cx_http_rateCluster upstream connections by HTTP versionhttp1, http2, http3connections/s
envoy.cluster_upstream_cx_destroy_rateCluster upstream destroyed connectionslocal, remoteconnections/s
envoy.cluster_upstream_cx_connect_fail_rateCluster upstream failed connectionsfailedconnections/s
envoy.cluster_upstream_cx_connect_timeout_rateCluster upstream timed out connectionstimeoutconnections/s
envoy.cluster_upstream_cx_bytes_rateCluster upstream connection trafficreceived, sentbytes/s
envoy.cluster_upstream_cx_bytes_buffered_sizeCluster upstream current connection buffered sizereceived, sendbytes
envoy.cluster_upstream_rq_active_countCluster upstream current active requestsactiverequests
envoy.cluster_upstream_rq_rateCluster upstream requestsrequestsrequests/s
envoy.cluster_upstream_rq_failed_rateCluster upstream failed requestscancelled, maintenance_mode, timeout, max_duration_reached, per_try_timeout, reset_local, reset_remoterequests/s
envoy.cluster_upstream_rq_pending_active_countCluster upstream current active pending requestsactive_pendingrequests
envoy.cluster_upstream_rq_pending_rateCluster upstream pending requestspendingrequests/s
envoy.cluster_upstream_rq_pending_failed_rateCluster upstream failed pending requestsoverflow, failure_ejectrequests/s
envoy.cluster_upstream_rq_retry_rateCluster upstream request retriesrequestretries/s
envoy.cluster_upstream_rq_retry_success_rateCluster upstream request successful retriessuccessretries/s
envoy.cluster_upstream_rq_retry_backoff_rateCluster upstream request backoff retriesexponential, ratelimitedretries/s
envoy.listener_manager_listeners_countListener manager current listenersactive, warming, draininglisteners
envoy.listener_manager_listener_changes_rateListener manager listener changesadded, modified, removed, stoppedlisteners/s
envoy.listener_manager_listener_object_events_rateListener manager listener object eventscreate_success, create_failure, in_place_updatedobjects/s
envoy.listener_admin_downstream_cx_active_countListener admin downstream current active connectionsactiveconnections
envoy.listener_admin_downstream_cx_rateListener admin downstream connectionscreatedconnections/s
envoy.listener_admin_downstream_cx_destroy_rateListener admin downstream destroyed connectionsdestroyedconnections/s
envoy.listener_admin_downstream_cx_transport_socket_connect_timeout_rateListener admin downstream timed out connectionstimeoutconnections/s
envoy.listener_admin_downstream_cx_rejected_rateListener admin downstream rejected connectionsoverflow, overload, global_overflowconnections/s
envoy.listener_admin_downstream_listener_filter_remote_close_rateListener admin downstream connections closed by remote when peek data for listener filtersclosedconnections/s
envoy.listener_admin_downstream_listener_filter_error_rateListener admin downstream read errors when peeking data for listener filtersreaderrors/s
envoy.listener_admin_downstream_pre_cx_active_countListener admin downstream current active socketsactivesockets
envoy.listener_admin_downstream_pre_cx_timeout_rateListener admin downstream timed out socketstimeoutsockets/s
envoy.listener_downstream_cx_active_countListener downstream current active connectionsactiveconnections
envoy.listener_downstream_cx_rateListener downstream connectionscreatedconnections/s
envoy.listener_downstream_cx_destroy_rateListener downstream destroyed connectionsdestroyedconnections/s
envoy.listener_downstream_cx_transport_socket_connect_timeout_rateListener downstream timed out connectionstimeoutconnections/s
envoy.listener_downstream_cx_rejected_rateListener downstream rejected connectionsoverflow, overload, global_overflowconnections/s
envoy.listener_downstream_listener_filter_remote_close_rateListener downstream connections closed by remote when peek data for listener filtersclosedconnections/s
envoy.listener_downstream_listener_filter_error_rateListener downstream read errors when peeking data for listener filtersreaderrors/s
envoy.listener_downstream_pre_cx_active_countListener downstream current active socketsactivesockets
envoy.listener_downstream_pre_cx_timeout_rateListener downstream timed out socketstimeoutsockets/s

Troubleshooting

Debug Mode

Important: Debug mode is not supported for data collection jobs created via the UI using the Dyncfg feature.

To troubleshoot issues with the envoy collector, run the go.d.plugin with the debug option enabled. The output should give you clues as to why the collector isn't working.

  • Navigate to the plugins.d directory, usually at /usr/libexec/netdata/plugins.d/. If that's not the case on your system, open netdata.conf and look for the plugins setting under [directories].

    cd /usr/libexec/netdata/plugins.d/
  • Switch to the netdata user.

    sudo -u netdata -s
  • Run the go.d.plugin to debug the collector:

    ./go.d.plugin -d -m envoy

    To debug a specific job:

    ./go.d.plugin -d -m envoy -j jobName

Getting Logs

If you're encountering problems with the envoy collector, follow these steps to retrieve logs and identify potential issues:

  • Run the command specific to your system (systemd, non-systemd, or Docker container).
  • Examine the output for any warnings or error messages that might indicate issues. These messages should provide clues about the root cause of the problem.

System with systemd

Use the following command to view logs generated since the last Netdata service restart:

journalctl _SYSTEMD_INVOCATION_ID="$(systemctl show --value --property=InvocationID netdata)" --namespace=netdata --grep envoy

System without systemd

Locate the collector log file, typically at /var/log/netdata/collector.log, and use grep to filter for collector's name:

grep envoy /var/log/netdata/collector.log

Note: This method shows logs from all restarts. Focus on the latest entries for troubleshooting current issues.

Docker Container

If your Netdata runs in a Docker container named "netdata" (replace if different), use this command:

docker logs netdata 2>&1 | grep envoy

Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.