Class WeightedSnapshot


  • public class WeightedSnapshot
    extends org.eclipse.microprofile.metrics.Snapshot
    A statistical snapshot of a WeightedSnapshot.
    • Constructor Detail

      • WeightedSnapshot

        public WeightedSnapshot​(Collection<WeightedSnapshot.WeightedSample> values)
        Create a new Snapshot with the given values.
        Parameters:
        values - an unordered set of values in the reservoir
    • Method Detail

      • getValue

        public double getValue​(double quantile)
        Returns the value at the given quantile.
        Specified by:
        getValue in class org.eclipse.microprofile.metrics.Snapshot
        Parameters:
        quantile - a given quantile, in [0..1]
        Returns:
        the value in the distribution at quantile
      • size

        public int size()
        Returns the number of values in the snapshot.
        Specified by:
        size in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the number of values
      • getValues

        public long[] getValues()
        Returns the entire set of values in the snapshot.
        Specified by:
        getValues in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the entire set of values
      • getMax

        public long getMax()
        Returns the highest value in the snapshot.
        Specified by:
        getMax in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the highest value
      • getMin

        public long getMin()
        Returns the lowest value in the snapshot.
        Specified by:
        getMin in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the lowest value
      • getMean

        public double getMean()
        Returns the weighted arithmetic mean of the values in the snapshot.
        Specified by:
        getMean in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the weighted arithmetic mean
      • getStdDev

        public double getStdDev()
        Returns the weighted standard deviation of the values in the snapshot.
        Specified by:
        getStdDev in class org.eclipse.microprofile.metrics.Snapshot
        Returns:
        the weighted standard deviation value
      • dump

        public void dump​(OutputStream output)
        Writes the values of the snapshot to the given stream.
        Specified by:
        dump in class org.eclipse.microprofile.metrics.Snapshot
        Parameters:
        output - an output stream