mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
20 lines
317 B
Go
20 lines
317 B
Go
package trace
|
|
|
|
type spanContext struct {
|
|
traceId string
|
|
spanId string
|
|
}
|
|
|
|
func (sc spanContext) TraceId() string {
|
|
return sc.traceId
|
|
}
|
|
|
|
func (sc spanContext) SpanId() string {
|
|
return sc.spanId
|
|
}
|
|
|
|
func (sc spanContext) Visit(fn func(key, val string) bool) {
|
|
fn(traceIdKey, sc.traceId)
|
|
fn(spanIdKey, sc.spanId)
|
|
}
|