// 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 DogStatsdSinkOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.metrics.v3.DogStatsdSink)
com.google.protobuf.MessageOrBuilder {
/**
*
* The UDP address of a running DogStatsD compliant listener. If specified,
* statistics will be flushed to this address.
*
*
* .envoy.config.core.v3.Address address = 1;
* @return Whether the address field is set.
*/
boolean hasAddress();
/**
*
* The UDP address of a running DogStatsD compliant listener. If specified,
* statistics will be flushed to this address.
*
*
* .envoy.config.core.v3.Address address = 1;
* @return The address.
*/
io.envoyproxy.envoy.config.core.v3.Address getAddress();
/**
*
* The UDP address of a running DogStatsD compliant listener. If specified,
* statistics will be flushed to this address.
*
*
* .envoy.config.core.v3.Address address = 1;
*/
io.envoyproxy.envoy.config.core.v3.AddressOrBuilder getAddressOrBuilder();
/**
*
* Optional custom metric name prefix. See :ref:`StatsdSink's prefix field
* <envoy_v3_api_field_config.metrics.v3.StatsdSink.prefix>` for more details.
*
*
* string prefix = 3;
* @return The prefix.
*/
java.lang.String getPrefix();
/**
*
* Optional custom metric name prefix. See :ref:`StatsdSink's prefix field
* <envoy_v3_api_field_config.metrics.v3.StatsdSink.prefix>` for more details.
*
*
* string prefix = 3;
* @return The bytes for prefix.
*/
com.google.protobuf.ByteString
getPrefixBytes();
/**
*
* Optional max datagram size to use when sending UDP messages. By default Envoy
* will emit one metric per datagram. By specifying a max-size larger than a single
* metric, Envoy will emit multiple, new-line separated metrics. The max datagram
* size should not exceed your network's MTU.
* Note that this value may not be respected if smaller than a single metric.
*
*
* .google.protobuf.UInt64Value max_bytes_per_datagram = 4 [(.validate.rules) = { ... }
* @return Whether the maxBytesPerDatagram field is set.
*/
boolean hasMaxBytesPerDatagram();
/**
*
* Optional max datagram size to use when sending UDP messages. By default Envoy
* will emit one metric per datagram. By specifying a max-size larger than a single
* metric, Envoy will emit multiple, new-line separated metrics. The max datagram
* size should not exceed your network's MTU.
* Note that this value may not be respected if smaller than a single metric.
*
*
* .google.protobuf.UInt64Value max_bytes_per_datagram = 4 [(.validate.rules) = { ... }
* @return The maxBytesPerDatagram.
*/
com.google.protobuf.UInt64Value getMaxBytesPerDatagram();
/**
*
* Optional max datagram size to use when sending UDP messages. By default Envoy
* will emit one metric per datagram. By specifying a max-size larger than a single
* metric, Envoy will emit multiple, new-line separated metrics. The max datagram
* size should not exceed your network's MTU.
* Note that this value may not be respected if smaller than a single metric.
*
*
* .google.protobuf.UInt64Value max_bytes_per_datagram = 4 [(.validate.rules) = { ... }
*/
com.google.protobuf.UInt64ValueOrBuilder getMaxBytesPerDatagramOrBuilder();
public io.envoyproxy.envoy.config.metrics.v3.DogStatsdSink.DogStatsdSpecifierCase getDogStatsdSpecifierCase();
}