Uses of Interface
org.apache.flink.metrics.Metric
-
Packages that use Metric Package Description org.apache.flink.metrics org.apache.flink.metrics.reporter -
-
Uses of Metric in org.apache.flink.metrics
Subinterfaces of Metric in org.apache.flink.metrics Modifier and Type Interface Description interfaceCounterA Counter is aMetricthat measures a count.interfaceGauge<T>A Gauge is aMetricthat calculates a specific value at a point in time.interfaceHistogramHistogram interface to be used with Flink's metrics system.interfaceMeterMetric for measuring throughput.Classes in org.apache.flink.metrics that implement Metric Modifier and Type Class Description classMeterViewA MeterView provides an average rate of events per second over a given time period.classSimpleCounterA simple low-overheadCounterthat is not thread-safe.classThreadSafeSimpleCounterA simple low-overheadCounterthat is thread-safe. -
Uses of Metric in org.apache.flink.metrics.reporter
Methods in org.apache.flink.metrics.reporter with parameters of type Metric Modifier and Type Method Description voidAbstractReporter. notifyOfAddedMetric(Metric metric, String metricName, MetricGroup group)voidMetricReporter. notifyOfAddedMetric(Metric metric, String metricName, MetricGroup group)Called when a newMetricwas added.voidAbstractReporter. notifyOfRemovedMetric(Metric metric, String metricName, MetricGroup group)voidMetricReporter. notifyOfRemovedMetric(Metric metric, String metricName, MetricGroup group)Called when aMetricwas removed.
-