Search code examples
apache-flink

How to get job name via flink rest api?


I'm trying to monitor the status of flink jobs by their names.

But I did not find any rest api could return the job name from this site.

How can I get it?


Solution

  • GET /jobs only returns the job id and status.

    GET /jobs/overview returns the detailed messages, like id, name, status.