mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +08:00
12 lines
235 B
Go
12 lines
235 B
Go
|
package trace
|
||
|
|
||
|
import (
|
||
|
"go.opentelemetry.io/otel"
|
||
|
"go.opentelemetry.io/otel/propagation"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
otel.SetTextMapPropagator(propagation.NewCompositeTextMapPropagator(
|
||
|
propagation.TraceContext{}, propagation.Baggage{}))
|
||
|
}
|