You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
217 B
Go
9 lines
217 B
Go
3 years ago
|
package trace
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
// TraceIdKey is the trace id header.
|
||
|
// https://www.w3.org/TR/trace-context/#trace-id
|
||
|
// May change it to trace-id afterwards.
|
||
|
var TraceIdKey = http.CanonicalHeaderKey("x-trace-id")
|