PRATHAP S
PRATHAP S

Reputation: 775

Spring boot actuator/http.server.requests endpoint not working

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

Answers (1)

Simon Martinelli
Simon Martinelli

Reputation: 36223

The URL is not correct.

It is

http://localhost:8080/actuator/metrics/http.server.requests

Upvotes: 1

Related Questions