Package org.apache.flink.metrics.groups
Interface SinkCommitterMetricGroup
-
- All Superinterfaces:
MetricGroup,OperatorMetricGroup
@PublicEvolving public interface SinkCommitterMetricGroup extends OperatorMetricGroup
Pre-defined metrics for sinks.You should only update the metrics in the main operator thread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CountergetNumCommittablesAlreadyCommittedCounter()The total number of already committed committables.CountergetNumCommittablesFailureCounter()The total number of committable failures.CountergetNumCommittablesRetryCounter()The total number of committable retry.CountergetNumCommittablesSuccessCounter()The total number of successful committables.CountergetNumCommittablesTotalCounter()The total number of committables arrived.voidsetCurrentPendingCommittablesGauge(Gauge<Integer> currentPendingCommittablesGauge)The pending committables.-
Methods inherited from interface org.apache.flink.metrics.MetricGroup
addEvent, addGroup, addGroup, addGroup, addSpan, counter, counter, counter, counter, gauge, gauge, getAllVariables, getMetricIdentifier, getMetricIdentifier, getScopeComponents, histogram, histogram, meter, meter
-
Methods inherited from interface org.apache.flink.metrics.groups.OperatorMetricGroup
getIOMetricGroup
-
-
-
-
Method Detail
-
getNumCommittablesTotalCounter
Counter getNumCommittablesTotalCounter()
The total number of committables arrived.
-
getNumCommittablesFailureCounter
Counter getNumCommittablesFailureCounter()
The total number of committable failures.
-
getNumCommittablesRetryCounter
Counter getNumCommittablesRetryCounter()
The total number of committable retry.
-
getNumCommittablesSuccessCounter
Counter getNumCommittablesSuccessCounter()
The total number of successful committables.
-
getNumCommittablesAlreadyCommittedCounter
Counter getNumCommittablesAlreadyCommittedCounter()
The total number of already committed committables.
-
-