Bulat

Results 21 comments of Bulat

Workaround ```go import ( "context" "net/http" "github.com/elazarl/goproxy" "go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp" ) func main() { gproxy := goproxy.NewProxyHttpServer() otelTr := otelhttp.NewTransport(gproxy.Tr) // Wrap the transport with OpenTelemetry instrumentation gproxy.OnRequest().DoFunc(func(req *http.Request, ctx *goproxy.ProxyCtx) (*http.Request,...