Package io.opencensus.proto.metrics.v1
Interface DistributionValue.BucketOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DistributionValue.Bucket,DistributionValue.Bucket.Builder
- Enclosing class:
- DistributionValue
public static interface DistributionValue.BucketOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetCount()The number of values in each bucket of the histogram, as described in bucket_bounds.DistributionValue.ExemplargetExemplar()If the distribution does not have a histogram, then omit this field.DistributionValue.ExemplarOrBuildergetExemplarOrBuilder()If the distribution does not have a histogram, then omit this field.booleanhasExemplar()If the distribution does not have a histogram, then omit this field.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCount
long getCount()
The number of values in each bucket of the histogram, as described in bucket_bounds.
int64 count = 1;- Returns:
- The count.
-
hasExemplar
boolean hasExemplar()
If the distribution does not have a histogram, then omit this field.
.opencensus.proto.metrics.v1.DistributionValue.Exemplar exemplar = 2;- Returns:
- Whether the exemplar field is set.
-
getExemplar
DistributionValue.Exemplar getExemplar()
If the distribution does not have a histogram, then omit this field.
.opencensus.proto.metrics.v1.DistributionValue.Exemplar exemplar = 2;- Returns:
- The exemplar.
-
getExemplarOrBuilder
DistributionValue.ExemplarOrBuilder getExemplarOrBuilder()
If the distribution does not have a histogram, then omit this field.
.opencensus.proto.metrics.v1.DistributionValue.Exemplar exemplar = 2;
-
-