/
githubmirror
/
GoFrame
Обзор
Документация
Войти
/
githubmirror
/
GoFrame
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
net/gtrace/gtrace_tracer.go
28 строк
672 B
John Guo
comment update for package gtrace
22 сен 2021, 14:12
22 сен 2021, 14:12
b2629b9
Код
Авторство
О чём код?
// 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" ) // Tracer warps trace.Tracer for compatibility and extension. type Tracer struct { trace.Tracer } // NewTracer 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), } }