era
era

Reputation: 481

Camunda workflow with Java delegate expressions not showing in Cockpit

I have a workflow developed using Java delegate expressions. I have started multiple instance of this workflow using Caamunda engine rest API. The workflow runtime execution details are not showing in the Cockfit. I can see all workflow instances are completed successfully & history recorded correctly.

How I can see the runtime details like the currently executing service task, delay details, number of concurrently executing instances in the engine ...etc.

Upvotes: 0

Views: 1084

Answers (1)

Jan Galinski
Jan Galinski

Reputation: 12003

I guess you are using "straight through" processes, so they just run and finish without wait states (like timers, messages, user tasks). In the camunda community edition, you won't be able to see those, as the CE cockpit has no history view. That differs if you use the enterprise cockpit, then you can switch from runtime view to history view.

As you already mentioned, you can still access historic instances via the REST or java API, so you could build a custom view if you are not going enterprise.

Upvotes: 1

Related Questions