# README
Description
The httptracing
package forms a bridge between httpclient and the
opentracing-contrib nethttp package. It provides a HTTP client with
opentracing support, implementing the httpclient.Client
interface.
Usage
tracer := opentracing.GlobalTracer()
client := httptracing.Trace(tracer, http.DefaultClient)
resp, err := client.Get("http://test.com")
//...
# Functions
Trace wraps the client with a tracer so each request has its own span.
# Structs
TracingClient wraps a http.Client with an OpenTracing tracer.