forked from pneymrl2f/nightingale
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.
11 lines
327 B
11 lines
327 B
package lightstep
|
|
|
|
import "github.com/opentracing/opentracing-go"
|
|
|
|
// Propagator provides the ability to inject/extract different
|
|
// formats of span information. Currently supported: ls, b3
|
|
type Propagator interface {
|
|
Inject(opentracing.SpanContext, interface{}) error
|
|
Extract(interface{}) (opentracing.SpanContext, error)
|
|
}
|