fix(rest): fix issues#2628 (#2629)

master
chen quan 2 years ago committed by GitHub
parent 95a5f64493
commit 97a8b3ade5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,20 +26,17 @@ func TracingHandler(serviceName, path string) func(http.Handler) http.Handler {
tracer := otel.GetTracerProvider().Tracer(trace.TraceName) tracer := otel.GetTracerProvider().Tracer(trace.TraceName)
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
defer func() {
next.ServeHTTP(w, r)
}()
ctx := propagator.Extract(r.Context(), propagation.HeaderCarrier(r.Header))
spanName := path spanName := path
if len(spanName) == 0 { if len(spanName) == 0 {
spanName = r.URL.Path spanName = r.URL.Path
} }
if _, ok := notTracingSpans.Load(spanName); ok { if _, ok := notTracingSpans.Load(spanName); ok {
next.ServeHTTP(w, r)
return return
} }
ctx := propagator.Extract(r.Context(), propagation.HeaderCarrier(r.Header))
spanCtx, span := tracer.Start( spanCtx, span := tracer.Start(
ctx, ctx,
spanName, spanName,
@ -51,7 +48,7 @@ func TracingHandler(serviceName, path string) func(http.Handler) http.Handler {
// convenient for tracking error messages // convenient for tracking error messages
propagator.Inject(spanCtx, propagation.HeaderCarrier(w.Header())) propagator.Inject(spanCtx, propagation.HeaderCarrier(w.Header()))
r = r.WithContext(spanCtx) next.ServeHTTP(w, r.WithContext(spanCtx))
}) })
} }
} }

@ -27,9 +27,9 @@ func TestOtelHandler(t *testing.T) {
t.Run(test, func(t *testing.T) { t.Run(test, func(t *testing.T) {
h := chain.New(TracingHandler("foo", test)).Then( h := chain.New(TracingHandler("foo", test)).Then(
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := otel.GetTextMapPropagator().Extract(r.Context(), propagation.HeaderCarrier(r.Header)) span := trace.SpanFromContext(r.Context())
spanCtx := trace.SpanContextFromContext(ctx) assert.True(t, span.SpanContext().IsValid())
assert.True(t, spanCtx.IsValid()) assert.True(t, span.IsRecording())
})) }))
ts := httptest.NewServer(h) ts := httptest.NewServer(h)
defer ts.Close() defer ts.Close()
@ -52,7 +52,7 @@ func TestOtelHandler(t *testing.T) {
} }
} }
func TestDontTracingSpanName(t *testing.T) { func TestDontTracingSpan(t *testing.T) {
ztrace.StartAgent(ztrace.Config{ ztrace.StartAgent(ztrace.Config{
Name: "go-zero-test", Name: "go-zero-test",
Endpoint: "http://localhost:14268/api/traces", Endpoint: "http://localhost:14268/api/traces",
@ -66,12 +66,15 @@ func TestDontTracingSpanName(t *testing.T) {
t.Run(test, func(t *testing.T) { t.Run(test, func(t *testing.T) {
h := chain.New(TracingHandler("foo", test)).Then( h := chain.New(TracingHandler("foo", test)).Then(
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
spanCtx := trace.SpanContextFromContext(r.Context()) span := trace.SpanFromContext(r.Context())
spanCtx := span.SpanContext()
if test == "bar" { if test == "bar" {
assert.False(t, spanCtx.IsValid()) assert.False(t, spanCtx.IsValid())
assert.False(t, span.IsRecording())
return return
} }
assert.True(t, span.IsRecording())
assert.True(t, spanCtx.IsValid()) assert.True(t, spanCtx.IsValid())
})) }))
ts := httptest.NewServer(h) ts := httptest.NewServer(h)

Loading…
Cancel
Save