Package brave.http
Class HttpClientHandler<Req,Resp>
- java.lang.Object
-
- brave.http.HttpClientHandler<Req,Resp>
-
- Type Parameters:
Req- the native http request type of the client.Resp- the native http response type of the client.
public final class HttpClientHandler<Req,Resp> extends Object
This standardizes a way to instrument http clients, particularly in a way that encourages use of portable customizations viaHttpRequestParserandHttpResponseParser.Synchronous interception is the most straight forward instrumentation.
You generally need to:
- Start the span and add trace headers to the request
- Put the span in scope so things like log integration works
- Invoke the request
- If there was a Throwable, add it to the span
- Complete the span
HttpClientRequestWrapper requestWrapper = new HttpClientRequestWrapper(request); Span span = handler.handleSend(requestWrapper); // 1. HttpClientResponse response = null; Throwable error = null; try (Scope scope = currentTraceContext.newScope(span.context())) { // 2. return response = invoke(request); // 3. } catch (Throwable e) { error = e; // 4. throw e; } finally { HttpClientResponseWrapper responseWrapper = new HttpClientResponseWrapper(requestWrapper, response, error); handler.handleReceive(responseWrapper, span); // 5. }- Since:
- 4.3
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HttpClientHandler<HttpClientRequest,HttpClientResponse>create(HttpTracing httpTracing)voidhandleReceive(HttpClientResponse response, brave.Span span)Finishes the client span after assigning it tags according to the response or error.brave.SpanhandleSend(HttpClientRequest request)Starts the client span after assigning it a name and tags.brave.SpanhandleSend(HttpClientRequest request, brave.Span span)LikehandleSend(HttpClientRequest), except explicitly controls the span representing the request.brave.SpanhandleSendWithParent(HttpClientRequest request, brave.propagation.TraceContext parent)LikehandleSend(HttpClientRequest), except explicitly controls the parent of the client span.
-
-
-
Method Detail
-
create
public static HttpClientHandler<HttpClientRequest,HttpClientResponse> create(HttpTracing httpTracing)
- Since:
- 5.7
-
handleSend
public brave.Span handleSend(HttpClientRequest request)
Starts the client span after assigning it a name and tags. Thisinjectsthe trace context onto the request before returning.Call this before sending the request on the wire.
-
handleSendWithParent
public brave.Span handleSendWithParent(HttpClientRequest request, @Nullable brave.propagation.TraceContext parent)
LikehandleSend(HttpClientRequest), except explicitly controls the parent of the client span.- Parameters:
parent- the parent of the client span representing this request, or null for a new trace.- Since:
- 5.10
- See Also:
Tracer.nextSpanWithParent(SamplerFunction, Object, TraceContext)
-
handleSend
public brave.Span handleSend(HttpClientRequest request, brave.Span span)
LikehandleSend(HttpClientRequest), except explicitly controls the span representing the request.- Since:
- 5.7
-
handleReceive
public void handleReceive(HttpClientResponse response, brave.Span span)
Finishes the client span after assigning it tags according to the response or error.This is typically called once the response headers are received, and after the span is
no longer in scope.Note: It is valid to have a
HttpClientResponsethat only includes an error. However, it is better to also include the request.- Since:
- 5.12
- See Also:
HttpResponseParser.parse(HttpResponse, TraceContext, SpanCustomizer)
-
-