// Original file: deps/envoy-api/envoy/config/endpoint/v3/load_report.proto import type { Long } from '@grpc/proto-loader'; /** * Same as EndpointLoadMetricStats, except without the metric_name field. */ export interface UnnamedEndpointLoadMetricStats { /** * Number of calls that finished and included this metric. */ 'num_requests_finished_with_metric'?: (number | string | Long); /** * Sum of metric values across all calls that finished with this metric for * load_reporting_interval. */ 'total_metric_value'?: (number | string); } /** * Same as EndpointLoadMetricStats, except without the metric_name field. */ export interface UnnamedEndpointLoadMetricStats__Output { /** * Number of calls that finished and included this metric. */ 'num_requests_finished_with_metric': (string); /** * Sum of metric values across all calls that finished with this metric for * load_reporting_interval. */ 'total_metric_value': (number); }