gf/net/gtrace/gtrace_tracer.go
2021-01-28 13:11:09 +08:00

28 lines
600 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package gtrace
import (
"go.opentelemetry.io/otel"
"go.opentelemetry.io/otel/trace"
)
type Tracer struct {
trace.Tracer
}
// Tracer is a short function for retrieving Tracer.
func NewTracer(name ...string) *Tracer {
tracerName := ""
if len(name) > 0 {
tracerName = name[0]
}
return &Tracer{
Tracer: otel.Tracer(tracerName),
}
}