mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-02 16:28:39 +08:00
feat: add trace.SpanIDFromContext and trace.TraceIDFromContext (#2654)
This commit is contained in:
parent
10fd9131a1
commit
9941055eaa
@ -6,7 +6,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/zeromicro/go-zero/core/timex"
|
"github.com/zeromicro/go-zero/core/timex"
|
||||||
"go.opentelemetry.io/otel/trace"
|
"github.com/zeromicro/go-zero/internal/trace"
|
||||||
)
|
)
|
||||||
|
|
||||||
// WithCallerSkip returns a Logger with given caller skip.
|
// WithCallerSkip returns a Logger with given caller skip.
|
||||||
@ -136,12 +136,12 @@ func (l *richLogger) buildFields(fields ...LogField) []LogField {
|
|||||||
return fields
|
return fields
|
||||||
}
|
}
|
||||||
|
|
||||||
traceID := traceIdFromContext(l.ctx)
|
traceID := trace.TraceIDFromContext(l.ctx)
|
||||||
if len(traceID) > 0 {
|
if len(traceID) > 0 {
|
||||||
fields = append(fields, Field(traceKey, traceID))
|
fields = append(fields, Field(traceKey, traceID))
|
||||||
}
|
}
|
||||||
|
|
||||||
spanID := spanIdFromContext(l.ctx)
|
spanID := trace.SpanIDFromContext(l.ctx)
|
||||||
if len(spanID) > 0 {
|
if len(spanID) > 0 {
|
||||||
fields = append(fields, Field(spanKey, spanID))
|
fields = append(fields, Field(spanKey, spanID))
|
||||||
}
|
}
|
||||||
@ -179,21 +179,3 @@ func (l *richLogger) slow(v interface{}, fields ...LogField) {
|
|||||||
getWriter().Slow(v, l.buildFields(fields...)...)
|
getWriter().Slow(v, l.buildFields(fields...)...)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func spanIdFromContext(ctx context.Context) string {
|
|
||||||
spanCtx := trace.SpanContextFromContext(ctx)
|
|
||||||
if spanCtx.HasSpanID() {
|
|
||||||
return spanCtx.SpanID().String()
|
|
||||||
}
|
|
||||||
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
|
||||||
func traceIdFromContext(ctx context.Context) string {
|
|
||||||
spanCtx := trace.SpanContextFromContext(ctx)
|
|
||||||
if spanCtx.HasTraceID() {
|
|
||||||
return spanCtx.TraceID().String()
|
|
||||||
}
|
|
||||||
|
|
||||||
return ""
|
|
||||||
}
|
|
||||||
|
@ -5,6 +5,7 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
ztrace "github.com/zeromicro/go-zero/internal/trace"
|
||||||
"go.opentelemetry.io/otel/attribute"
|
"go.opentelemetry.io/otel/attribute"
|
||||||
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
||||||
"google.golang.org/grpc/peer"
|
"google.golang.org/grpc/peer"
|
||||||
@ -12,6 +13,13 @@ import (
|
|||||||
|
|
||||||
const localhost = "127.0.0.1"
|
const localhost = "127.0.0.1"
|
||||||
|
|
||||||
|
var (
|
||||||
|
// SpanIDFromContext returns the span id from ctx.
|
||||||
|
SpanIDFromContext = ztrace.SpanIDFromContext
|
||||||
|
// TraceIDFromContext returns the trace id from ctx.
|
||||||
|
TraceIDFromContext = ztrace.TraceIDFromContext
|
||||||
|
)
|
||||||
|
|
||||||
// PeerFromCtx returns the peer from ctx.
|
// PeerFromCtx returns the peer from ctx.
|
||||||
func PeerFromCtx(ctx context.Context) string {
|
func PeerFromCtx(ctx context.Context) string {
|
||||||
p, ok := peer.FromContext(ctx)
|
p, ok := peer.FromContext(ctx)
|
||||||
|
25
internal/trace/trace.go
Normal file
25
internal/trace/trace.go
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
package trace
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
|
||||||
|
"go.opentelemetry.io/otel/trace"
|
||||||
|
)
|
||||||
|
|
||||||
|
func SpanIDFromContext(ctx context.Context) string {
|
||||||
|
spanCtx := trace.SpanContextFromContext(ctx)
|
||||||
|
if spanCtx.HasSpanID() {
|
||||||
|
return spanCtx.SpanID().String()
|
||||||
|
}
|
||||||
|
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func TraceIDFromContext(ctx context.Context) string {
|
||||||
|
spanCtx := trace.SpanContextFromContext(ctx)
|
||||||
|
if spanCtx.HasTraceID() {
|
||||||
|
return spanCtx.TraceID().String()
|
||||||
|
}
|
||||||
|
|
||||||
|
return ""
|
||||||
|
}
|
32
internal/trace/trace_test.go
Normal file
32
internal/trace/trace_test.go
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
package trace
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"net/http"
|
||||||
|
"net/http/httptest"
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
sdktrace "go.opentelemetry.io/otel/sdk/trace"
|
||||||
|
semconv "go.opentelemetry.io/otel/semconv/v1.4.0"
|
||||||
|
oteltrace "go.opentelemetry.io/otel/trace"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSpanIDFromContext(t *testing.T) {
|
||||||
|
tracer := sdktrace.NewTracerProvider().Tracer("test")
|
||||||
|
ctx, span := tracer.Start(
|
||||||
|
context.Background(),
|
||||||
|
"foo",
|
||||||
|
oteltrace.WithSpanKind(oteltrace.SpanKindClient),
|
||||||
|
oteltrace.WithAttributes(semconv.HTTPClientAttributesFromHTTPRequest(httptest.NewRequest(http.MethodGet, "/", nil))...),
|
||||||
|
)
|
||||||
|
defer span.End()
|
||||||
|
|
||||||
|
assert.NotEmpty(t, TraceIDFromContext(ctx))
|
||||||
|
assert.NotEmpty(t, SpanIDFromContext(ctx))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSpanIDFromContextEmpty(t *testing.T) {
|
||||||
|
assert.Empty(t, TraceIDFromContext(context.Background()))
|
||||||
|
assert.Empty(t, SpanIDFromContext(context.Background()))
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user