This commit is contained in:
David Justice 2019-01-11 11:08:39 -08:00
Родитель bca7481a73
Коммит 2fc92250d0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 2B44C6BF9F416319
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -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 {