api: expose eds_service_name to admin response of clusters (#22902)

The data is already available in the ClusterInfo class. (getter function; data generation)

Risk Level: Low
Testing: Unit Test
Fixes #22903

Signed-off-by: Alex Ding <39857214+nmdzl@users.noreply.github.com>

Mirrored from https://github.com/envoyproxy/envoy @ b5b291526288b3b6914cda436de1583b68550b58
pull/626/head
data-plane-api(Azure Pipelines) 2 years ago
parent 4f8ac8ecec
commit 5314347096
  1. 5
      envoy/admin/v3/clusters.proto

@ -30,7 +30,7 @@ message Clusters {
}
// Details an individual cluster's current status.
// [#next-free-field: 8]
// [#next-free-field: 9]
message ClusterStatus {
option (udpa.annotations.versioning).previous_message_type = "envoy.admin.v2alpha.ClusterStatus";
@ -84,6 +84,9 @@ message ClusterStatus {
// Observability name of the cluster.
string observability_name = 7;
// The :ref:`EDS service name <envoy_v3_api_field_config.cluster.v3.Cluster.EdsClusterConfig.service_name>` if the cluster is an EDS cluster.
string eds_service_name = 8;
}
// Current state of a particular host.

Loading…
Cancel
Save