|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package envoy.config.endpoint.v3;
|
|
|
|
|
|
|
|
import "envoy/config/core/v3/address.proto";
|
|
|
|
import "envoy/config/core/v3/base.proto";
|
|
|
|
|
|
|
|
import "google/protobuf/duration.proto";
|
|
|
|
import "google/protobuf/struct.proto";
|
|
|
|
|
|
|
|
import "udpa/annotations/status.proto";
|
|
|
|
import "udpa/annotations/versioning.proto";
|
|
|
|
import "validate/validate.proto";
|
|
|
|
|
|
|
|
option java_package = "io.envoyproxy.envoy.config.endpoint.v3";
|
|
|
|
option java_outer_classname = "LoadReportProto";
|
|
|
|
option java_multiple_files = true;
|
|
|
|
option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3;endpointv3";
|
|
|
|
option (udpa.annotations.file_status).package_version_status = ACTIVE;
|
|
|
|
|
|
|
|
// [#protodoc-title: Load Report]
|
|
|
|
|
|
|
|
// These are stats Envoy reports to the management server at a frequency defined by
|
|
|
|
// :ref:`LoadStatsResponse.load_reporting_interval<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.load_reporting_interval>`.
|
|
|
|
// Stats per upstream region/zone and optionally per subzone.
|
|
|
|
// [#next-free-field: 9]
|
|
|
|
message UpstreamLocalityStats {
|
|
|
|
option (udpa.annotations.versioning).previous_message_type =
|
|
|
|
"envoy.api.v2.endpoint.UpstreamLocalityStats";
|
|
|
|
|
|
|
|
// Name of zone, region and optionally endpoint group these metrics were
|
|
|
|
// collected from. Zone and region names could be empty if unknown.
|
|
|
|
core.v3.Locality locality = 1;
|
|
|
|
|
|
|
|
// The total number of requests successfully completed by the endpoints in the
|
|
|
|
// locality.
|
|
|
|
uint64 total_successful_requests = 2;
|
|
|
|
|
|
|
|
// The total number of unfinished requests
|
|
|
|
uint64 total_requests_in_progress = 3;
|
|
|
|
|
|
|
|
// The total number of requests that failed due to errors at the endpoint,
|
|
|
|
// aggregated over all endpoints in the locality.
|
|
|
|
uint64 total_error_requests = 4;
|
|
|
|
|
|
|
|
// The total number of requests that were issued by this Envoy since
|
|
|
|
// the last report. This information is aggregated over all the
|
|
|
|
// upstream endpoints in the locality.
|
|
|
|
uint64 total_issued_requests = 8;
|
|
|
|
|
|
|
|
// Stats for multi-dimensional load balancing.
|
|
|
|
repeated EndpointLoadMetricStats load_metric_stats = 5;
|
|
|
|
|
|
|
|
// Endpoint granularity stats information for this locality. This information
|
|
|
|
// is populated if the Server requests it by setting
|
|
|
|
// :ref:`LoadStatsResponse.report_endpoint_granularity<envoy_v3_api_field_service.load_stats.v3.LoadStatsResponse.report_endpoint_granularity>`.
|
|
|
|
repeated UpstreamEndpointStats upstream_endpoint_stats = 7;
|
|
|
|
|
|
|
|
// [#not-implemented-hide:] The priority of the endpoint group these metrics
|
|
|
|
// were collected from.
|
|
|
|
uint32 priority = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
// [#next-free-field: 8]
|
|
|
|
message UpstreamEndpointStats {
|
|
|
|
option (udpa.annotations.versioning).previous_message_type =
|
|
|
|
"envoy.api.v2.endpoint.UpstreamEndpointStats";
|
|
|
|
|
|
|
|
// Upstream host address.
|
|
|
|
core.v3.Address address = 1;
|
|
|
|
|
|
|
|
// Opaque and implementation dependent metadata of the
|
|
|
|
// endpoint. Envoy will pass this directly to the management server.
|
|
|
|
google.protobuf.Struct metadata = 6;
|
|
|
|
|
|
|
|
// The total number of requests successfully completed by the endpoints in the
|
|
|
|
// locality. These include non-5xx responses for HTTP, where errors
|
|
|
|
// originate at the client and the endpoint responded successfully. For gRPC,
|
|
|
|
// the grpc-status values are those not covered by total_error_requests below.
|
|
|
|
uint64 total_successful_requests = 2;
|
|
|
|
|
|
|
|
// The total number of unfinished requests for this endpoint.
|
|
|
|
uint64 total_requests_in_progress = 3;
|
|
|
|
|
|
|
|
// The total number of requests that failed due to errors at the endpoint.
|
|
|
|
// For HTTP these are responses with 5xx status codes and for gRPC the
|
|
|
|
// grpc-status values:
|
|
|
|
//
|
|
|
|
// - DeadlineExceeded
|
|
|
|
// - Unimplemented
|
|
|
|
// - Internal
|
|
|
|
// - Unavailable
|
|
|
|
// - Unknown
|
|
|
|
// - DataLoss
|
|
|
|
uint64 total_error_requests = 4;
|
|
|
|
|
|
|
|
// The total number of requests that were issued to this endpoint
|
|
|
|
// since the last report. A single TCP connection, HTTP or gRPC
|
|
|
|
// request or stream is counted as one request.
|
|
|
|
uint64 total_issued_requests = 7;
|
|
|
|
|
|
|
|
// Stats for multi-dimensional load balancing.
|
|
|
|
repeated EndpointLoadMetricStats load_metric_stats = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
message EndpointLoadMetricStats {
|
|
|
|
option (udpa.annotations.versioning).previous_message_type =
|
|
|
|
"envoy.api.v2.endpoint.EndpointLoadMetricStats";
|
|
|
|
|
|
|
|
// Name of the metric; may be empty.
|
|
|
|
string metric_name = 1;
|
|
|
|
|
|
|
|
// Number of calls that finished and included this metric.
|
|
|
|
uint64 num_requests_finished_with_metric = 2;
|
|
|
|
|
|
|
|
// Sum of metric values across all calls that finished with this metric for
|
|
|
|
// load_reporting_interval.
|
|
|
|
double total_metric_value = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Per cluster load stats. Envoy reports these stats a management server in a
|
|
|
|
// :ref:`LoadStatsRequest<envoy_v3_api_msg_service.load_stats.v3.LoadStatsRequest>`
|
|
|
|
// Next ID: 7
|
|
|
|
// [#next-free-field: 7]
|
|
|
|
message ClusterStats {
|
|
|
|
option (udpa.annotations.versioning).previous_message_type = "envoy.api.v2.endpoint.ClusterStats";
|
|
|
|
|
|
|
|
message DroppedRequests {
|
|
|
|
option (udpa.annotations.versioning).previous_message_type =
|
|
|
|
"envoy.api.v2.endpoint.ClusterStats.DroppedRequests";
|
|
|
|
|
|
|
|
// Identifier for the policy specifying the drop.
|
|
|
|
string category = 1 [(validate.rules).string = {min_len: 1}];
|
|
|
|
|
|
|
|
// Total number of deliberately dropped requests for the category.
|
|
|
|
uint64 dropped_count = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The name of the cluster.
|
|
|
|
string cluster_name = 1 [(validate.rules).string = {min_len: 1}];
|
|
|
|
|
|
|
|
// The eds_cluster_config service_name of the cluster.
|
|
|
|
// It's possible that two clusters send the same service_name to EDS,
|
|
|
|
// in that case, the management server is supposed to do aggregation on the load reports.
|
|
|
|
string cluster_service_name = 6;
|
|
|
|
|
|
|
|
// Need at least one.
|
|
|
|
repeated UpstreamLocalityStats upstream_locality_stats = 2
|
|
|
|
[(validate.rules).repeated = {min_items: 1}];
|
|
|
|
|
|
|
|
// Cluster-level stats such as total_successful_requests may be computed by
|
|
|
|
// summing upstream_locality_stats. In addition, below there are additional
|
|
|
|
// cluster-wide stats.
|
|
|
|
//
|
|
|
|
// The total number of dropped requests. This covers requests
|
|
|
|
// deliberately dropped by the drop_overload policy and circuit breaking.
|
|
|
|
uint64 total_dropped_requests = 3;
|
|
|
|
|
|
|
|
// Information about deliberately dropped requests for each category specified
|
|
|
|
// in the DropOverload policy.
|
|
|
|
repeated DroppedRequests dropped_requests = 5;
|
|
|
|
|
|
|
|
// Period over which the actual load report occurred. This will be guaranteed to include every
|
|
|
|
// request reported. Due to system load and delays between the ``LoadStatsRequest`` sent from Envoy
|
|
|
|
// and the ``LoadStatsResponse`` message sent from the management server, this may be longer than
|
|
|
|
// the requested load reporting interval in the ``LoadStatsResponse``.
|
|
|
|
google.protobuf.Duration load_report_interval = 4;
|
|
|
|
}
|