Package org.apache.flink.metrics.jmx
Interface JMXReporter.JmxHistogramMBean
-
- All Superinterfaces:
JMXReporter.MetricMBean
- Enclosing class:
- JMXReporter
public static interface JMXReporter.JmxHistogramMBean extends JMXReporter.MetricMBean
The MBean interface for an exposed histogram.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description doubleget75thPercentile()doubleget95thPercentile()doubleget98thPercentile()doubleget999thPercentile()doubleget99thPercentile()longgetCount()longgetMax()doublegetMean()doublegetMedian()longgetMin()doublegetStdDev()
-
-
-
Method Detail
-
getCount
long getCount()
-
getMean
double getMean()
-
getStdDev
double getStdDev()
-
getMax
long getMax()
-
getMin
long getMin()
-
getMedian
double getMedian()
-
get75thPercentile
double get75thPercentile()
-
get95thPercentile
double get95thPercentile()
-
get98thPercentile
double get98thPercentile()
-
get99thPercentile
double get99thPercentile()
-
get999thPercentile
double get999thPercentile()
-
-