1 Star 0 Fork 0

Darwin / uptrace-opentelemetry

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
context.go 1.42 KB
一键复制 编辑 原始数据 按行查看 历史
baoyx 提交于 2024-01-29 21:03 . add kitext/hertz/log module
// Copyright 2022 CloudWeGo Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package internal
import (
"context"
oteltrace "go.opentelemetry.io/otel/trace"
)
type traceCarrierContextKeyType struct{}
var traceCarrierContextKey traceCarrierContextKeyType
type TraceCarrier struct {
tracer oteltrace.Tracer
span oteltrace.Span
}
func WithTraceCarrier(ctx context.Context, tc *TraceCarrier) context.Context {
return context.WithValue(ctx, traceCarrierContextKey, tc)
}
func TraceCarrierFromContext(ctx context.Context) *TraceCarrier {
if tc := ctx.Value(traceCarrierContextKey); tc != nil {
return tc.(*TraceCarrier)
}
return nil
}
func (t *TraceCarrier) Tracer() oteltrace.Tracer {
return t.tracer
}
func (t *TraceCarrier) SetTracer(tracer oteltrace.Tracer) {
t.tracer = tracer
}
func (t *TraceCarrier) Span() oteltrace.Span {
return t.span
}
func (t *TraceCarrier) SetSpan(span oteltrace.Span) {
t.span = span
}
Go
1
https://gitee.com/byx_darwin/uptrace-opentelemetry.git
git@gitee.com:byx_darwin/uptrace-opentelemetry.git
byx_darwin
uptrace-opentelemetry
uptrace-opentelemetry
95eac5ab2876

搜索帮助