Search code examples
jsr352java-batch

JSR352: Monitoring Status of Job, Step and Partitions?


IBM's version of JSR352 provides a Rest API which can be used to trigger jobs, restart them, get the job logs. Can it also be used to get the status of each step and each partition of the step?

I want to build a job monitoring console from where i can trigger the jobs and monitor the status of the steps and partitions in real time without actually having to look into the job log. (after i trigger the job it should periodically give me the status of the step and partitions)

How should i go about doing this?


Solution

  • You can subscribe to our batch events, a JMS topic tree where we publish messages at various stages in the batch job lifecycle, (job started/ended, step checkpointed, etc.)

    See the Knowledge Center documentation and this whitepaper as well for more information.