Uses of Interface
org.apache.flink.metrics.Counter
-
Packages that use Counter Package Description org.apache.flink.metrics org.apache.flink.metrics.groups org.apache.flink.metrics.reporter -
-
Uses of Counter in org.apache.flink.metrics
Classes in org.apache.flink.metrics that implement Counter Modifier and Type Class Description classSimpleCounterA simple low-overheadCounterthat is not thread-safe.classThreadSafeSimpleCounterA simple low-overheadCounterthat is thread-safe.Methods in org.apache.flink.metrics with type parameters of type Counter Modifier and Type Method Description default <C extends Counter>
CMetricGroup. counter(int name, C counter)Registers aCounterwith Flink.<C extends Counter>
CMetricGroup. counter(String name, C counter)Registers aCounterwith Flink.Methods in org.apache.flink.metrics that return Counter Modifier and Type Method Description default CounterMetricGroup. counter(int name)Creates and registers a newCounterwith Flink.CounterMetricGroup. counter(String name)Creates and registers a newCounterwith Flink.Constructors in org.apache.flink.metrics with parameters of type Counter Constructor Description MeterView(Counter counter)MeterView(Counter counter, int timeSpanInSeconds) -
Uses of Counter in org.apache.flink.metrics.groups
Methods in org.apache.flink.metrics.groups with type parameters of type Counter Modifier and Type Method Description <C extends Counter>
CUnregisteredMetricsGroup. counter(String name, C counter)Methods in org.apache.flink.metrics.groups that return Counter Modifier and Type Method Description CounterUnregisteredMetricsGroup. counter(String name)CounterOperatorIOMetricGroup. getNumBytesInCounter()The total number of input bytes since the task started.CounterOperatorIOMetricGroup. getNumBytesOutCounter()The total number of output bytes since the task started.CounterSinkWriterMetricGroup. getNumBytesSendCounter()The total number of output send bytes since the task started.CounterSinkCommitterMetricGroup. getNumCommittablesAlreadyCommittedCounter()The total number of already committed committables.CounterSinkCommitterMetricGroup. getNumCommittablesFailureCounter()The total number of committable failures.CounterSinkCommitterMetricGroup. getNumCommittablesRetryCounter()The total number of committable retry.CounterSinkCommitterMetricGroup. getNumCommittablesSuccessCounter()The total number of successful committables.CounterSinkCommitterMetricGroup. getNumCommittablesTotalCounter()The total number of committables arrived.CounterOperatorIOMetricGroup. getNumRecordsInCounter()The total number of input records since the operator started.CounterSourceReaderMetricGroup. getNumRecordsInErrorsCounter()The total number of record that failed to consume, process, or emit.CounterOperatorIOMetricGroup. getNumRecordsOutCounter()The total number of output records since the operator started.CounterSinkWriterMetricGroup. getNumRecordsOutErrorsCounter()The total number of records failed to send.CounterSinkWriterMetricGroup. getNumRecordsSendCounter()The total number of records have been sent to the downstream system.CounterSinkWriterMetricGroup. getNumRecordsSendErrorsCounter()The total number of records failed to send.Methods in org.apache.flink.metrics.groups with parameters of type Counter Modifier and Type Method Description voidCacheMetricGroup. hitCounter(Counter hitCounter)The number of cache hits.voidCacheMetricGroup. loadCounter(Counter loadCounter)The number of times to load data into cache from external system.voidCacheMetricGroup. missCounter(Counter missCounter)The number of cache misses.voidCacheMetricGroup. numLoadFailuresCounter(Counter numLoadFailuresCounter)The number of load failures. -
Uses of Counter in org.apache.flink.metrics.reporter
Fields in org.apache.flink.metrics.reporter with type parameters of type Counter Modifier and Type Field Description protected Map<Counter,String>AbstractReporter. counters
-