123456789101112131415161718192021222324252627 |
- // 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),
- }
- }
|