Monitoring Jobs Status in Flink Session Cluster (Flink 1.14)

Viewed 18

I have a Flink Cluster running in Session mode. I was wondering if there's a way to monitor the jobs running on the cluster with any automated means such as prometheus metrics etc?

I would like to be notified when a job errors out or something goes wrong. Is it possible with the Session Mode cluster?

1 Answers

You can send Flink metrics to Prometheus or another reporter (multiple reporters too). Read this doc.

Read here how to produce metrics.

I don't think that metrics depends on deployment mode.

Related