指标

Flink exposes a metric system that allows gathering and exposing metrics to external systems.

Registering metrics

You can access the metric system from any user function that extends RichFunction by calling getRuntimeContext().getMetricGroup(). This method returns a MetricGroup object on which you can create and register new metrics.

Metric types

Flink supports Counters, Gauges, Histograms and Meters.

Counter

A Counter is used to count something. The current value can be in- or decremented using inc()/inc(long n) or dec()/dec(long n). You can create and register a Counter by calling counter(String name) on a MetricGroup.

Java

  1. public class MyMapper extends RichMapFunction<String, String> {
  2. private transient Counter counter;
  3. @Override
  4. public void open(Configuration config) {
  5. this.counter = getRuntimeContext()
  6. .getMetricGroup()
  7. .counter("myCounter");
  8. }
  9. @Override
  10. public String map(String value) throws Exception {
  11. this.counter.inc();
  12. return value;
  13. }
  14. }

Scala

  1. class MyMapper extends RichMapFunction[String,String] {
  2. @transient private var counter: Counter = _
  3. override def open(parameters: Configuration): Unit = {
  4. counter = getRuntimeContext()
  5. .getMetricGroup()
  6. .counter("myCounter")
  7. }
  8. override def map(value: String): String = {
  9. counter.inc()
  10. value
  11. }
  12. }

Python

  1. class MyMapper(MapFunction):
  2. def __init__(self):
  3. self.counter = None
  4. def open(self, runtime_context: RuntimeContext):
  5. self.counter = runtime_context \
  6. .get_metrics_group() \
  7. .counter("my_counter")
  8. def map(self, value: str):
  9. self.counter.inc()
  10. return value

Alternatively you can also use your own Counter implementation:

Java

  1. public class MyMapper extends RichMapFunction<String, String> {
  2. private transient Counter counter;
  3. @Override
  4. public void open(Configuration config) {
  5. this.counter = getRuntimeContext()
  6. .getMetricGroup()
  7. .counter("myCustomCounter", new CustomCounter());
  8. }
  9. @Override
  10. public String map(String value) throws Exception {
  11. this.counter.inc();
  12. return value;
  13. }
  14. }

Scala

  1. class MyMapper extends RichMapFunction[String,String] {
  2. @transient private var counter: Counter = _
  3. override def open(parameters: Configuration): Unit = {
  4. counter = getRuntimeContext()
  5. .getMetricGroup()
  6. .counter("myCustomCounter", new CustomCounter())
  7. }
  8. override def map(value: String): String = {
  9. counter.inc()
  10. value
  11. }
  12. }

Python

  1. Still not supported in Python API.

Gauge

A Gauge provides a value of any type on demand. In order to use a Gauge you must first create a class that implements the org.apache.flink.metrics.Gauge interface. There is no restriction for the type of the returned value. You can register a gauge by calling gauge(String name, Gauge gauge) on a MetricGroup.

Java

  1. public class MyMapper extends RichMapFunction<String, String> {
  2. private transient int valueToExpose = 0;
  3. @Override
  4. public void open(Configuration config) {
  5. getRuntimeContext()
  6. .getMetricGroup()
  7. .gauge("MyGauge", new Gauge<Integer>() {
  8. @Override
  9. public Integer getValue() {
  10. return valueToExpose;
  11. }
  12. });
  13. }
  14. @Override
  15. public String map(String value) throws Exception {
  16. valueToExpose++;
  17. return value;
  18. }
  19. }

Scala

  1. new class MyMapper extends RichMapFunction[String,String] {
  2. @transient private var valueToExpose = 0
  3. override def open(parameters: Configuration): Unit = {
  4. getRuntimeContext()
  5. .getMetricGroup()
  6. .gauge[Int, ScalaGauge[Int]]("MyGauge", ScalaGauge[Int]( () => valueToExpose ) )
  7. }
  8. override def map(value: String): String = {
  9. valueToExpose += 1
  10. value
  11. }
  12. }

Python

  1. class MyMapper(MapFunction):
  2. def __init__(self):
  3. self.value_to_expose = 0
  4. def open(self, runtime_context: RuntimeContext):
  5. runtime_context \
  6. .get_metrics_group() \
  7. .gauge("my_gauge", lambda: self.value_to_expose)
  8. def map(self, value: str):
  9. self.value_to_expose += 1
  10. return value

Note that reporters will turn the exposed object into a String, which means that a meaningful toString() implementation is required.

Histogram

A Histogram measures the distribution of long values. You can register one by calling histogram(String name, Histogram histogram) on a MetricGroup.

Java

  1. public class MyMapper extends RichMapFunction<Long, Long> {
  2. private transient Histogram histogram;
  3. @Override
  4. public void open(Configuration config) {
  5. this.histogram = getRuntimeContext()
  6. .getMetricGroup()
  7. .histogram("myHistogram", new MyHistogram());
  8. }
  9. @Override
  10. public Long map(Long value) throws Exception {
  11. this.histogram.update(value);
  12. return value;
  13. }
  14. }

Scala

  1. class MyMapper extends RichMapFunction[Long,Long] {
  2. @transient private var histogram: Histogram = _
  3. override def open(parameters: Configuration): Unit = {
  4. histogram = getRuntimeContext()
  5. .getMetricGroup()
  6. .histogram("myHistogram", new MyHistogram())
  7. }
  8. override def map(value: Long): Long = {
  9. histogram.update(value)
  10. value
  11. }
  12. }

Python

  1. Still not supported in Python API.

Flink does not provide a default implementation for Histogram, but offers a Wrapper that allows usage of Codahale/DropWizard histograms. To use this wrapper add the following dependency in your pom.xml:

  1. <dependency>
  2. <groupId>org.apache.flink</groupId>
  3. <artifactId>flink-metrics-dropwizard</artifactId>
  4. <version>1.16.0</version>
  5. </dependency>

You can then register a Codahale/DropWizard histogram like this:

