add top level func
This commit is contained in:
Родитель
bca7481a73
Коммит
2fc92250d0
|
@ -50,6 +50,14 @@ func FromContext(ctx context.Context) Spanner {
|
|||
return tracer.FromContext(ctx)
|
||||
}
|
||||
|
||||
// NewContext returns a new context with the given Span attached.
|
||||
func NewContext(ctx context.Context, span Spanner) context.Context {
|
||||
if tracer == nil {
|
||||
return ctx
|
||||
}
|
||||
return tracer.NewContext(ctx, span)
|
||||
}
|
||||
|
||||
type (
|
||||
// Attribute is a key value pair for decorating spans
|
||||
Attribute struct {
|
||||
|
|
Загрузка…
Ссылка в новой задаче