Package org.apache.flink.metrics
Interface View
-
- All Known Implementing Classes:
MeterView
,TimerGauge
@Public public interface View
An interface for metrics which should be updated in regular intervals by a background thread.
-
-
Field Summary
Fields Modifier and Type Field Description static int
UPDATE_INTERVAL_SECONDS
The interval in which metrics are updated.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
update()
This method will be called regularly to update the metric.
-
-
-
Field Detail
-
UPDATE_INTERVAL_SECONDS
static final int UPDATE_INTERVAL_SECONDS
The interval in which metrics are updated.- See Also:
- Constant Field Values
-
-