Java

  1. public class MyMapper extends RichMapFunction<Long, Long> {
  2. private transient Histogram histogram;
  3. @Override
  4. public void open(Configuration config) {
  5. com.codahale.metrics.Histogram dropwizardHistogram =
  6. new com.codahale.metrics.Histogram(new SlidingWindowReservoir(500));
  7. this.histogram = getRuntimeContext()
  8. .getMetricGroup()
  9. .histogram("myHistogram", new DropwizardHistogramWrapper(dropwizardHistogram));
  10. }
  11. @Override
  12. public Long map(Long value) throws Exception {
  13. this.histogram.update(value);
  14. return value;
  15. }
  16. }

Scala

  1. class MyMapper extends RichMapFunction[Long, Long] {
  2. @transient private var histogram: Histogram = _
  3. override def open(config: Configuration): Unit = {
  4. com.codahale.metrics.Histogram dropwizardHistogram =
  5. new com.codahale.metrics.Histogram(new SlidingWindowReservoir(500))
  6. histogram = getRuntimeContext()
  7. .getMetricGroup()
  8. .histogram("myHistogram", new DropwizardHistogramWrapper(dropwizardHistogram))
  9. }
  10. override def map(value: Long): Long = {
  11. histogram.update(value)
  12. value
  13. }
  14. }

Python

  1. Still not supported in Python API.

Meter

A Meter measures an average throughput. An occurrence of an event can be registered with the markEvent() method. Occurrence of multiple events at the same time can be registered with markEvent(long n) method. You can register a meter by calling meter(String name, Meter meter) on a MetricGroup.

Java

  1. public class MyMapper extends RichMapFunction<Long, Long> {
  2. private transient Meter meter;
  3. @Override
  4. public void open(Configuration config) {
  5. this.meter = getRuntimeContext()
  6. .getMetricGroup()
  7. .meter("myMeter", new MyMeter());
  8. }
  9. @Override
  10. public Long map(Long value) throws Exception {
  11. this.meter.markEvent();
  12. return value;
  13. }
  14. }

Scala

  1. class MyMapper extends RichMapFunction[Long,Long] {
  2. @transient private var meter: Meter = _
  3. override def open(config: Configuration): Unit = {
  4. meter = getRuntimeContext()
  5. .getMetricGroup()
  6. .meter("myMeter", new MyMeter())
  7. }
  8. override def map(value: Long): Long = {
  9. meter.markEvent()
  10. value
  11. }
  12. }

Python

  1. class MyMapperMeter(MapFunction):
  2. def __init__(self):
  3. self.meter = None
  4. def open(self, runtime_context: RuntimeContext):
  5. # an average rate of events per second over 120s, default is 60s.
  6. self.meter = runtime_context \
  7. .get_metrics_group() \
  8. .meter("my_meter", time_span_in_seconds=120)
  9. def map(self, value: str):
  10. self.meter.mark_event()
  11. return value

Flink offers a Wrapper that allows usage of Codahale/DropWizard meters. To use this wrapper add the following dependency in your pom.xml:

  1. <dependency>
  2. <groupId>org.apache.flink</groupId>
  3. <artifactId>flink-metrics-dropwizard</artifactId>
  4. <version>1.16.0</version>
  5. </dependency>

You can then register a Codahale/DropWizard meter like this:

Java

  1. public class MyMapper extends RichMapFunction<Long, Long> {
  2. private transient Meter meter;
  3. @Override
  4. public void open(Configuration config) {
  5. com.codahale.metrics.Meter dropwizardMeter = new com.codahale.metrics.Meter();
  6. this.meter = getRuntimeContext()
  7. .getMetricGroup()
  8. .meter("myMeter", new DropwizardMeterWrapper(dropwizardMeter));
  9. }
  10. @Override
  11. public Long map(Long value) throws Exception {
  12. this.meter.markEvent();
  13. return value;
  14. }
  15. }

Scala

  1. class MyMapper extends RichMapFunction[Long,Long] {
  2. @transient private var meter: Meter = _
  3. override def open(config: Configuration): Unit = {
  4. val dropwizardMeter: com.codahale.metrics.Meter = new com.codahale.metrics.Meter()
  5. meter = getRuntimeContext()
  6. .getMetricGroup()
  7. .meter("myMeter", new DropwizardMeterWrapper(dropwizardMeter))
  8. }
  9. override def map(value: Long): Long = {
  10. meter.markEvent()
  11. value
  12. }
  13. }

Python

  1. Still not supported in Python API.

Scope

Every metric is assigned an identifier and a set of key-value pairs under which the metric will be reported.

The identifier is based on 3 components: a user-defined name when registering the metric, an optional user-defined scope and a system-provided scope. For example, if A.B is the system scope, C.D the user scope and E the name, then the identifier for the metric will be A.B.C.D.E.

You can configure which delimiter to use for the identifier (default: .) by setting the metrics.scope.delimiter key in conf/flink-conf.yaml.

User Scope

You can define a user scope by calling MetricGroup#addGroup(String name), MetricGroup#addGroup(int name) or MetricGroup#addGroup(String key, String value). These methods affect what MetricGroup#getMetricIdentifier and MetricGroup#getScopeComponents return.

Java

  1. counter = getRuntimeContext()
  2. .getMetricGroup()
  3. .addGroup("MyMetrics")
  4. .counter("myCounter");
  5. counter = getRuntimeContext()
  6. .getMetricGroup()
  7. .addGroup("MyMetricsKey", "MyMetricsValue")
  8. .counter("myCounter");

Scala

  1. counter = getRuntimeContext()
  2. .getMetricGroup()
  3. .addGroup("MyMetrics")
  4. .counter("myCounter")
  5. counter = getRuntimeContext()
  6. .getMetricGroup()
  7. .addGroup("MyMetricsKey", "MyMetricsValue")
  8. .counter("myCounter")

Python

  1. counter = runtime_context \
  2. .get_metric_group() \
  3. .add_group("my_metrics") \
  4. .counter("my_counter")
  5. counter = runtime_context \
  6. .get_metric_group() \
  7. .add_group("my_metrics_key", "my_metrics_value") \
  8. .counter("my_counter")

