Business Process Monitoring

Are there any recommendations on the tools you would use with Flowable to monitor the business processes?

Hi,

There’s the Flowable Admin application to do the basic monitoring on process instances, jobs etc.
Or what kind of monitoring are you looking for exactly?

Best regards,

Tijs

I am looking for a centralized monitoring tool that is separate from the flowable process, because if I deploy flowable embedded within an application and that application is down, then I would not be able to check status. Something similar to the Oracle BAM or IBM BPM monitoring tool

Hi,

You can check the status by adding the Flowable REST API to your application and have something polling this endpoint for example:

http://www.flowable.org/docs/userguide/index.html#_get_engine_info

But if Flowable would be embedded in your application then normal health checks for that application should be sufficient.
There are several options to do this, like the one provided by JHipster for example: http://www.jhipster.tech/monitoring/.

Best regards,

Tijs