Interface IntHistogramDataPointOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      long getBucketCounts​(int index)
      Deprecated.
      bucket_counts is an optional field contains the count values of histogram for each bucket.
      int getBucketCountsCount()
      Deprecated.
      bucket_counts is an optional field contains the count values of histogram for each bucket.
      List<Long> getBucketCountsList()
      Deprecated.
      bucket_counts is an optional field contains the count values of histogram for each bucket.
      long getCount()
      Deprecated.
      count is the number of values in the population.
      IntExemplar getExemplars​(int index)
      Deprecated.
      (Optional) List of exemplars collected from measurements that were used to form the data point
      int getExemplarsCount()
      Deprecated.
      (Optional) List of exemplars collected from measurements that were used to form the data point
      List<IntExemplar> getExemplarsList()
      Deprecated.
      (Optional) List of exemplars collected from measurements that were used to form the data point
      IntExemplarOrBuilder getExemplarsOrBuilder​(int index)
      Deprecated.
      (Optional) List of exemplars collected from measurements that were used to form the data point
      List<? extends IntExemplarOrBuilder> getExemplarsOrBuilderList()
      Deprecated.
      (Optional) List of exemplars collected from measurements that were used to form the data point
      double getExplicitBounds​(int index)
      Deprecated.
      explicit_bounds specifies buckets with explicitly defined bounds for values.
      int getExplicitBoundsCount()
      Deprecated.
      explicit_bounds specifies buckets with explicitly defined bounds for values.
      List<Double> getExplicitBoundsList()
      Deprecated.
      explicit_bounds specifies buckets with explicitly defined bounds for values.
      StringKeyValue getLabels​(int index)
      Deprecated.
      The set of labels that uniquely identify this timeseries.
      int getLabelsCount()
      Deprecated.
      The set of labels that uniquely identify this timeseries.
      List<StringKeyValue> getLabelsList()
      Deprecated.
      The set of labels that uniquely identify this timeseries.
      StringKeyValueOrBuilder getLabelsOrBuilder​(int index)
      Deprecated.
      The set of labels that uniquely identify this timeseries.
      List<? extends StringKeyValueOrBuilder> getLabelsOrBuilderList()
      Deprecated.
      The set of labels that uniquely identify this timeseries.
      long getStartTimeUnixNano()
      Deprecated.
      StartTimeUnixNano is optional but strongly encouraged, see the the detailed comments above Metric.
      long getSum()
      Deprecated.
      sum of the values in the population.
      long getTimeUnixNano()
      Deprecated.
      TimeUnixNano is required, see the detailed comments above Metric.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getLabelsList

        List<StringKeyValue> getLabelsList()
        Deprecated.
         The set of labels that uniquely identify this timeseries.
         
        repeated .opentelemetry.proto.common.v1.StringKeyValue labels = 1;
      • getLabels

        StringKeyValue getLabels​(int index)
        Deprecated.
         The set of labels that uniquely identify this timeseries.
         
        repeated .opentelemetry.proto.common.v1.StringKeyValue labels = 1;
      • getLabelsCount

        int getLabelsCount()
        Deprecated.
         The set of labels that uniquely identify this timeseries.
         
        repeated .opentelemetry.proto.common.v1.StringKeyValue labels = 1;
      • getLabelsOrBuilderList

        List<? extends StringKeyValueOrBuilder> getLabelsOrBuilderList()
        Deprecated.
         The set of labels that uniquely identify this timeseries.
         
        repeated .opentelemetry.proto.common.v1.StringKeyValue labels = 1;
      • getLabelsOrBuilder

        StringKeyValueOrBuilder getLabelsOrBuilder​(int index)
        Deprecated.
         The set of labels that uniquely identify this timeseries.
         
        repeated .opentelemetry.proto.common.v1.StringKeyValue labels = 1;
      • getStartTimeUnixNano

        long getStartTimeUnixNano()
        Deprecated.
         StartTimeUnixNano is optional but strongly encouraged, see the
         the detailed comments above Metric.
         Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January
         1970.
         
        fixed64 start_time_unix_nano = 2;
      • getTimeUnixNano

        long getTimeUnixNano()
        Deprecated.
         TimeUnixNano is required, see the detailed comments above Metric.
         Value is UNIX Epoch time in nanoseconds since 00:00:00 UTC on 1 January
         1970.
         
        fixed64 time_unix_nano = 3;
      • getCount

        long getCount()
        Deprecated.
         count is the number of values in the population. Must be non-negative. This
         value must be equal to the sum of the "count" fields in buckets if a
         histogram is provided.
         
        fixed64 count = 4;
      • getSum

        long getSum()
        Deprecated.
         sum of the values in the population. If count is zero then this field
         must be zero. This value must be equal to the sum of the "sum" fields in
         buckets if a histogram is provided.
         
        sfixed64 sum = 5;
      • getBucketCountsList

        List<Long> getBucketCountsList()
        Deprecated.
         bucket_counts is an optional field contains the count values of histogram
         for each bucket.
         The sum of the bucket_counts must equal the value in the count field.
         The number of elements in bucket_counts array must be by one greater than
         the number of elements in explicit_bounds array.
         
        repeated fixed64 bucket_counts = 6;
      • getBucketCountsCount

        int getBucketCountsCount()
        Deprecated.
         bucket_counts is an optional field contains the count values of histogram
         for each bucket.
         The sum of the bucket_counts must equal the value in the count field.
         The number of elements in bucket_counts array must be by one greater than
         the number of elements in explicit_bounds array.
         
        repeated fixed64 bucket_counts = 6;
      • getBucketCounts

        long getBucketCounts​(int index)
        Deprecated.
         bucket_counts is an optional field contains the count values of histogram
         for each bucket.
         The sum of the bucket_counts must equal the value in the count field.
         The number of elements in bucket_counts array must be by one greater than
         the number of elements in explicit_bounds array.
         
        repeated fixed64 bucket_counts = 6;
      • getExplicitBoundsList

        List<Double> getExplicitBoundsList()
        Deprecated.
         explicit_bounds specifies buckets with explicitly defined bounds for values.
         The boundaries for bucket at index i are:
         (-infinity, explicit_bounds[i]] for i == 0
         (explicit_bounds[i-1], explicit_bounds[i]] for 0 < i < size(explicit_bounds)
         (explicit_bounds[i-1], +infinity) for i == size(explicit_bounds)
         The values in the explicit_bounds array must be strictly increasing.
         Histogram buckets are inclusive of their upper boundary, except the last
         bucket where the boundary is at infinity. This format is intentionally
         compatible with the OpenMetrics histogram definition.
         
        repeated double explicit_bounds = 7;
      • getExplicitBoundsCount

        int getExplicitBoundsCount()
        Deprecated.
         explicit_bounds specifies buckets with explicitly defined bounds for values.
         The boundaries for bucket at index i are:
         (-infinity, explicit_bounds[i]] for i == 0
         (explicit_bounds[i-1], explicit_bounds[i]] for 0 < i < size(explicit_bounds)
         (explicit_bounds[i-1], +infinity) for i == size(explicit_bounds)
         The values in the explicit_bounds array must be strictly increasing.
         Histogram buckets are inclusive of their upper boundary, except the last
         bucket where the boundary is at infinity. This format is intentionally
         compatible with the OpenMetrics histogram definition.
         
        repeated double explicit_bounds = 7;
      • getExplicitBounds

        double getExplicitBounds​(int index)
        Deprecated.
         explicit_bounds specifies buckets with explicitly defined bounds for values.
         The boundaries for bucket at index i are:
         (-infinity, explicit_bounds[i]] for i == 0
         (explicit_bounds[i-1], explicit_bounds[i]] for 0 < i < size(explicit_bounds)
         (explicit_bounds[i-1], +infinity) for i == size(explicit_bounds)
         The values in the explicit_bounds array must be strictly increasing.
         Histogram buckets are inclusive of their upper boundary, except the last
         bucket where the boundary is at infinity. This format is intentionally
         compatible with the OpenMetrics histogram definition.
         
        repeated double explicit_bounds = 7;
      • getExemplarsList

        List<IntExemplar> getExemplarsList()
        Deprecated.
         (Optional) List of exemplars collected from
         measurements that were used to form the data point
         
        repeated .opentelemetry.proto.metrics.v1.IntExemplar exemplars = 8;
      • getExemplars

        IntExemplar getExemplars​(int index)
        Deprecated.
         (Optional) List of exemplars collected from
         measurements that were used to form the data point
         
        repeated .opentelemetry.proto.metrics.v1.IntExemplar exemplars = 8;
      • getExemplarsCount

        int getExemplarsCount()
        Deprecated.
         (Optional) List of exemplars collected from
         measurements that were used to form the data point
         
        repeated .opentelemetry.proto.metrics.v1.IntExemplar exemplars = 8;
      • getExemplarsOrBuilderList

        List<? extends IntExemplarOrBuilder> getExemplarsOrBuilderList()
        Deprecated.
         (Optional) List of exemplars collected from
         measurements that were used to form the data point
         
        repeated .opentelemetry.proto.metrics.v1.IntExemplar exemplars = 8;
      • getExemplarsOrBuilder

        IntExemplarOrBuilder getExemplarsOrBuilder​(int index)
        Deprecated.
         (Optional) List of exemplars collected from
         measurements that were used to form the data point
         
        repeated .opentelemetry.proto.metrics.v1.IntExemplar exemplars = 8;