System Scope

The system scope contains context information about the metric, for example in which task it was registered or what job that task belongs to.

Which context information should be included can be configured by setting the following keys in conf/flink-conf.yaml. Each of these keys expect a format string that may contain constants (e.g. “taskmanager”) and variables (e.g. “<task_id>”) which will be replaced at runtime.

  • metrics.scope.jm
    • Default: <host>.jobmanager
    • Applied to all metrics that were scoped to a job manager.
  • metrics.scope.jm.job
    • Default: <host>.jobmanager.<job_name>
    • Applied to all metrics that were scoped to a job manager and job.
  • metrics.scope.tm
    • Default: <host>.taskmanager.<tm_id>
    • Applied to all metrics that were scoped to a task manager.
  • metrics.scope.tm.job
    • Default: <host>.taskmanager.<tm_id>.<job_name>
    • Applied to all metrics that were scoped to a task manager and job.
  • metrics.scope.task
    • Default: <host>.taskmanager.<tm_id>.<job_name>.<task_name>.<subtask_index>
    • Applied to all metrics that were scoped to a task.
  • metrics.scope.operator
    • Default: <host>.taskmanager.<tm_id>.<job_name>.<operator_name>.<subtask_index>
    • Applied to all metrics that were scoped to an operator.

There are no restrictions on the number or order of variables. Variables are case sensitive.

The default scope for operator metrics will result in an identifier akin to localhost.taskmanager.1234.MyJob.MyOperator.0.MyMetric

If you also want to include the task name but omit the task manager information you can specify the following format:

metrics.scope.operator: <host>.<job_name>.<task_name>.<operator_name>.<subtask_index>

This could create the identifier localhost.MyJob.MySource_->_MyOperator.MyOperator.0.MyMetric.

Note that for this format string an identifier clash can occur should the same job be run multiple times concurrently, which can lead to inconsistent metric data. As such it is advised to either use format strings that provide a certain degree of uniqueness by including IDs (e.g <job_id>) or by assigning unique names to jobs and operators.

List of all Variables

  • JobManager: <host>
  • TaskManager: <host>, <tm_id>
  • Job: <job_id>, <job_name>
  • Task: <task_id>, <task_name>, <task_attempt_id>, <task_attempt_num>, <subtask_index>
  • Operator: <operator_id>,<operator_name>, <subtask_index>

Important: For the Batch API, <operator_id> is always equal to <task_id>.

User Variables

You can define a user variable by calling MetricGroup#addGroup(String key, String value). This method affects what MetricGroup#getMetricIdentifier, MetricGroup#getScopeComponents and MetricGroup#getAllVariables() returns.

Important: User variables cannot be used in scope formats.

Java

  1. counter = getRuntimeContext()
  2. .getMetricGroup()
  3. .addGroup("MyMetricsKey", "MyMetricsValue")
  4. .counter("myCounter");

Scala

  1. counter = getRuntimeContext()
  2. .getMetricGroup()
  3. .addGroup("MyMetricsKey", "MyMetricsValue")
  4. .counter("myCounter")

Python

  1. counter = runtime_context
  2. .get_metric_group() \
  3. .add_group("my_metrics_key", "my_metrics_value") \
  4. .counter("my_counter")

Reporter

For information on how to set up Flink’s metric reporters please take a look at the metric reporters documentation.

System metrics

By default Flink gathers several metrics that provide deep insights on the current state. This section is a reference of all these metrics.

The tables below generally feature 5 columns:

  • The “Scope” column describes which scope format is used to generate the system scope. For example, if the cell contains “Operator” then the scope format for “metrics.scope.operator” is used. If the cell contains multiple values, separated by a slash, then the metrics are reported multiple times for different entities, like for both job- and taskmanagers.

  • The (optional)“Infix” column describes which infix is appended to the system scope.

  • The “Metrics” column lists the names of all metrics that are registered for the given scope and infix.

  • The “Description” column provides information as to what a given metric is measuring.

  • The “Type” column describes which metric type is used for the measurement.

Note that all dots in the infix/metric name columns are still subject to the “metrics.delimiter” setting.

Thus, in order to infer the metric identifier:

  1. Take the scope-format based on the “Scope” column
  2. Append the value in the “Infix” column if present, and account for the “metrics.delimiter” setting
  3. Append metric name.

CPU

ScopeInfixMetricsDescriptionType
Job-/TaskManagerStatus.JVM.CPULoadThe recent CPU usage of the JVM.Gauge
TimeThe CPU time used by the JVM.Gauge

Memory

The memory-related metrics require Oracle’s memory management (also included in OpenJDK’s Hotspot implementation) to be in place. Some metrics might not be exposed when using other JVM implementations (e.g. IBM’s J9).

ScopeInfixMetricsDescriptionType
Job-/TaskManagerStatus.JVM.MemoryHeap.UsedThe amount of heap memory currently used (in bytes).Gauge
Heap.CommittedThe amount of heap memory guaranteed to be available to the JVM (in bytes).Gauge
Heap.MaxThe maximum amount of heap memory that can be used for memory management (in bytes).
This value might not be necessarily equal to the maximum value specified through -Xmx or the equivalent Flink configuration parameter. Some GC algorithms allocate heap memory that won’t be available to the user code and, therefore, not being exposed through the heap metrics.
Gauge
NonHeap.UsedThe amount of non-heap memory currently used (in bytes).Gauge
NonHeap.CommittedThe amount of non-heap memory guaranteed to be available to the JVM (in bytes).Gauge
NonHeap.MaxThe maximum amount of non-heap memory that can be used for memory management (in bytes).Gauge
Metaspace.UsedThe amount of memory currently used in the Metaspace memory pool (in bytes).Gauge
Metaspace.CommittedThe amount of memory guaranteed to be available to the JVM in the Metaspace memory pool (in bytes).Gauge
Metaspace.MaxThe maximum amount of memory that can be used in the Metaspace memory pool (in bytes).Gauge
Direct.CountThe number of buffers in the direct buffer pool.Gauge
Direct.MemoryUsedThe amount of memory used by the JVM for the direct buffer pool (in bytes).Gauge
Direct.TotalCapacityThe total capacity of all buffers in the direct buffer pool (in bytes).Gauge
Mapped.CountThe number of buffers in the mapped buffer pool.Gauge
Mapped.MemoryUsedThe amount of memory used by the JVM for the mapped buffer pool (in bytes).Gauge
Mapped.TotalCapacityThe number of buffers in the mapped buffer pool (in bytes).Gauge
Status.Flink.MemoryManaged.UsedThe amount of managed memory currently used.Gauge
Managed.TotalThe total amount of managed memory.Gauge

