Package org.apache.ignite.spi.metric
Interface HistogramMetric
-
- All Superinterfaces:
Metric
,ObjectMetric<long[]>
public interface HistogramMetric extends ObjectMetric<long[]>
Histogram metric calculates counts of measurements that gets into each bounds interval. Note, thatObjectMetric.value()
will return array length ofbounds.length + 1
. Last element will contains count of measurements bigger then most right value of bounds.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long[]
bounds()
-
Methods inherited from interface org.apache.ignite.spi.metric.Metric
description, name, reset
-
Methods inherited from interface org.apache.ignite.spi.metric.ObjectMetric
getAsString, type, value
-
-