You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
427 B
21 lines
427 B
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 "" |
|
}
|
|
|