Load Reporting service (LRS)

This documentation is for the Envoy v3 API.

As of Envoy v1.18 the v2 API has been removed and is no longer supported.

If you are upgrading from v2 API config you may wish to view the v2 API documentation:

Load Reporting Service is an Envoy API to emit load reports. Envoy will initiate a bi-directional stream with a management server. Upon connecting, the management server can send a LoadStatsResponse to a node it is interested in getting the load reports for. Envoy in this node will start sending LoadStatsRequest. This is done periodically based on the load reporting interval For details, take a look at the Load Reporting Service sandbox example.

service.load_stats.v3.LoadStatsRequest

[service.load_stats.v3.LoadStatsRequest proto]

A load report Envoy sends to the management server.

{
  "node": "{...}",
  "cluster_stats": []
}
node

(config.core.v3.Node) Node identifier for Envoy instance.

cluster_stats

(repeated config.endpoint.v3.ClusterStats) A list of load stats to report.

service.load_stats.v3.LoadStatsResponse

[service.load_stats.v3.LoadStatsResponse proto]

The management server sends envoy a LoadStatsResponse with all clusters it is interested in learning load stats about.

{
  "clusters": [],
  "send_all_clusters": "...",
  "load_reporting_interval": "{...}",
  "report_endpoint_granularity": "..."
}
clusters

(repeated string) Clusters to report stats for. Not populated if send_all_clusters is true.

send_all_clusters

(bool) If true, the client should send all clusters it knows about. Only clients that advertise the “envoy.lrs.supports_send_all_clusters” capability in their client_features field will honor this field.

load_reporting_interval

(Duration) The minimum interval of time to collect stats over. This is only a minimum for two reasons:

  1. There may be some delay from when the timer fires until stats sampling occurs.

  2. For clusters that were already feature in the previous LoadStatsResponse, any traffic that is observed in between the corresponding previous LoadStatsRequest and this LoadStatsResponse will also be accumulated and billed to the cluster. This avoids a period of inobservability that might otherwise exists between the messages. New clusters are not subject to this consideration.

report_endpoint_granularity

(bool) Set to true if the management server supports endpoint granularity report.