Closed
Description
The first table in https://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#production-ready-endpoints claims that the httptrace
endpoint is enabled by default.
But I after de128fe this is not true anymore.
Or am I missunderstanding something?
Edit:
I guess the same should be done for auditevents
(because of 07d6eb6).
Metadata
Metadata
Assignees
Labels
Type
Projects
Relationships
Development
No branches or pull requests
Activity
wilkinsona commentedon Sep 25, 2019
Thanks for the report. The documentation is certainly confusing at the moment. It's tricky. Technically speaking, the endpoint is enabled by default (you don't need to set
management.endpoint.httptrace.enabled=true
to enable it) but you do need to provide a repository for it to use otherwise its auto-configuration will back off.[-]httptrace endpoint should be documented as disabled by default[/-][+]Clarify that httptrace and auditevents endpoints are enabled by default but that each requires an additional component for them to be auto-configured[/+]PascalSchumacher commentedon Oct 7, 2019
Thank you very much! 👍