mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-02-03 00:38:40 +08:00
7c842f22d0
* Add traceId to the request headers * Add test cases * Update refactor code
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)
|
|
}
|