The SimpleDemo tutorial has been successfully deployed but does not show execution information

Dear Forum,

I follow the steps:

$ sudo docker pull camunda/camunda-bpm-platform:latest
$ sudo docker run -d --name camunda -p 8080:8080
-v /home/docker/SimpleDemo.war:/camunda/webapps/SimpleDemo.war
camunda/camunda-bpm-platform:latest

Where SimpleDemo.war was build, following the instructions of Learn Camunda with Niall in video 2 (Camunda for Java Developers)

The Dashboard on Cockpit shows SimpleDemo as a suscesful deployed process, but when I started it several times from the Camunda Tasklist, and I go back to Cockpit, there is no run information about the process, even when I started it showed the message “… the process has been started …”.

Any idea or advice about it?

Beste regards,
José Guillen

Could you upload the BPMN file that you’ve created?
It’s possible that process runs and completes in a single transaction.

Dear Niall,

First of all, thank you very much for the support.
Attach the process.bpmn file and the cockpit screen

Again, thank you very much.

Best regards,
José Guillen

process.bpmn (5.4 KB)

What’s happened is indeed that you started the process and it completed.
using the Community Platform you have no history view in cockpit, but you can check for finished processes instances via the Rest API -
http://localhost:8080/engine-rest/history/process-instance?completed=true

This should return a JSON representation of all insistence’s that have been completed.

Dear Niall,

Indeed, just as you pointed out, via Rest API, I could see all instances of processes executed and completed.

I just have to thank you again.

Best regards,
José Guillen

1 Like