Update tracing dependencies
This commit is contained in:
parent
4919b638f9
commit
ed12366d52
98 changed files with 3371 additions and 2808 deletions
4
vendor/github.com/opentracing/opentracing-go/span.go
generated
vendored
4
vendor/github.com/opentracing/opentracing-go/span.go
generated
vendored
|
@ -41,6 +41,8 @@ type Span interface {
|
|||
Context() SpanContext
|
||||
|
||||
// Sets or changes the operation name.
|
||||
//
|
||||
// Returns a reference to this Span for chaining.
|
||||
SetOperationName(operationName string) Span
|
||||
|
||||
// Adds a tag to the span.
|
||||
|
@ -51,6 +53,8 @@ type Span interface {
|
|||
// other tag value types is undefined at the OpenTracing level. If a
|
||||
// tracing system does not know how to handle a particular value type, it
|
||||
// may ignore the tag, but shall not panic.
|
||||
//
|
||||
// Returns a reference to this Span for chaining.
|
||||
SetTag(key string, value interface{}) Span
|
||||
|
||||
// LogFields is an efficient and type-checked way to record key:value
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue