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.
|
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 afterward.
|
|
var TraceIdKey = http.CanonicalHeaderKey("x-trace-id")
|