With Spring Boot 2.2.0 the \"httptrace\" Actuator endpoint doesn\'t exist anymore. How can I get this functionality back?
You need to enable httptrace by having following application properties. By default it is disabled
management.trace.http.enabled: true
management.endpoints.web.exposure.include: httptrace
and Requires an HttpTraceRepository bean. You can use Your own Custom implementation or InMemoryHttpTraceRepository