Reputation: 775
I have a demo spring boot application with actuator enabled in it.
/metrics
, /health
endpoints are working fine.
When I am trying to access /actuator/http.server.requests
it is throwing 404.
Am I missing something ? Below is the demo code in git repo. Thanks
https://github.com/imsprathap/actuatorDemo
Upvotes: 0
Views: 1438
Reputation: 36223
The URL is not correct.
It is
http://localhost:8080/actuator/metrics/http.server.requests
Upvotes: 1