io.envoyproxy.envoy.config.metrics.v3.HistogramBucketSettingsOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/metrics/v3/stats.proto
package io.envoyproxy.envoy.config.metrics.v3;
public interface HistogramBucketSettingsOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.metrics.v3.HistogramBucketSettings)
com.google.protobuf.MessageOrBuilder {
/**
*
* The stats that this rule applies to. The match is applied to the original stat name
* before tag-extraction, for example ``cluster.exampleclustername.upstream_cx_length_ms``.
*
*
* .envoy.type.matcher.v3.StringMatcher match = 1 [(.validate.rules) = { ... }
* @return Whether the match field is set.
*/
boolean hasMatch();
/**
*
* The stats that this rule applies to. The match is applied to the original stat name
* before tag-extraction, for example ``cluster.exampleclustername.upstream_cx_length_ms``.
*
*
* .envoy.type.matcher.v3.StringMatcher match = 1 [(.validate.rules) = { ... }
* @return The match.
*/
io.envoyproxy.envoy.type.matcher.v3.StringMatcher getMatch();
/**
*
* The stats that this rule applies to. The match is applied to the original stat name
* before tag-extraction, for example ``cluster.exampleclustername.upstream_cx_length_ms``.
*
*
* .envoy.type.matcher.v3.StringMatcher match = 1 [(.validate.rules) = { ... }
*/
io.envoyproxy.envoy.type.matcher.v3.StringMatcherOrBuilder getMatchOrBuilder();
/**
*
* Each value is the upper bound of a bucket. Each bucket must be greater than 0 and unique.
* The order of the buckets does not matter.
*
*
* repeated double buckets = 2 [(.validate.rules) = { ... }
* @return A list containing the buckets.
*/
java.util.List getBucketsList();
/**
*
* Each value is the upper bound of a bucket. Each bucket must be greater than 0 and unique.
* The order of the buckets does not matter.
*
*
* repeated double buckets = 2 [(.validate.rules) = { ... }
* @return The count of buckets.
*/
int getBucketsCount();
/**
*
* Each value is the upper bound of a bucket. Each bucket must be greater than 0 and unique.
* The order of the buckets does not matter.
*
*
* repeated double buckets = 2 [(.validate.rules) = { ... }
* @param index The index of the element to return.
* @return The buckets at the given index.
*/
double getBuckets(int index);
}