io.envoyproxy.envoy.config.metrics.v3alpha.StatsSinkOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/config/metrics/v3alpha/stats.proto
package io.envoyproxy.envoy.config.metrics.v3alpha;
public interface StatsSinkOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.config.metrics.v3alpha.StatsSink)
com.google.protobuf.MessageOrBuilder {
/**
*
* The name of the stats sink to instantiate. The name must match a supported
* stats sink. The built-in stats sinks are:
* * :ref:`envoy.statsd <envoy_api_msg_config.metrics.v3alpha.StatsdSink>`
* * :ref:`envoy.dog_statsd <envoy_api_msg_config.metrics.v3alpha.DogStatsdSink>`
* * :ref:`envoy.metrics_service <envoy_api_msg_config.metrics.v3alpha.MetricsServiceConfig>`
* * :ref:`envoy.stat_sinks.hystrix <envoy_api_msg_config.metrics.v3alpha.HystrixSink>`
* Sinks optionally support tagged/multiple dimensional metrics.
*
*
* string name = 1;
*/
java.lang.String getName();
/**
*
* The name of the stats sink to instantiate. The name must match a supported
* stats sink. The built-in stats sinks are:
* * :ref:`envoy.statsd <envoy_api_msg_config.metrics.v3alpha.StatsdSink>`
* * :ref:`envoy.dog_statsd <envoy_api_msg_config.metrics.v3alpha.DogStatsdSink>`
* * :ref:`envoy.metrics_service <envoy_api_msg_config.metrics.v3alpha.MetricsServiceConfig>`
* * :ref:`envoy.stat_sinks.hystrix <envoy_api_msg_config.metrics.v3alpha.HystrixSink>`
* Sinks optionally support tagged/multiple dimensional metrics.
*
*
* string name = 1;
*/
com.google.protobuf.ByteString
getNameBytes();
/**
* .google.protobuf.Struct config = 2;
*/
boolean hasConfig();
/**
* .google.protobuf.Struct config = 2;
*/
com.google.protobuf.Struct getConfig();
/**
* .google.protobuf.Struct config = 2;
*/
com.google.protobuf.StructOrBuilder getConfigOrBuilder();
/**
* .google.protobuf.Any typed_config = 3;
*/
boolean hasTypedConfig();
/**
* .google.protobuf.Any typed_config = 3;
*/
com.google.protobuf.Any getTypedConfig();
/**
* .google.protobuf.Any typed_config = 3;
*/
com.google.protobuf.AnyOrBuilder getTypedConfigOrBuilder();
public io.envoyproxy.envoy.config.metrics.v3alpha.StatsSink.ConfigTypeCase getConfigTypeCase();
}