Small question regarding some actuator endpoints returning 404 please. I have a web app, based on Webflux 2.4.2, and for testing this issue only, I am using
management.endpoints.web.exposure.include=*
Actuator is working, because a curl will get the response for /health /metrics and other endpoints.
However, for those endpoints /auditevents /httptrace /integrationgraph /sessions
, I am not able to get anything, besides a http 404.
[05/Feb/2021:13:00:18 +0000] "OPTIONS /auditevents HTTP/1.1" 404 141 55 ms
- May I ask what did I miss please?
- What are the steps to enable the /auditevents endpoint please?
- What are the steps to enable the /httptrace endpoint please? I have sleuth and Zipkin working
- What are the steps to enable the /integrationgraph endpoint please?
- What are the steps to enable the /sessions endpoint please?
Those are really the only endpoints returning 404, still do not know why. Don't want to spam with one question same question per endpoint. All other actuator endpoints are fine.
Thank you
/auditevents
. If you are using curl to test these endpoints you can pass in-X GET
– Michael McFadyen