Threads

ScopeInfixMetricsDescriptionType
Job-/TaskManagerStatus.JVM.ThreadsCountThe total number of live threads.Gauge

GarbageCollection

ScopeInfixMetricsDescriptionType
Job-/TaskManagerStatus.JVM.GarbageCollector<GarbageCollector>.CountThe total number of collections that have occurred.Gauge
<GarbageCollector>.TimeThe total time spent performing garbage collection.Gauge

ClassLoader

ScopeInfixMetricsDescriptionType
Job-/TaskManagerStatus.JVM.ClassLoaderClassesLoadedThe total number of classes loaded since the start of the JVM.Gauge
ClassesUnloadedThe total number of classes unloaded since the start of the JVM.Gauge

Network

Deprecated: use Default shuffle service metrics

ScopeInfixMetricsDescriptionType
TaskManagerStatus.NetworkAvailableMemorySegmentsThe number of unused memory segments.Gauge
TotalMemorySegmentsThe number of allocated memory segments.Gauge
TaskbuffersinputQueueLengthThe number of queued input buffers. (ignores LocalInputChannels which are using blocking subpartitions)Gauge
outputQueueLengthThe number of queued output buffers.Gauge
inPoolUsageAn estimate of the input buffers usage. (ignores LocalInputChannels)Gauge
inputFloatingBuffersUsageAn estimate of the floating input buffers usage. (ignores LocalInputChannels)Gauge
inputExclusiveBuffersUsageAn estimate of the exclusive input buffers usage. (ignores LocalInputChannels)Gauge
outPoolUsageAn estimate of the output buffers usage. The pool usage can be > 100% if overdraft buffers are being used.Gauge
Network.<Input|Output>.<gate|partition>
(only available if taskmanager.network.detailed-metrics config option is set)
totalQueueLenTotal number of queued buffers in all input/output channels.Gauge
minQueueLenMinimum number of queued buffers in all input/output channels.Gauge
maxQueueLenMaximum number of queued buffers in all input/output channels.Gauge
avgQueueLenAverage number of queued buffers in all input/output channels.Gauge

Default shuffle service

Metrics related to data exchange between task executors using netty network communication.

ScopeInfixMetricsDescriptionType
TaskManagerStatus.Shuffle.NettyAvailableMemorySegmentsThe number of unused memory segments.Gauge
UsedMemorySegmentsThe number of used memory segments.Gauge
TotalMemorySegmentsThe number of allocated memory segments.Gauge
AvailableMemoryThe amount of unused memory in bytes.Gauge
UsedMemoryThe amount of used memory in bytes.Gauge
TotalMemoryThe amount of allocated memory in bytes.Gauge
RequestedMemoryUsageExperimental: The usage of the network memory. Shows (as percentage) the total amount of requested memory from all of the subtasks. It can exceed 100% as not all requested memory is required for subtask to make progress. However if usage exceeds 100% throughput can suffer greatly and please consider increasing available network memory, or decreasing configured size of network buffer pools.Gauge
TaskShuffle.Netty.Input.BuffersinputQueueLengthThe number of queued input buffers.Gauge
inputQueueSizeThe real size of queued input buffers in bytes. The size for local input channels is always 0 since the local channel takes records directly from the output queue.Gauge
inPoolUsageAn estimate of the input buffers usage. (ignores LocalInputChannels)Gauge
inputFloatingBuffersUsageAn estimate of the floating input buffers usage. (ignores LocalInputChannels)Gauge
inputExclusiveBuffersUsageAn estimate of the exclusive input buffers usage. (ignores LocalInputChannels)Gauge
Shuffle.Netty.Output.BuffersoutputQueueLengthThe number of queued output buffers.Gauge
outputQueueSizeThe real size of queued output buffers in bytes.Gauge
outPoolUsageAn estimate of the output buffers usage. The pool usage can be > 100% if overdraft buffers are being used.Gauge
Shuffle.Netty.<Input|Output>.<gate|partition>
(only available if taskmanager.network.detailed-metrics config option is set)
totalQueueLenTotal number of queued buffers in all input/output channels.Gauge
minQueueLenMinimum number of queued buffers in all input/output channels.Gauge
maxQueueLenMaximum number of queued buffers in all input/output channels.Gauge
avgQueueLenAverage number of queued buffers in all input/output channels.Gauge
Shuffle.Netty.InputnumBytesInLocalThe total number of bytes this task has read from a local source.Counter
numBytesInLocalPerSecondThe number of bytes this task reads from a local source per second.Meter
numBytesInRemoteThe total number of bytes this task has read from a remote source.Counter
numBytesInRemotePerSecondThe number of bytes this task reads from a remote source per second.Meter
numBuffersInLocalThe total number of network buffers this task has read from a local source.Counter
numBuffersInLocalPerSecondThe number of network buffers this task reads from a local source per second.Meter
numBuffersInRemoteThe total number of network buffers this task has read from a remote source.Counter
numBuffersInRemotePerSecondThe number of network buffers this task reads from a remote source per second.Meter

Cluster

