Package org.eclipse.microprofile.metrics
Class Snapshot
java.lang.Object
org.eclipse.microprofile.metrics.Snapshot
A statistical snapshot of a
Snapshot
.-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
Represents a percentile and its value at the moment it was sampled from the Snapshot. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract void
dump
(OutputStream output) Writes the values of the snapshot to the given stream.abstract double
getMax()
Returns the highest value in the snapshot.abstract double
getMean()
Returns the arithmetic mean of the values in the snapshot.abstract Snapshot.PercentileValue[]
Returns an array ofSnapshot.PercentileValue
containing the percentiles and associated values of thisSnapshot
at the moment invocation.abstract long
size()
Returns the number of values in the snapshot.
-
Constructor Details
-
Snapshot
public Snapshot()
-
-
Method Details
-
size
public abstract long size()Returns the number of values in the snapshot.- Returns:
- the number of values
-
getMax
public abstract double getMax()Returns the highest value in the snapshot.- Returns:
- the highest value
-
getMean
public abstract double getMean()Returns the arithmetic mean of the values in the snapshot.- Returns:
- the arithmetic mean
-
percentileValues
Returns an array ofSnapshot.PercentileValue
containing the percentiles and associated values of thisSnapshot
at the moment invocation.- Returns:
- an array of
Snapshot.PercentileValue
-
dump
Writes the values of the snapshot to the given stream.- Parameters:
output
- an output stream
-