-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-monitor
- Loading branch information
Showing
4 changed files
with
69 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) 2024 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package app | ||
|
||
import ( | ||
"net/http" | ||
|
||
"go.opentelemetry.io/otel/propagation" | ||
) | ||
|
||
// Returns a handler that generates a traceresponse header. | ||
// https://github.com/w3c/trace-context/blob/main/spec/21-http_response_header_format.md | ||
func traceResponseHandler(handler http.Handler) http.Handler { | ||
// We use the standard TraceContext propagator, since the formats are identical. | ||
// But the propagator uses "traceparent" header name, so we inject it into a map | ||
// `carrier` and then use the result to set the "tracereponse" header. | ||
var prop propagation.TraceContext | ||
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { | ||
carrier := make(map[string]string) | ||
prop.Inject(r.Context(), propagation.MapCarrier(carrier)) | ||
w.Header().Add("traceresponse", carrier["traceparent"]) | ||
handler.ServeHTTP(w, r) | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright (c) 2024 The Jaeger Authors. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package app | ||
|
||
import ( | ||
"context" | ||
"net/http" | ||
"net/http/httptest" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
"go.opentelemetry.io/otel/sdk/trace" | ||
"go.opentelemetry.io/otel/sdk/trace/tracetest" | ||
) | ||
|
||
func TestTraceResponseHandler(t *testing.T) { | ||
emptyHandler := http.HandlerFunc(func(w http.ResponseWriter, _ *http.Request) { | ||
w.Write([]byte{}) | ||
}) | ||
handler := traceResponseHandler(emptyHandler) | ||
|
||
exporter := tracetest.NewInMemoryExporter() | ||
tracerProvider := trace.NewTracerProvider( | ||
trace.WithSyncer(exporter), | ||
trace.WithSampler(trace.AlwaysSample()), | ||
) | ||
tracer := tracerProvider.Tracer("test-tracer") | ||
ctx, span := tracer.Start(context.Background(), "test-span") | ||
defer span.End() | ||
|
||
req, err := http.NewRequestWithContext(ctx, http.MethodGet, "http://localhost:8080", nil) | ||
require.NoError(t, err) | ||
|
||
w := httptest.NewRecorder() | ||
|
||
handler.ServeHTTP(w, req) | ||
|
||
traceResponse := w.Header().Get("traceresponse") | ||
parts := strings.Split(traceResponse, "-") | ||
require.Len(t, parts, 4) | ||
} |