Cockpit / Webapps

Hello dear Operaton community,

we are currently migrating our project from Camunda 7.23 to Operaton 1.0.0-RC1: with some adjustments, we are able to compile, start, and even run our tests successfully. Big compliments to you all, so far we are making good progress!

I am missing the (integrated) Cockpit (link), which could previously be enabled simply as follows:

<dependency>
  <groupId>org.camunda.bpm.springboot</groupId>
  <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
  <version>${project-version}</version>
</dependency>

After adapting the configuration to Operaton, I can no longer access the Cockpit: /camunda/app/cockpit/default/#/dashboard

      <dependency>
        <groupId>org.operaton.bpm.springboot</groupId>
        <artifactId>operaton-bpm-spring-boot-starter-webapp</artifactId>
        <version>${project.version}</version>
      </dependency>

How get I the “integrated” Cockpit running? Or am I forced to use the external Webpp project? GitHub - operaton/web-apps: New web apps for Operaton

Thank you very much for your help-

Hello Meik,

Great to hear that you migrate to Operaton.

We changed the path, try /operaton/app/cockpit/default/#/dashboard

Cheers,

Julian

2 Likes

You gave me the right tip. I hadn’t adjusted the Spring Boot firewall yet. Now it’s working…

3 Likes