I'm using the actuator sub project in my spring boot application. I configured the address and the port of the actuator management functions in the application.properties
to separate the monitoring traffic from the production traffic.
management.address=127.0.0.1
management.port=8081
Additionally I want to use java melody and I want to provide the java melody dashboard on the same connection pool as the actuator endpoints. So finally the java melody dashboard should be provided by localhost:8081/monitoring
, not(!) by localhost:8080/monitoring
.
How can I do that?