Package org.eclipse.microprofile.metrics
Class Snapshot
- java.lang.Object
-
- org.eclipse.microprofile.metrics.Snapshot
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classSnapshot.PercentileValueRepresents a percentile and its value at the moment it was sampled from the Snapshot.
-
Constructor Summary
Constructors Constructor Description Snapshot()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract voiddump(OutputStream output)Writes the values of the snapshot to the given stream.abstract doublegetMax()Returns the highest value in the snapshot.abstract doublegetMean()Returns the arithmetic mean of the values in the snapshot.abstract Snapshot.PercentileValue[]percentileValues()Returns an array ofSnapshot.PercentileValuecontaining the percentiles and associated values of thisSnapshotat the moment invocation.abstract longsize()Returns the number of values in the snapshot.
-
-
-
Method Detail
-
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
public abstract Snapshot.PercentileValue[] percentileValues()
Returns an array ofSnapshot.PercentileValuecontaining the percentiles and associated values of thisSnapshotat the moment invocation.- Returns:
- an array of
Snapshot.PercentileValue
-
dump
public abstract void dump(OutputStream output)
Writes the values of the snapshot to the given stream.- Parameters:
output- an output stream
-
-