Package | Description |
---|---|
org.springframework.boot.actuate.trace.http |
Actuator HTTP tracing support.
|
Modifier and Type | Method and Description |
---|---|
HttpTrace |
HttpExchangeTracer.receivedRequest(TraceableRequest request)
Begins the tracing of the exchange that was initiated by the given
request
being received. |
Modifier and Type | Method and Description |
---|---|
List<HttpTrace> |
HttpTraceRepository.findAll()
Find all
HttpTrace objects contained in the repository. |
List<HttpTrace> |
InMemoryHttpTraceRepository.findAll() |
List<HttpTrace> |
HttpTraceEndpoint.HttpTraceDescriptor.getTraces() |
Modifier and Type | Method and Description |
---|---|
void |
HttpTraceRepository.add(HttpTrace trace)
Adds a trace to the repository.
|
void |
InMemoryHttpTraceRepository.add(HttpTrace trace) |
void |
HttpExchangeTracer.sendingResponse(HttpTrace trace,
TraceableResponse response,
Supplier<Principal> principal,
Supplier<String> sessionId)
Ends the tracing of the exchange that is being concluded by sending the given
response . |