Interface ExponentialHistogramBuckets

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.Long> getBucketCounts()
      The bucket counts is a list of counts representing number of measurements that fall into each bucket.
      int getOffset()
      The offset shifts the bucket boundaries according to lower_bound = base^(offset+i).
      int getScale()
      The scale of the buckets.
      long getTotalCount()
      The total count is the sum of all the values in the buckets.
    • Method Detail

      • getOffset

        int getOffset()
        The offset shifts the bucket boundaries according to lower_bound = base^(offset+i). .
        Returns:
        the offset.
      • getBucketCounts

        java.util.List<java.lang.Long> getBucketCounts()
        The bucket counts is a list of counts representing number of measurements that fall into each bucket.
        Returns:
        the bucket counts.
      • getTotalCount

        long getTotalCount()
        The total count is the sum of all the values in the buckets.
        Returns:
        the total count.