Uses of Interface
brave.http.HttpRequestParser
-
-
Uses of HttpRequestParser in brave.http
Classes in brave.http that implement HttpRequestParser Modifier and Type Class Description static class
HttpRequestParser.Default
The default data policy sets the span name to the HTTP method and adds the "http.method" and "http.path" tags.Fields in brave.http declared as HttpRequestParser Modifier and Type Field Description static HttpRequestParser
HttpRequestParser. DEFAULT
Methods in brave.http that return HttpRequestParser Modifier and Type Method Description HttpRequestParser
HttpTracing. clientRequestParser()
Used byHttpClientHandler.handleSend(HttpClientRequest)
to add a span name and tags about the request before it is sent to the server.HttpRequestParser
HttpTracing. serverRequestParser()
Used byHttpServerHandler.handleReceive(HttpServerRequest)
to add a span name and tags about the request before the server processes it.Methods in brave.http with parameters of type HttpRequestParser Modifier and Type Method Description HttpTracing.Builder
HttpTracing.Builder. clientRequestParser(HttpRequestParser clientRequestParser)
Overrides the tagging policy for HTTP client requests.HttpTracing.Builder
HttpTracing.Builder. serverRequestParser(HttpRequestParser serverRequestParser)
Overrides the tagging policy for HTTP server requests.
-