Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: opencensus/proto/metrics/v1/metrics.proto
package io.opencensus.proto.metrics.v1;
/**
*
* Defines a metric type and its schema.
*
*
* Protobuf type {@code opencensus.proto.metrics.v1.MetricDescriptor}
*/
public final class MetricDescriptor extends
com.google.protobuf.GeneratedMessageV3 implements
// @@protoc_insertion_point(message_implements:opencensus.proto.metrics.v1.MetricDescriptor)
MetricDescriptorOrBuilder {
private static final long serialVersionUID = 0L;
// Use MetricDescriptor.newBuilder() to construct.
private MetricDescriptor(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
}
private MetricDescriptor() {
name_ = "";
description_ = "";
unit_ = "";
type_ = 0;
labelKeys_ = java.util.Collections.emptyList();
}
@java.lang.Override
@SuppressWarnings({"unused"})
protected java.lang.Object newInstance(
UnusedPrivateParameter unused) {
return new MetricDescriptor();
}
@java.lang.Override
public final com.google.protobuf.UnknownFieldSet
getUnknownFields() {
return this.unknownFields;
}
private MetricDescriptor(
com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws com.google.protobuf.InvalidProtocolBufferException {
this();
if (extensionRegistry == null) {
throw new java.lang.NullPointerException();
}
int mutable_bitField0_ = 0;
com.google.protobuf.UnknownFieldSet.Builder unknownFields =
com.google.protobuf.UnknownFieldSet.newBuilder();
try {
boolean done = false;
while (!done) {
int tag = input.readTag();
switch (tag) {
case 0:
done = true;
break;
case 10: {
java.lang.String s = input.readStringRequireUtf8();
name_ = s;
break;
}
case 18: {
java.lang.String s = input.readStringRequireUtf8();
description_ = s;
break;
}
case 26: {
java.lang.String s = input.readStringRequireUtf8();
unit_ = s;
break;
}
case 32: {
int rawValue = input.readEnum();
type_ = rawValue;
break;
}
case 42: {
if (!((mutable_bitField0_ & 0x00000001) != 0)) {
labelKeys_ = new java.util.ArrayList();
mutable_bitField0_ |= 0x00000001;
}
labelKeys_.add(
input.readMessage(io.opencensus.proto.metrics.v1.LabelKey.parser(), extensionRegistry));
break;
}
default: {
if (!parseUnknownField(
input, unknownFields, extensionRegistry, tag)) {
done = true;
}
break;
}
}
}
} catch (com.google.protobuf.InvalidProtocolBufferException e) {
throw e.setUnfinishedMessage(this);
} catch (com.google.protobuf.UninitializedMessageException e) {
throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this);
} catch (java.io.IOException e) {
throw new com.google.protobuf.InvalidProtocolBufferException(
e).setUnfinishedMessage(this);
} finally {
if (((mutable_bitField0_ & 0x00000001) != 0)) {
labelKeys_ = java.util.Collections.unmodifiableList(labelKeys_);
}
this.unknownFields = unknownFields.build();
makeExtensionsImmutable();
}
}
public static final com.google.protobuf.Descriptors.Descriptor
getDescriptor() {
return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_descriptor;
}
@java.lang.Override
protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable
internalGetFieldAccessorTable() {
return io.opencensus.proto.metrics.v1.MetricsProto.internal_static_opencensus_proto_metrics_v1_MetricDescriptor_fieldAccessorTable
.ensureFieldAccessorsInitialized(
io.opencensus.proto.metrics.v1.MetricDescriptor.class, io.opencensus.proto.metrics.v1.MetricDescriptor.Builder.class);
}
/**
*
* The kind of metric. It describes how the data is reported.
* A gauge is an instantaneous measurement of a value.
* A cumulative measurement is a value accumulated over a time interval. In
* a time series, cumulative measurements should have the same start time,
* increasing values and increasing end times, until an event resets the
* cumulative value to zero and sets a new start time for the following
* points.
*
*
* Protobuf enum {@code opencensus.proto.metrics.v1.MetricDescriptor.Type}
*/
public enum Type
implements com.google.protobuf.ProtocolMessageEnum {
/**
*
* Do not use this default value.
*
*
* UNSPECIFIED = 0;
*/
UNSPECIFIED(0),
/**
*
* Integer gauge. The value can go both up and down.
*
*
* GAUGE_INT64 = 1;
*/
GAUGE_INT64(1),
/**
*
* Floating point gauge. The value can go both up and down.
*
*
* GAUGE_DOUBLE = 2;
*/
GAUGE_DOUBLE(2),
/**
*
* Distribution gauge measurement. The count and sum can go both up and
* down. Recorded values are always >= 0.
* Used in scenarios like a snapshot of time the current items in a queue
* have spent there.
*
* Floating point cumulative measurement. The value cannot decrease, if
* resets then the start_time should also be reset. Recorded values are
* always >= 0.
*
* Some frameworks implemented Histograms as a summary of observations
* (usually things like request durations and response sizes). While it
* also provides a total count of observations and a sum of all observed
* values, it calculates configurable percentiles over a sliding time
* window. This is not recommended, since it cannot be aggregated.
*
*
* UNSPECIFIED = 0;
*/
public static final int UNSPECIFIED_VALUE = 0;
/**
*
* Integer gauge. The value can go both up and down.
*
*
* GAUGE_INT64 = 1;
*/
public static final int GAUGE_INT64_VALUE = 1;
/**
*
* Floating point gauge. The value can go both up and down.
*
*
* GAUGE_DOUBLE = 2;
*/
public static final int GAUGE_DOUBLE_VALUE = 2;
/**
*
* Distribution gauge measurement. The count and sum can go both up and
* down. Recorded values are always >= 0.
* Used in scenarios like a snapshot of time the current items in a queue
* have spent there.
*
*
* GAUGE_DISTRIBUTION = 3;
*/
public static final int GAUGE_DISTRIBUTION_VALUE = 3;
/**
*
* Integer cumulative measurement. The value cannot decrease, if resets
* then the start_time should also be reset.
*
*
* CUMULATIVE_INT64 = 4;
*/
public static final int CUMULATIVE_INT64_VALUE = 4;
/**
*
* Floating point cumulative measurement. The value cannot decrease, if
* resets then the start_time should also be reset. Recorded values are
* always >= 0.
*
*
* CUMULATIVE_DOUBLE = 5;
*/
public static final int CUMULATIVE_DOUBLE_VALUE = 5;
/**
*
* Distribution cumulative measurement. The count and sum cannot decrease,
* if resets then the start_time should also be reset.
*
*
* CUMULATIVE_DISTRIBUTION = 6;
*/
public static final int CUMULATIVE_DISTRIBUTION_VALUE = 6;
/**
*
* Some frameworks implemented Histograms as a summary of observations
* (usually things like request durations and response sizes). While it
* also provides a total count of observations and a sum of all observed
* values, it calculates configurable percentiles over a sliding time
* window. This is not recommended, since it cannot be aggregated.
*
*
* SUMMARY = 7;
*/
public static final int SUMMARY_VALUE = 7;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static Type valueOf(int value) {
return forNumber(value);
}
/**
* @param value The numeric wire value of the corresponding enum entry.
* @return The enum associated with the given numeric wire value.
*/
public static Type forNumber(int value) {
switch (value) {
case 0: return UNSPECIFIED;
case 1: return GAUGE_INT64;
case 2: return GAUGE_DOUBLE;
case 3: return GAUGE_DISTRIBUTION;
case 4: return CUMULATIVE_INT64;
case 5: return CUMULATIVE_DOUBLE;
case 6: return CUMULATIVE_DISTRIBUTION;
case 7: return SUMMARY;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
Type> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap() {
public Type findValueByNumber(int number) {
return Type.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalStateException(
"Can't get the descriptor of an unrecognized enum value.");
}
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return io.opencensus.proto.metrics.v1.MetricDescriptor.getDescriptor().getEnumTypes().get(0);
}
private static final Type[] VALUES = values();
public static Type valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private Type(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:opencensus.proto.metrics.v1.MetricDescriptor.Type)
}
public static final int NAME_FIELD_NUMBER = 1;
private volatile java.lang.Object name_;
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @return The name.
*/
@java.lang.Override
public java.lang.String getName() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
}
}
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @return The bytes for name.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int DESCRIPTION_FIELD_NUMBER = 2;
private volatile java.lang.Object description_;
/**
*
* A detailed description of the metric, which can be used in documentation.
*
* A detailed description of the metric, which can be used in documentation.
*
*
* string description = 2;
* @return The bytes for description.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getDescriptionBytes() {
java.lang.Object ref = description_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
description_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int UNIT_FIELD_NUMBER = 3;
private volatile java.lang.Object unit_;
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @return The unit.
*/
@java.lang.Override
public java.lang.String getUnit() {
java.lang.Object ref = unit_;
if (ref instanceof java.lang.String) {
return (java.lang.String) ref;
} else {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
unit_ = s;
return s;
}
}
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @return The bytes for unit.
*/
@java.lang.Override
public com.google.protobuf.ByteString
getUnitBytes() {
java.lang.Object ref = unit_;
if (ref instanceof java.lang.String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
unit_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
public static final int TYPE_FIELD_NUMBER = 4;
private int type_;
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override public int getTypeValue() {
return type_;
}
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @return The type.
*/
@java.lang.Override public io.opencensus.proto.metrics.v1.MetricDescriptor.Type getType() {
@SuppressWarnings("deprecation")
io.opencensus.proto.metrics.v1.MetricDescriptor.Type result = io.opencensus.proto.metrics.v1.MetricDescriptor.Type.valueOf(type_);
return result == null ? io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNRECOGNIZED : result;
}
public static final int LABEL_KEYS_FIELD_NUMBER = 5;
private java.util.List labelKeys_;
/**
*
* The label keys associated with the metric descriptor.
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @return The name.
*/
public java.lang.String getName() {
java.lang.Object ref = name_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
name_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @return The bytes for name.
*/
public com.google.protobuf.ByteString
getNameBytes() {
java.lang.Object ref = name_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
name_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @param value The name to set.
* @return This builder for chaining.
*/
public Builder setName(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
name_ = value;
onChanged();
return this;
}
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @return This builder for chaining.
*/
public Builder clearName() {
name_ = getDefaultInstance().getName();
onChanged();
return this;
}
/**
*
* The metric type, including its DNS name prefix. It must be unique.
*
*
* string name = 1;
* @param value The bytes for name to set.
* @return This builder for chaining.
*/
public Builder setNameBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
name_ = value;
onChanged();
return this;
}
private java.lang.Object description_ = "";
/**
*
* A detailed description of the metric, which can be used in documentation.
*
* A detailed description of the metric, which can be used in documentation.
*
*
* string description = 2;
* @return The bytes for description.
*/
public com.google.protobuf.ByteString
getDescriptionBytes() {
java.lang.Object ref = description_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
description_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* A detailed description of the metric, which can be used in documentation.
*
*
* string description = 2;
* @param value The description to set.
* @return This builder for chaining.
*/
public Builder setDescription(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
description_ = value;
onChanged();
return this;
}
/**
*
* A detailed description of the metric, which can be used in documentation.
*
*
* string description = 2;
* @return This builder for chaining.
*/
public Builder clearDescription() {
description_ = getDefaultInstance().getDescription();
onChanged();
return this;
}
/**
*
* A detailed description of the metric, which can be used in documentation.
*
*
* string description = 2;
* @param value The bytes for description to set.
* @return This builder for chaining.
*/
public Builder setDescriptionBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
description_ = value;
onChanged();
return this;
}
private java.lang.Object unit_ = "";
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @return The unit.
*/
public java.lang.String getUnit() {
java.lang.Object ref = unit_;
if (!(ref instanceof java.lang.String)) {
com.google.protobuf.ByteString bs =
(com.google.protobuf.ByteString) ref;
java.lang.String s = bs.toStringUtf8();
unit_ = s;
return s;
} else {
return (java.lang.String) ref;
}
}
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @return The bytes for unit.
*/
public com.google.protobuf.ByteString
getUnitBytes() {
java.lang.Object ref = unit_;
if (ref instanceof String) {
com.google.protobuf.ByteString b =
com.google.protobuf.ByteString.copyFromUtf8(
(java.lang.String) ref);
unit_ = b;
return b;
} else {
return (com.google.protobuf.ByteString) ref;
}
}
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @param value The unit to set.
* @return This builder for chaining.
*/
public Builder setUnit(
java.lang.String value) {
if (value == null) {
throw new NullPointerException();
}
unit_ = value;
onChanged();
return this;
}
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @return This builder for chaining.
*/
public Builder clearUnit() {
unit_ = getDefaultInstance().getUnit();
onChanged();
return this;
}
/**
*
* The unit in which the metric value is reported. Follows the format
* described by http://unitsofmeasure.org/ucum.html.
*
*
* string unit = 3;
* @param value The bytes for unit to set.
* @return This builder for chaining.
*/
public Builder setUnitBytes(
com.google.protobuf.ByteString value) {
if (value == null) {
throw new NullPointerException();
}
checkByteStringIsUtf8(value);
unit_ = value;
onChanged();
return this;
}
private int type_ = 0;
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @return The enum numeric value on the wire for type.
*/
@java.lang.Override public int getTypeValue() {
return type_;
}
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @param value The enum numeric value on the wire for type to set.
* @return This builder for chaining.
*/
public Builder setTypeValue(int value) {
type_ = value;
onChanged();
return this;
}
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @return The type.
*/
@java.lang.Override
public io.opencensus.proto.metrics.v1.MetricDescriptor.Type getType() {
@SuppressWarnings("deprecation")
io.opencensus.proto.metrics.v1.MetricDescriptor.Type result = io.opencensus.proto.metrics.v1.MetricDescriptor.Type.valueOf(type_);
return result == null ? io.opencensus.proto.metrics.v1.MetricDescriptor.Type.UNRECOGNIZED : result;
}
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @param value The type to set.
* @return This builder for chaining.
*/
public Builder setType(io.opencensus.proto.metrics.v1.MetricDescriptor.Type value) {
if (value == null) {
throw new NullPointerException();
}
type_ = value.getNumber();
onChanged();
return this;
}
/**
* .opencensus.proto.metrics.v1.MetricDescriptor.Type type = 4;
* @return This builder for chaining.
*/
public Builder clearType() {
type_ = 0;
onChanged();
return this;
}
private java.util.List labelKeys_ =
java.util.Collections.emptyList();
private void ensureLabelKeysIsMutable() {
if (!((bitField0_ & 0x00000001) != 0)) {
labelKeys_ = new java.util.ArrayList(labelKeys_);
bitField0_ |= 0x00000001;
}
}
private com.google.protobuf.RepeatedFieldBuilderV3<
io.opencensus.proto.metrics.v1.LabelKey, io.opencensus.proto.metrics.v1.LabelKey.Builder, io.opencensus.proto.metrics.v1.LabelKeyOrBuilder> labelKeysBuilder_;
/**
*
* The label keys associated with the metric descriptor.
*