ScopeMetricsDescriptionType
JobManagernumRegisteredTaskManagersThe number of registered taskmanagers.Gauge
numPendingTaskManagers(only applicable to Native Kubernetes / YARN) The number of outstanding taskmanagers that Flink has requested.Gauge
numRunningJobsThe number of running jobs.Gauge
taskSlotsAvailableThe number of available task slots.Gauge
taskSlotsTotalThe total number of task slots.Gauge

Availability

The metrics in this table are available for each of the following job states: INITIALIZING, CREATED, RUNNING, RESTARTING, CANCELLING, FAILING. Whether these metrics are reported depends on the metrics.job.status.enable setting.

Evolving The semantics of these metrics may change in later releases.

ScopeMetricsDescriptionType
Job (only available on JobManager)<jobStatus>StateFor a given state, return 1 if the job is currently in that state, otherwise return 0.Gauge
<jobStatus>TimeFor a given state, if the job is currently in that state, return the time (in milliseconds) since the job transitioned into that state, otherwise return 0.Gauge
<jobStatus>TimeTotalFor a given state, return how much time (in milliseconds) the job has spent in that state in total.Gauge

Experimental

While the job is in the RUNNING state the metrics in this table provide additional details on what the job is currently doing. Whether these metrics are reported depends on the metrics.job.status.enable setting.

ScopeMetricsDescriptionType
Job (only available on JobManager)deployingStateReturn 1 if the job is currently deploying tasks, otherwise return 0.Gauge
deployingTimeReturn the time (in milliseconds) since the job has started deploying tasks, otherwise return 0.Gauge
deployingTimeTotalReturn how much time (in milliseconds) the job has spent deploying* tasks in total.Gauge

*A job is considered to be deploying tasks when:

  • for streaming jobs, any task is in the DEPLOYING state
  • for batch jobs, if at least 1 task is in the DEPLOYING state, and there are no INITIALIZING/RUNNING tasks
ScopeMetricsDescriptionType
Job (only available on JobManager)uptimeThe time that the job has been running without interruption.

Returns -1 for completed jobs (in milliseconds).

Gauge
downtimeFor jobs currently in a failing/recovering situation, the time elapsed during this outage.

Returns 0 for running jobs and -1 for completed jobs (in milliseconds).

Gauge
fullRestartsAttention: deprecated, use numRestarts.Gauge
numRestartsThe total number of restarts since this job was submitted, including full restarts and fine-grained restarts.Gauge

