Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xds] Add telemetry labels for clusters #137

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions grpc/service_config/service_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,9 @@ message XdsClusterResolverLoadBalancingPolicyConfig {

// The configuration for xds_override_host child policy
repeated OverrideHostLoadBalancingPolicyConfig.HealthStatus override_host_status = 9;

// Telemetry labels associated with this cluster
map<string, string> telemetry_labels = 10;
}

// Ordered list of discovery mechanisms.
Expand Down Expand Up @@ -510,6 +513,9 @@ message XdsClusterImplLoadBalancingPolicyConfig {

// Child policy.
repeated LoadBalancingConfig child_policy = 6;

// Telemetry labels associated with this cluster
map<string, string> telemetry_labels = 8;
}

// Configuration for eds LB policy.
Expand Down
Loading