You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
79 lines
2.2 KiB
Go
79 lines
2.2 KiB
Go
2 years ago
|
package handler
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/core/collection"
|
||
|
"github.com/zeromicro/go-zero/core/trace"
|
||
|
"github.com/zeromicro/go-zero/rest/internal/response"
|
||
|
"go.opentelemetry.io/otel"
|
||
|
"go.opentelemetry.io/otel/propagation"
|
||
|
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
||
|
oteltrace "go.opentelemetry.io/otel/trace"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
// TraceOption defines the method to customize an traceOptions.
|
||
|
TraceOption func(options *traceOptions)
|
||
|
|
||
|
// traceOptions is TraceHandler options.
|
||
|
traceOptions struct {
|
||
|
traceIgnorePaths []string
|
||
|
}
|
||
|
)
|
||
|
|
||
|
// TraceHandler return a middleware that process the opentelemetry.
|
||
|
func TraceHandler(serviceName, path string, opts ...TraceOption) func(http.Handler) http.Handler {
|
||
|
var options traceOptions
|
||
|
for _, opt := range opts {
|
||
|
opt(&options)
|
||
|
}
|
||
|
|
||
|
ignorePaths := collection.NewSet()
|
||
|
ignorePaths.AddStr(options.traceIgnorePaths...)
|
||
|
|
||
|
return func(next http.Handler) http.Handler {
|
||
|
tracer := otel.Tracer(trace.TraceName)
|
||
|
propagator := otel.GetTextMapPropagator()
|
||
|
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
spanName := path
|
||
|
if len(spanName) == 0 {
|
||
|
spanName = r.URL.Path
|
||
|
}
|
||
|
|
||
|
if ignorePaths.Contains(spanName) {
|
||
|
next.ServeHTTP(w, r)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
ctx := propagator.Extract(r.Context(), propagation.HeaderCarrier(r.Header))
|
||
|
spanCtx, span := tracer.Start(
|
||
|
ctx,
|
||
|
spanName,
|
||
|
oteltrace.WithSpanKind(oteltrace.SpanKindServer),
|
||
|
oteltrace.WithAttributes(semconv.HTTPServerAttributesFromHTTPRequest(
|
||
|
serviceName, spanName, r)...),
|
||
|
)
|
||
|
defer span.End()
|
||
|
|
||
|
// convenient for tracking error messages
|
||
|
propagator.Inject(spanCtx, propagation.HeaderCarrier(w.Header()))
|
||
|
|
||
|
trw := &response.WithCodeResponseWriter{Writer: w, Code: http.StatusOK}
|
||
|
next.ServeHTTP(trw, r.WithContext(spanCtx))
|
||
|
|
||
|
span.SetAttributes(semconv.HTTPAttributesFromHTTPStatusCode(trw.Code)...)
|
||
|
span.SetStatus(semconv.SpanStatusFromHTTPStatusCodeAndSpanKind(
|
||
|
trw.Code, oteltrace.SpanKindServer))
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// WithTraceIgnorePaths specifies the traceIgnorePaths option for TraceHandler.
|
||
|
func WithTraceIgnorePaths(traceIgnorePaths []string) TraceOption {
|
||
|
return func(options *traceOptions) {
|
||
|
options.traceIgnorePaths = append(options.traceIgnorePaths, traceIgnorePaths...)
|
||
|
}
|
||
|
}
|