GitXplorerGitXplorer
s

httptracing

public
2 stars
1 forks
0 issues

Commits

List of commits on branch master.
Verified
4d0e63878f2204d50f0df189bfda2fa1f0e226b7

Merge pull request #1 from sebnow/remove-httpclient-dependency

ssebnow committed 6 years ago
Verified
7e87346b58c918954869af5487f75df6f9d3b3a4

Remove dev dependency from Gopkg.toml

ssebnow committed 6 years ago
Unverified
c221109aaccd66fcbc10dcee83c090ddaf1e8d32

Release v1.0.0

ssebnow committed 8 years ago
Unverified
10ac848d5ea00f8e41e5495df3e24731f557788d

Implement tracing HTTP client

ssebnow committed 8 years ago
Unverified
cb7af4b5e745c0d3c2b5f87129bdf9e85f749044

Add Travis CI declaration

ssebnow committed 8 years ago
Unverified
9371c76ee27018bc070e912b05424f027726af29

Add README

ssebnow committed 8 years ago

README

The README file for this repository.

Build Status GoDoc Coverage Status Go Report Card

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")
//...