go-stdlib icon indicating copy to clipboard operation
go-stdlib copied to clipboard

OpenTracing instrumentation for packages in the Go stdlib

Results 12 go-stdlib issues
Sort by recently updated
recently updated
newest added

https://github.com/opentracing-contrib/go-stdlib/blob/master/nethttp/client.go#L162 this seems to be replacing the previously set full URL with just `host:port`.

New https://pkg.go.dev/net/http#ResponseController introduced in Go 1.20 uses `Unwrap` method on `http.ResponseWriter` implementations to get access to original `http.ResponseWriter` or underlying connection. This PR adds `Unwrap` method to `*nethttp.metricsTracker`, which is...