Menu
Grafana Cloud

Envoy integration for Grafana Cloud

Envoy is an L7 proxy and communication bus designed for large modern service oriented architectures.

This integration includes 1 pre-built dashboard to help monitor and visualize Envoy metrics.

Before you begin

To enable the Prometheus metrics endpoint, you need to activate (Envoy’s admin interface)[https://www.envoyproxy.io/docs/envoy/latest/start/quick-start/admin#admin].

To do so, add the following snippet to your node configuration file:

yaml
admin:
  address:
    socket_address:
      address: 0.0.0.0
      port_value: 9901

Install Envoy integration for Grafana Cloud

  1. In your Grafana Cloud stack, click Connections in the left-hand menu.
  2. Find Envoy and click its tile to open the integration.
  3. Review the prerequisites in the Configuration Details tab and set up Grafana Agent to send Envoy metrics to your Grafana Cloud instance.
  4. Click Install to add this integration’s pre-built dashboard to your Grafana Cloud instance, and you can start monitoring your Envoy setup.

Configuration snippets for Grafana Alloy

Simple mode

These snippets are configured to scrape a single Envoy server with Grafana Alloy running locally.

First, manually copy and append the following snippets into your alloy configuration file.

Metrics snippets

alloy
discovery.relabel "metrics_integrations_envoy" {
  targets = [{
    __address__ = "localhost:9901",
  }]

  rule {
    target_label = "instance"
    replacement  = constants.hostname
  }
}

prometheus.scrape "metrics_integrations_envoy" {
  targets      = discovery.relabel.metrics_integrations_envoy.output
  forward_to   = [prometheus.remote_write.metrics_service.receiver]
  job_name     = "integrations/envoy"
  metrics_path = "/stats/prometheus"
}

Advanced mode

The following snippets provide examples to guide you through the configuration process.

To instruct Grafana Alloy to scrape your Envoy nodes, manually copy and append the snippets to your alloy configuration file, then follow subsequent instructions.

Advanced metrics snippets

alloy
discovery.relabel "metrics_integrations_envoy" {
  targets = [{
    __address__ = "localhost:9901",
  }]

  rule {
    target_label = "instance"
    replacement  = constants.hostname
  }
}

prometheus.scrape "metrics_integrations_envoy" {
  targets      = discovery.relabel.metrics_integrations_envoy.output
  forward_to   = [prometheus.remote_write.metrics_service.receiver]
  job_name     = "integrations/envoy"
  metrics_path = "/stats/prometheus"
}

To monitor an Envoy instance, you must use a discovery.relabel component to discover your Envoy Prometheus endpoint and apply appropriate labels, followed by a prometheus.scrape component to scrape it.

Configure the following properties within the discovery.relabel component:

  • __address__: change this from localhost:8080 to the host and port of the Envoy Prometheus metrics endpoint.
  • constants.hostname: the snippets set the instance label to your Grafana Alloy server hostname using the constants.hostname variable. If you are running Grafana Alloy outside of your Jenkins server host, change the variable to a value that uniquely identifies it.

If you have multiple Jenkins servers to scrape, configure one discovery.relabel for each and scrape them by including each under targets within the prometheus.scrape component.

Grafana Agent static configuration (deprecated)

The following section shows configuration for running Grafana Agent in static mode which is deprecated. You should use Grafana Alloy for all new deployments.

Dashboards

The Envoy integration installs the following dashboards in your Grafana Cloud instance to help monitor your system.

  • Envoy Overview

Metrics

The most important metrics provided by the Envoy integration, which are used on the pre-built dashboard, are as follows:

  • envoy_cluster_upstream_cx_active
  • envoy_cluster_upstream_cx_total
  • envoy_cluster_upstream_rq_active
  • envoy_cluster_upstream_rq_time_bucket
  • envoy_cluster_upstream_rq_time_count
  • envoy_cluster_upstream_rq_time_sum
  • envoy_cluster_upstream_rq_timeout
  • envoy_cluster_upstream_rq_total
  • envoy_cluster_upstream_rq_xx
  • envoy_cluster_version
  • envoy_http_downstream_cx_active
  • envoy_http_downstream_rq_active
  • envoy_http_downstream_rq_time_bucket
  • envoy_http_downstream_rq_time_count
  • envoy_http_downstream_rq_time_sum
  • envoy_http_downstream_rq_timeout
  • envoy_http_downstream_rq_total
  • envoy_http_downstream_rq_xx
  • envoy_listener_downstream_cx_total
  • envoy_server_uptime
  • up

Changelog

md
# 0.0.5 - September 2023

* New Filter Metrics option for configuring the Grafana Agent, which saves on metrics cost by dropping any metric not used by this integration. Beware that anything custom built using metrics that are not on the snippet will stop working.
* New hostname relabel option, which applies the instance name you write on the text box to the Grafana Agent configuration snippets, making it easier and less error prone to configure this mandatory label.

# 0.0.4 - January 2023

* Update mixin to latest version:
  - Updated `job` and `instance` template variables to support multi-select
  - Updated template variables with correct labels

# 0.0.3 - October 2022

* Adding instructions to enable the Prometheus metrics endpoint

# 0.0.2 - September 2022

* Update mixin to latest version:
  - Update the datasource template variable label to 'Data Source'

# 0.0.1 - October 2021

* Initial release

Cost

By connecting your Envoy instance to Grafana Cloud, you might incur charges. To view information on the number of active series that your Grafana Cloud account uses for metrics included in each Cloud tier, see Active series and dpm usage and Cloud tier pricing.