Any Camunda BPM experts here? I’ve been dealing with this issue for quiet a while now and I’m not sure where to find any details at all about what happened to the scheduled jobs in Camunda. Here’s a query to pull in job details for a given process instance id:
...
Job timerJob = managementService.createJobQuery().processInstanceId(processId)
.activityId(REVIEW_TIMER_ACTIVITY_NAME).active().singleResult();
...
Can anyone help understand how to look for logs of a given process instance? I’ve tried exploring it via database tables but it’s a complete mess. The Camunda dashboard as well is very hard to nevigate and understand what’s going on. The documentation is way too elaborate to find an answer for the simplest questions. Kindly help debug the issue.