Kspace
Kspace

Reputation: 225

Flink : How to real time monitor a job

How could we monitor a flink job in real time. For example if the job fails some alert is generated. Is there any external library present or something already available in flink. Thanks in advance.

Upvotes: 1

Views: 1004

Answers (1)

David Anderson
David Anderson

Reputation: 43454

This topic is covered nicely in this blog post: Monitoring Apache Flink Applications 101.

The usual approach is to connect Flink to the metrics and monitoring platform of your choice -- Flink supports quite a few. You'll want to choose a metrics reporter from the list in the docs.

Upvotes: 1

Related Questions