{

Checkpointing

Note that for failed checkpoints, metrics are updated on a best efforts basis and may be not accurate.

ScopeMetricsDescriptionType
Job (only available on JobManager)lastCheckpointDurationThe time it took to complete the last checkpoint (in milliseconds).Gauge
lastCheckpointSizeThe checkpointed size of the last checkpoint (in bytes), this metric could be different from lastCheckpointFullSize if incremental checkpoint or changelog is enabled.Gauge
lastCheckpointFullSizeThe full size of the last checkpoint (in bytes).Gauge
lastCheckpointExternalPathThe path where the last external checkpoint was stored.Gauge
lastCheckpointRestoreTimestampTimestamp when the last checkpoint was restored at the coordinator (in milliseconds).Gauge
numberOfInProgressCheckpointsThe number of in progress checkpoints.Gauge
numberOfCompletedCheckpointsThe number of successfully completed checkpoints.Gauge
numberOfFailedCheckpointsThe number of failed checkpoints.Gauge
totalNumberOfCheckpointsThe number of total checkpoints (in progress, completed, failed).Gauge
TaskcheckpointAlignmentTimeThe time in nanoseconds that the last barrier alignment took to complete, or how long the current alignment has taken so far (in nanoseconds). This is the time between receiving first and the last checkpoint barrier. You can find more information in the Monitoring State and Checkpoints sectionGauge
checkpointStartDelayNanosThe time in nanoseconds that elapsed between the creation of the last checkpoint and the time when the checkpointing process has started by this Task. This delay shows how long it takes for the first checkpoint barrier to reach the task. A high value indicates back-pressure. If only a specific task has a long start delay, the most likely reason is data skew.Gauge

State Access Latency

ScopeMetricsDescriptionType
Task/OperatorstateClearLatencyThe latency of clear operation for stateHistogram
valueStateGetLatencyThe latency of Get operation for value stateHistogram
valueStateUpdateLatencyThe latency of update operation for value stateHistogram
listStateGetLatencyThe latency of get operation for list stateHistogram
listStateAddLatencyThe latency of add operation for list stateHistogram
listStateAddAllLatencyThe latency of addAll operation for list stateHistogram
listStateUpdateLatencyThe latency of update operation for list stateHistogram
listStateMergeNamespacesLatencyThe latency of merge namespace operation for list stateHistogram
mapStateGetLatencyThe latency of get operation for map stateHistogram
mapStatePutLatencyThe latency of put operation for map stateHistogram
mapStatePutAllLatencyThe latency of putAll operation for map stateHistogram
mapStateRemoveLatencyThe latency of remove operation for map stateHistogram
mapStateContainsLatencyThe latency of contains operation for map stateHistogram
mapStateEntriesInitLatencyThe init latency of entries operation for map stateHistogram
mapStateKeysInitLatencyThe init latency of keys operation for map stateHistogram
mapStateValuesInitLatencyThe init latency of values operation for map stateHistogram
mapStateIteratorInitLatencyThe init latency of iterator operation for map stateHistogram
mapStateIsEmptyLatencyThe latency of isEmpty operation for map stateHistogram
mapStateIteratorHasNextLatencyThe latency of iterator#hasNext operation for map stateHistogram
mapStateIteratorNextLatencyThe latency of iterator#next operation for map stateHistogram
mapStateIteratorRemoveLatencyThe latency of iterator#remove operation for map stateHistogram
aggregatingStateGetLatencyThe latency of get operation for aggregating stateHistogram
aggregatingStateAddLatencyThe latency of add operation for aggregating stateHistogram
aggregatingStateMergeNamespacesLatencyThe latency of merge namespace operation for aggregating stateHistogram
reducingStateGetLatencyThe latency of get operation for reducing stateHistogram
reducingStateAddLatencyThe latency of add operation for reducing stateHistogram
reducingStateMergeNamespacesLatencyThe latency of merge namespace operation for reducing stateHistogram

RocksDB

Certain RocksDB native metrics are available but disabled by default, you can find full documentation here

State Changelog

Note that the metrics are only available via reporters.

ScopeMetricsDescriptionType
Job (only available on TaskManager)numberOfUploadRequestsTotal number of upload requests madeCounter
numberOfUploadFailuresTotal number of failed upload requests (request may be retried after the failure)Counter
attemptsPerUploadThe number of attempts per uploadHistogram
totalAttemptsPerUploadThe total count distributions of attempts for per uploadHistogram
uploadBatchSizesThe number of upload tasks (coming from one or more writers, i.e. backends/tasks) that were grouped together and form a single upload resulting in a single fileHistogram
uploadLatenciesNanosThe latency distributions of uploadsHistogram
uploadSizesThe size distributions of uploadsHistogram
uploadQueueSizeCurrent size of upload queue. Queue items can be packed together and form a single upload.Gauge
Task/OperatorstartedMaterializationThe number of started materializations.Counter
completedMaterializationThe number of successfully completed materializations.Counter
failedMaterializationThe number of failed materializations.Counter
lastDurationOfMaterializationThe duration of the last materialization (in milliseconds).Gauge
lastFullSizeOfMaterializationThe full size of the materialization part of the last reported checkpoint (in bytes).Gauge
lastIncSizeOfMaterializationThe incremental size of the materialization part of the last reported checkpoint (in bytes).Gauge
lastFullSizeOfNonMaterializationThe full size of the non-materialization part of the last reported checkpoint (in bytes).Gauge
lastIncSizeOfNonMaterializationThe incremental size of the non-materialization part of the last reported checkpoint (in bytes).Gauge

IO

ScopeMetricsDescriptionType
Job (only available on TaskManager)[<source_id>.[<source_subtask_index>.]]<operator_id>.<operator_subtask_index>.latencyThe latency distributions from a given source (subtask) to an operator subtask (in milliseconds), depending on the latency granularity.Histogram
TasknumBytesInLocalAttention: deprecated, use Default shuffle service metrics.Counter
numBytesInLocalPerSecondAttention: deprecated, use Default shuffle service metrics.Meter
numBytesInRemoteAttention: deprecated, use Default shuffle service metrics.Counter
numBytesInRemotePerSecondAttention: deprecated, use Default shuffle service metrics.Meter
numBuffersInLocalAttention: deprecated, use Default shuffle service metrics.Counter
numBuffersInLocalPerSecondAttention: deprecated, use Default shuffle service metrics.Meter
numBuffersInRemoteAttention: deprecated, use Default shuffle service metrics.Counter
numBuffersInRemotePerSecondAttention: deprecated, use Default shuffle service metrics.Meter
numBytesOutThe total number of bytes this task has emitted.Counter
numBytesOutPerSecondThe number of bytes this task emits per second.Meter
numBuffersOutThe total number of network buffers this task has emitted.Counter
numBuffersOutPerSecondThe number of network buffers this task emits per second.Meter
isBackPressuredWhether the task is back-pressured.Gauge
idleTimeMsPerSecondThe time (in milliseconds) this task is idle (has no data to process) per second. Idle time excludes back pressured time, so if the task is back pressured it is not idle.Meter
busyTimeMsPerSecondThe time (in milliseconds) this task is busy (neither idle nor back pressured) per second. Can be NaN, if the value could not be calculated.Gauge
backPressuredTimeMsPerSecondThe time (in milliseconds) this task is back pressured (soft or hard) per second. It’s a sum of softBackPressuredTimeMsPerSecond and hardBackPressuredTimeMsPerSecond.Gauge
softBackPressuredTimeMsPerSecondThe time (in milliseconds) this task is softly back pressured per second. Softly back pressured task will be still responsive and capable of for example triggering unaligned checkpoints.Gauge
hardBackPressuredTimeMsPerSecondThe time (in milliseconds) this task is back pressured in a hard way per second. During hard back pressured task is completely blocked and unresponsive preventing for example unaligned checkpoints from triggering.Gauge
maxSoftBackPressuredTimeMsMaximum recorded duration of a single consecutive period of the task being softly back pressured in the last sampling period. Please check softBackPressuredTimeMsPerSecond and hardBackPressuredTimeMsPerSecond for more information.Gauge
maxHardBackPressuredTimeMsMaximum recorded duration of a single consecutive period of the task being in the hard back pressure state in the last sampling period. Please check softBackPressuredTimeMsPerSecond and hardBackPressuredTimeMsPerSecond for more information.Gauge
mailboxMailsPerSecondThe number of actions processed from the task’s mailbox per second which includes all actions, e.g., checkpointing, timer, or cancellation actions.Meter
mailboxLatencyMsThe latency is the time that actions spend waiting in the task’s mailbox before being processed. The metric is a statistic of the latency in milliseconds that is measured approximately once every second and includes the last 60 measurements.Histogram
mailboxQueueSizeThe number of actions in the task’s mailbox that are waiting to be processed.Gauge
Task (only if buffer debloating is enabled and in non-source tasks)estimatedTimeToConsumeBuffersMsThe estimated time (in milliseconds) by the buffer debloater to consume all of the buffered data in the network exchange preceding this task. This value is calculated by approximated amount of the in-flight data and calculated throughput.Gauge
debloatedBufferSizeThe desired buffer size (in bytes) calculated by the buffer debloater. Buffer debloater is trying to reduce buffer size when the amount of in-flight data (after taking into account current throughput) exceeds the configured target value.Gauge
Task/OperatornumRecordsInThe total number of records this operator/task has received.Counter
numRecordsInPerSecondThe number of records this operator/task receives per second.Meter
numRecordsOutThe total number of records this operator/task has emitted.Counter
numRecordsOutPerSecondThe number of records this operator/task sends per second.Meter
numLateRecordsDroppedThe number of records this operator/task has dropped due to arriving late.Counter
currentInputWatermarkThe last watermark this operator/tasks has received (in milliseconds).

Note: For operators/tasks with 2 inputs this is the minimum of the last received watermarks.

Gauge
OperatorcurrentInputNWatermarkThe last watermark this operator has received in its N’th input (in milliseconds), with index N starting from 1. For example currentInput1Watermark, currentInput2Watermark, …

Note: Only for operators with 2 or more inputs.

Gauge
currentOutputWatermarkThe last watermark this operator has emitted (in milliseconds).Gauge
watermarkAlignmentDriftThe current drift from the minimal watermark emitted by all sources/tasks/splits that belong to the same watermark group.

Note: Available only when watermark alignment is enabled and the first common watermark is announced. You can configure the update interval in the WatermarkStrategy.

Gauge
numSplitsProcessedThe total number of InputSplits this data source has processed (if the operator is a data source).Gauge

Connectors

Kafka Connectors

ScopeMetricsUser VariablesDescriptionType
OperatorcommitsSucceededn/aThe total number of successful offset commits to Kafka, if offset committing is turned on and checkpointing is enabled.Counter
OperatorcommitsFailedn/aThe total number of offset commit failures to Kafka, if offset committing is turned on and checkpointing is enabled. Note that committing offsets back to Kafka is only a means to expose consumer progress, so a commit failure does not affect the integrity of Flink’s checkpointed partition offsets.Counter
OperatorcommittedOffsetstopic, partitionThe last successfully committed offsets to Kafka, for each partition. A particular partition’s metric can be specified by topic name and partition id.Gauge
OperatorcurrentOffsetstopic, partitionThe consumer’s current read offset, for each partition. A particular partition’s metric can be specified by topic name and partition id.Gauge

Kinesis 源

范围指标用户变量描述类型
OperatormillisBehindLateststream, shardId消费者落后于流头部的毫秒数, 对每个Kinesis分片,表示费者落后当前时间多久。 可以通过流名称和分片id指定一个特定分片的指标值。 值为0表示记录处理已完成,并且没有新记录在此时处理。 值为-1表示尚未报告指标值。Gauge
OperatorsleepTimeMillisstream, shardId消费者在从Kinesis获取记录之前睡眠的毫秒数。 可以通过流名称和分片id指定特定分片的指标值。Gauge
OperatormaxNumberOfRecordsPerFetchstream, shardId消费者在对Kinesis的单个getRecords调用中请求的最大记录数。如果ConsumerConfigConstants.SHARD_USE_ADAPTIVE_READS 设置为true,自适应计算该值,以最大化来自Kinesis的2Mbps读取限制。Gauge
OperatornumberOfAggregatedRecordsPerFetchstream, shardId消费者在对Kinesis的单个getRecords调用中获取的聚合的Kinesis记录数。Gauge
OperatornumberOfDeggregatedRecordsPerFetchstream, shardId消费者在对Kinesis的单个getRecords调用中获取的非聚合的Kinesis记录数。Gauge
OperatoraverageRecordSizeBytesstream, shardId以字节为单位的Kinesis记录的平均大小,由消费者在单个getRecords调用中获取。Gauge
OperatorrunLoopTimeNanosstream, shardId消费者在运行循环中花费的实际时间(纳秒)。Gauge
OperatorloopFrequencyHzstream, shardId一秒钟内调用getRecords的次数。Gauge
OperatorbytesRequestedPerFetchstream, shardId在对getRecords的单个调用中请求的字节数(2 Mbps / loopFrequencyHz)。Gauge

Kinesis 接收器

范围指标描述类型
OperatornumRecordsOutErrors (已弃用, 请使用numRecordsSendErrors)被拒绝的记录写入数。Counter
OperatornumRecordsSendErrors被拒绝的记录写入数。Counter
OperatorCurrentSendTime最后一批请求的1次往返所用的毫秒数。Gauge

HBase Connectors

ScopeMetricsUser VariablesDescriptionType
OperatorlookupCacheHitRaten/a查找的缓存命中率。Gauge

System resources

System resources reporting is disabled by default. When metrics.system-resource is enabled additional metrics listed below will be available on Job- and TaskManager. System resources metrics are updated periodically and they present average values for a configured interval (metrics.system-resource-probing-interval).

System resources reporting requires an optional dependency to be present on the classpath (for example placed in Flink’s lib directory):

  • com.github.oshi:oshi-core:6.1.5 (licensed under MIT license)

Including it’s transitive dependencies:

  • net.java.dev.jna:jna-platform:jar:5.10.0
  • net.java.dev.jna:jna:jar:5.10.0

Failures in this regard will be reported as warning messages like NoClassDefFoundError logged by SystemResourcesMetricsInitializer during the startup.

System CPU

ScopeInfixMetricsDescription
Job-/TaskManagerSystem.CPUUsageOverall % of CPU usage on the machine.
Idle% of CPU Idle usage on the machine.
Sys% of System CPU usage on the machine.
User% of User CPU usage on the machine.
IOWait% of IOWait CPU usage on the machine.
Irq% of Irq CPU usage on the machine.
SoftIrq% of SoftIrq CPU usage on the machine.
Nice% of Nice Idle usage on the machine.
Load1minAverage CPU load over 1 minute
Load5minAverage CPU load over 5 minute
Load15minAverage CPU load over 15 minute
UsageCPU*% of CPU usage per each processor

System memory

ScopeInfixMetricsDescription
Job-/TaskManagerSystem.MemoryAvailableAvailable memory in bytes
TotalTotal memory in bytes
System.SwapUsedUsed swap bytes
TotalTotal swap in bytes

System network

ScopeInfixMetricsDescription
Job-/TaskManagerSystem.Network.INTERFACE_NAMEReceiveRateAverage receive rate in bytes per second
SendRateAverage send rate in bytes per second

预测执行

以下指标可以用来衡量预测执行的有效性。

ScopeMetricsDescriptionType
Job (only available on JobManager)numSlowExecutionVertices当前的慢执行节点数量。Gauge
numEffectiveSpeculativeExecutions有效的预测执行数量,即比初始执行实例更早结束的预测执行实例的数量。Counter

End-to-End latency tracking

Flink allows to track the latency of records travelling through the system. This feature is disabled by default. To enable the latency tracking you must set the latencyTrackingInterval to a positive number in either the Flink configuration or ExecutionConfig.

At the latencyTrackingInterval, the sources will periodically emit a special record, called a LatencyMarker. The marker contains a timestamp from the time when the record has been emitted at the sources. Latency markers can not overtake regular user records, thus if records are queuing up in front of an operator, it will add to the latency tracked by the marker.

Note that the latency markers are not accounting for the time user records spend in operators as they are bypassing them. In particular the markers are not accounting for the time records spend for example in window buffers. Only if operators are not able to accept new records, thus they are queuing up, the latency measured using the markers will reflect that.

The LatencyMarkers are used to derive a distribution of the latency between the sources of the topology and each downstream operator. These distributions are reported as histogram metrics. The granularity of these distributions can be controlled in the Flink configuration. For the highest granularity subtask Flink will derive the latency distribution between every source subtask and every downstream subtask, which results in quadratic (in the terms of the parallelism) number of histograms.

Currently, Flink assumes that the clocks of all machines in the cluster are in sync. We recommend setting up an automated clock synchronisation service (like NTP) to avoid false latency results.

Warning Enabling latency metrics can significantly impact the performance of the cluster (in particular for subtask granularity). It is highly recommended to only use them for debugging purposes.

State access latency tracking

Flink also allows to track the keyed state access latency for standard Flink state-backends or customized state backends which extending from AbstractStateBackend. This feature is disabled by default. To enable this feature you must set the state.backend.latency-track.keyed-state-enabled to true in the Flink configuration.

Once tracking keyed state access latency is enabled, Flink will sample the state access latency every N access, in which N is defined by state.backend.latency-track.sample-interval. This configuration has a default value of 100. A smaller value will get more accurate results but have a higher performance impact since it is sampled more frequently.

As the type of this latency metrics is histogram, state.backend.latency-track.history-size will control the maximum number of recorded values in history, which has the default value of 128. A larger value of this configuration will require more memory, but will provide a more accurate result.

Warning Enabling state-access-latency metrics may impact the performance. It is recommended to only use them for debugging purposes.

REST API integration

Metrics can be queried through the Monitoring REST API.

Below is a list of available endpoints, with a sample JSON response. All endpoints are of the sample form http://hostname:8081/jobmanager/metrics, below we list only the path part of the URLs.

Values in angle brackets are variables, for example http://hostname:8081/jobs/<jobid>/metrics will have to be requested for example as http://hostname:8081/jobs/7684be6004e4e955c2a558a9bc463f65/metrics.

Request metrics for a specific entity:

  • /jobmanager/metrics
  • /taskmanagers/<taskmanagerid>/metrics
  • /jobs/<jobid>/metrics
  • /jobs/<jobid>/vertices/<vertexid>/subtasks/<subtaskindex>

Request metrics aggregated across all entities of the respective type:

  • /taskmanagers/metrics
  • /jobs/metrics
  • /jobs/<jobid>/vertices/<vertexid>/subtasks/metrics

Request metrics aggregated over a subset of all entities of the respective type:

  • /taskmanagers/metrics?taskmanagers=A,B,C
  • /jobs/metrics?jobs=D,E,F
  • /jobs/<jobid>/vertices/<vertexid>/subtasks/metrics?subtask=1,2,3

Warning Metric names can contain special characters that you need to be escape when querying metrics. For example, “a_+_b” would be escaped to “a_%2B_b”.

List of characters that should be escaped:

CharacterEscape Sequence
#%23
$%24
&%26
+%2B
/%2F
;%3B
=%3D
?%3F
@%40

Request a list of available metrics:

GET /jobmanager/metrics

  1. [
  2. {
  3. "id": "metric1"
  4. },
  5. {
  6. "id": "metric2"
  7. }
  8. ]

Request the values for specific (unaggregated) metrics:

GET taskmanagers/ABCDE/metrics?get=metric1,metric2

  1. [
  2. {
  3. "id": "metric1",
  4. "value": "34"
  5. },
  6. {
  7. "id": "metric2",
  8. "value": "2"
  9. }
  10. ]

Request aggregated values for specific metrics:

GET /taskmanagers/metrics?get=metric1,metric2

  1. [
  2. {
  3. "id": "metric1",
  4. "min": 1,
  5. "max": 34,
  6. "avg": 15,
  7. "sum": 45
  8. },
  9. {
  10. "id": "metric2",
  11. "min": 2,
  12. "max": 14,
  13. "avg": 7,
  14. "sum": 16
  15. }
  16. ]

Request specific aggregated values for specific metrics:

GET /taskmanagers/metrics?get=metric1,metric2&agg=min,max

  1. [
  2. {
  3. "id": "metric1",
  4. "min": 1,
  5. "max": 34
  6. },
  7. {
  8. "id": "metric2",
  9. "min": 2,
  10. "max": 14
  11. }
  12. ]

Dashboard integration

Metrics that were gathered for each task or operator can also be visualized in the Dashboard. On the main page for a job, select the Metrics tab. After selecting one of the tasks in the top graph you can select metrics to display using the Add Metric drop-down menu.

  • Task metrics are listed as <subtask_index>.<metric_name>.
  • Operator metrics are listed as <subtask_index>.<operator_name>.<metric_name>.

Each metric will be visualized as a separate graph, with the x-axis representing time and the y-axis the measured value. All graphs are automatically updated every 10 seconds, and continue to do so when navigating to another page.

There is no limit as to the number of visualized metrics; however only numeric metrics can be visualized.