io.envoyproxy.envoy.config.endpoint.v3.EndpointLoadMetricStatsOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/endpoint/v3/load_report.proto
package io.envoyproxy.envoy.config.endpoint.v3;
public interface EndpointLoadMetricStatsOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.endpoint.v3.EndpointLoadMetricStats)
com.google.protobuf.MessageOrBuilder {
/**
*
* Name of the metric; may be empty.
*
*
* string metric_name = 1;
* @return The metricName.
*/
java.lang.String getMetricName();
/**
*
* Name of the metric; may be empty.
*
*
* string metric_name = 1;
* @return The bytes for metricName.
*/
com.google.protobuf.ByteString
getMetricNameBytes();
/**
*
* Number of calls that finished and included this metric.
*
*
* uint64 num_requests_finished_with_metric = 2;
* @return The numRequestsFinishedWithMetric.
*/
long getNumRequestsFinishedWithMetric();
/**
*
* Sum of metric values across all calls that finished with this metric for
* load_reporting_interval.
*
*
* double total_metric_value = 3;
* @return The totalMetricValue.
*/
double getTotalMetricValue();
}