Camel Routes (tab) not displayed in Hawtio

Viewed 343

Our application is spring boot application with Apache camel routes.

Application's information like JMX, Runtime, Spring boot are exposed through hawtio.

But we are not able to see apache camel routes in hawtio.

enter image description here

1 Answers

After adding following dependency, we able to see camel (tab / plugins) in hawtio GUI.

<dependency>
  <groupId>org.apache.camel</groupId>
  <artifactId>camel-management</artifactId>
  <version>${version.camel}</version>
</dependency>

http://localhost:8080/actuator/hawtio

enter image description here

And also make sure jolokia and actuator end points are also exposed.

Related