io.envoyproxy.envoy.admin.v3.SimpleMetricOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/admin/v3/metrics.proto
package io.envoyproxy.envoy.admin.v3;
public interface SimpleMetricOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.admin.v3.SimpleMetric)
com.google.protobuf.MessageOrBuilder {
/**
*
* Type of the metric represented.
*
*
* .envoy.admin.v3.SimpleMetric.Type type = 1;
* @return The enum numeric value on the wire for type.
*/
int getTypeValue();
/**
*
* Type of the metric represented.
*
*
* .envoy.admin.v3.SimpleMetric.Type type = 1;
* @return The type.
*/
io.envoyproxy.envoy.admin.v3.SimpleMetric.Type getType();
/**
*
* Current metric value.
*
*
* uint64 value = 2;
* @return The value.
*/
long getValue();
/**
*
* Name of the metric.
*
*
* string name = 3;
* @return The name.
*/
java.lang.String getName();
/**
*
* Name of the metric.
*
*
* string name = 3;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
}