mirror of
https://gitee.com/johng/gf.git
synced 2024-12-02 12:17:53 +08:00
27 lines
675 B
Go
27 lines
675 B
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gtrace
|
|
|
|
import (
|
|
"context"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
)
|
|
|
|
// Span warps trace.Span for compatibility and extension.
|
|
type Span struct {
|
|
trace.Span
|
|
}
|
|
|
|
// NewSpan creates a span using default tracer.
|
|
func NewSpan(ctx context.Context, spanName string, opts ...trace.SpanStartOption) (context.Context, *Span) {
|
|
ctx, span := NewTracer().Start(ctx, spanName, opts...)
|
|
return ctx, &Span{
|
|
Span: span,
|
|
}
|
|
}
|