Interface HistogramPointData

    • Method Detail

      • getSum

        double getSum()
        The sum of all measurements recorded.
        Returns:
        the sum of recorded measurements.
      • getCount

        long getCount()
        The number of measurements taken.
        Returns:
        the count of recorded measurements.
      • hasMin

        boolean hasMin()
        Return true if getMin() is set.
      • getMin

        double getMin()
        The min of all measurements recorded, if hasMin() is true. If hasMin() is false, the response should be ignored.
      • hasMax

        boolean hasMax()
        Return true if getMax() is set.
      • getMax

        double getMax()
        The max of all measurements recorded, if hasMax() is true. If hasMax() is false, the response should be ignored.
      • getBoundaries

        java.util.List<java.lang.Double> getBoundaries()
        The bucket boundaries. For a Histogram with N defined boundaries, e.g, [x, y, z]. There are N+1 counts: (-inf, x], (x, y], (y, z], (z, +inf).
        Returns:
        the read-only bucket boundaries in increasing order. do not mutate the returned object.
      • getCounts

        java.util.List<java.lang.Long> getCounts()
        The counts in each bucket.
        Returns:
        the read-only counts in each bucket. do not mutate the returned object.
      • getExemplars

        java.util.List<DoubleExemplarData> getExemplars()
        List of exemplars collected from measurements that were used to form the data point.
        Specified by:
        getExemplars in interface PointData