mirror of
https://github.com/open-telemetry/opentelemetry-go.git
synced 2024-12-14 10:13:10 +02:00
c506e99b01
* Correct B3 propagators and add tests * Break up external integration and internal unit tests * Add changes to Changelog. * Update Changelog with PR number * Fix lint issues * Update trace flags Add a new "not sampled" mask to complement the existing "sampled" one. Rename `FlagsUnused` to `FlagsUnset`. Add documentation for each of the flags to help understand their purpose. * Update extractSingle to support unset sampling * Update existing tests to appropriately use FlagsUnset * Remove bogus debug flag test The B3 specification states "Debug is encoded as `X-B3-Flags: 1`. Absent or any other values can be ignored", so testing of other values should not result in an error. * B3 Extract now supports parsing both headers Remove test cases that would fail if the fallback header format was expected to not be used. * Feedback * Switch to bitmask inject encoding field Add the B3Encoding and valid HTTP based values. Change the B3 propagator to use these bitmask fields to specify the inject encoding it will propagate. * Add comments * Migrate B3 integration tests to existing testtrace * Update comment * Benchmark invalid B3 injects as well * Update trace flags Add a FlagsDebug and FlagsDeferred to track the B3 trace state. Add helper methods to the SpanContext to check the debug and deferred bit of the trace flags. Update SpanContext.IsSampled to return if the sampling decision is to sample rather than if the sample bit is set. This means that if the debug bit is also set it will return true. * Revert SpanContext.IsSampled back * Add comment to b3 test data generation * Update Changelog * Fix trace flag name in Changelog * Fix Changelog formatting * Update Changelog * Remove valid check at start of B3 injectg This check makes sample only headers not propagate. * Update B3 inject integration tests Use the passed SpanContext and check directly the span ID. * Update B3 integration tests Run update checked SpanID to match sent. Add tests to validate sample only transmissions and debug flag support. * Rename injectTest parentSc to sc This is no longer the parent. * Update GetAllKeys for B3 * Un-Export the B3 headers The B3SingleHeader name will conflict with the upcoming change to prefix the SingleHeader encoding with "B3". There are a few options to address this conflict, but in the end we do not need to be exporting these values. They are duplicates of the OpenZipkin package and users should use those. * Rename B3 encodings and move support method to B3Encoding Include a `B3` prefix to scope the encoding names. Move the related support method to the B3Encoding itself, instead of the B3 propagator. Add tests to provide a sanity check for encoding bitmasks. * Update span_context_test tests Update test name to better describe how unused bits have no affect on the sampling decision. Include the inverse of this test as well: not sampled but has unused bits. * Use named const for Single Header decoding widths * Update api/trace/b3_propagator.go Co-authored-by: Anthony Mirabella <a9@aneurysm9.com> Co-authored-by: Anthony Mirabella <a9@aneurysm9.com>
344 lines
11 KiB
Go
344 lines
11 KiB
Go
// Copyright The OpenTelemetry 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 trace
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"strings"
|
|
|
|
"go.opentelemetry.io/otel/api/propagation"
|
|
)
|
|
|
|
const (
|
|
// Default B3 Header names.
|
|
b3ContextHeader = "b3"
|
|
b3DebugFlagHeader = "x-b3-flags"
|
|
b3TraceIDHeader = "x-b3-traceid"
|
|
b3SpanIDHeader = "x-b3-spanid"
|
|
b3SampledHeader = "x-b3-sampled"
|
|
b3ParentSpanIDHeader = "x-b3-parentspanid"
|
|
|
|
b3TraceIDPadding = "0000000000000000"
|
|
|
|
// B3 Single Header encoding widths.
|
|
separatorWidth = 1 // Single "-" character.
|
|
samplingWidth = 1 // Single hex character.
|
|
traceID64BitsWidth = 64 / 4 // 16 hex character Trace ID.
|
|
traceID128BitsWidth = 128 / 4 // 32 hex character Trace ID.
|
|
spanIDWidth = 16 // 16 hex character ID.
|
|
parentSpanIDWidth = 16 // 16 hex character ID.
|
|
)
|
|
|
|
var (
|
|
empty = EmptySpanContext()
|
|
|
|
errInvalidSampledByte = errors.New("invalid B3 Sampled found")
|
|
errInvalidSampledHeader = errors.New("invalid B3 Sampled header found")
|
|
errInvalidTraceIDHeader = errors.New("invalid B3 TraceID header found")
|
|
errInvalidSpanIDHeader = errors.New("invalid B3 SpanID header found")
|
|
errInvalidParentSpanIDHeader = errors.New("invalid B3 ParentSpanID header found")
|
|
errInvalidScope = errors.New("require either both TraceID and SpanID or none")
|
|
errInvalidScopeParent = errors.New("ParentSpanID requires both TraceID and SpanID to be available")
|
|
errInvalidScopeParentSingle = errors.New("ParentSpanID requires TraceID, SpanID and Sampled to be available")
|
|
errEmptyContext = errors.New("empty request context")
|
|
errInvalidTraceIDValue = errors.New("invalid B3 TraceID value found")
|
|
errInvalidSpanIDValue = errors.New("invalid B3 SpanID value found")
|
|
errInvalidParentSpanIDValue = errors.New("invalid B3 ParentSpanID value found")
|
|
)
|
|
|
|
// B3Encoding is a bitmask representation of the B3 encoding type.
|
|
type B3Encoding uint8
|
|
|
|
// supports returns if e has o bit(s) set.
|
|
func (e B3Encoding) supports(o B3Encoding) bool {
|
|
return e&o == o
|
|
}
|
|
|
|
const (
|
|
// B3MultipleHeader is a B3 encoding that uses multiple headers to
|
|
// transmit tracing information all prefixed with `x-b3-`.
|
|
B3MultipleHeader B3Encoding = 1 << iota
|
|
// B3SingleHeader is a B3 encoding that uses a single header named `b3`
|
|
// to transmit tracing information.
|
|
B3SingleHeader
|
|
// B3Unspecified is an unspecified B3 encoding.
|
|
B3Unspecified B3Encoding = 0
|
|
)
|
|
|
|
// B3 propagator serializes SpanContext to/from B3 Headers.
|
|
// This propagator supports both versions of B3 headers,
|
|
// 1. Single Header:
|
|
// b3: {TraceId}-{SpanId}-{SamplingState}-{ParentSpanId}
|
|
// 2. Multiple Headers:
|
|
// x-b3-traceid: {TraceId}
|
|
// x-b3-parentspanid: {ParentSpanId}
|
|
// x-b3-spanid: {SpanId}
|
|
// x-b3-sampled: {SamplingState}
|
|
// x-b3-flags: {DebugFlag}
|
|
type B3 struct {
|
|
// InjectEncoding are the B3 encodings used when injecting trace
|
|
// information. If no encoding is specified (i.e. `B3Unspecified`)
|
|
// `B3MultipleHeader` will be used as the default.
|
|
InjectEncoding B3Encoding
|
|
}
|
|
|
|
var _ propagation.HTTPPropagator = B3{}
|
|
|
|
// Inject injects a context into the supplier as B3 headers.
|
|
// The parent span ID is omitted because it is not tracked in the
|
|
// SpanContext.
|
|
func (b3 B3) Inject(ctx context.Context, supplier propagation.HTTPSupplier) {
|
|
sc := SpanFromContext(ctx).SpanContext()
|
|
|
|
if b3.InjectEncoding.supports(B3SingleHeader) {
|
|
header := []string{}
|
|
if sc.TraceID.IsValid() && sc.SpanID.IsValid() {
|
|
header = append(header, sc.TraceID.String(), sc.SpanID.String())
|
|
}
|
|
|
|
if sc.isDebug() {
|
|
header = append(header, "d")
|
|
} else if !sc.isDeferred() {
|
|
if sc.IsSampled() {
|
|
header = append(header, "1")
|
|
} else {
|
|
header = append(header, "0")
|
|
}
|
|
}
|
|
|
|
supplier.Set(b3ContextHeader, strings.Join(header, "-"))
|
|
}
|
|
|
|
if b3.InjectEncoding.supports(B3MultipleHeader) || b3.InjectEncoding == B3Unspecified {
|
|
if sc.TraceID.IsValid() && sc.SpanID.IsValid() {
|
|
supplier.Set(b3TraceIDHeader, sc.TraceID.String())
|
|
supplier.Set(b3SpanIDHeader, sc.SpanID.String())
|
|
}
|
|
|
|
if sc.isDebug() {
|
|
// Since Debug implies deferred, don't also send "X-B3-Sampled".
|
|
supplier.Set(b3DebugFlagHeader, "1")
|
|
} else if !sc.isDeferred() {
|
|
if sc.IsSampled() {
|
|
supplier.Set(b3SampledHeader, "1")
|
|
} else {
|
|
supplier.Set(b3SampledHeader, "0")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Extract extracts a context from the supplier if it contains B3 headers.
|
|
func (b3 B3) Extract(ctx context.Context, supplier propagation.HTTPSupplier) context.Context {
|
|
var (
|
|
sc SpanContext
|
|
err error
|
|
)
|
|
|
|
// Default to Single Header if a valid value exists.
|
|
if h := supplier.Get(b3ContextHeader); h != "" {
|
|
sc, err = extractSingle(h)
|
|
if err == nil && sc.IsValid() {
|
|
return ContextWithRemoteSpanContext(ctx, sc)
|
|
}
|
|
// The Single Header value was invalid, fallback to Multiple Header.
|
|
}
|
|
|
|
var (
|
|
traceID = supplier.Get(b3TraceIDHeader)
|
|
spanID = supplier.Get(b3SpanIDHeader)
|
|
parentSpanID = supplier.Get(b3ParentSpanIDHeader)
|
|
sampled = supplier.Get(b3SampledHeader)
|
|
debugFlag = supplier.Get(b3DebugFlagHeader)
|
|
)
|
|
sc, err = extractMultiple(traceID, spanID, parentSpanID, sampled, debugFlag)
|
|
if err != nil || !sc.IsValid() {
|
|
return ctx
|
|
}
|
|
return ContextWithRemoteSpanContext(ctx, sc)
|
|
}
|
|
|
|
func (b3 B3) GetAllKeys() []string {
|
|
header := []string{}
|
|
if b3.InjectEncoding.supports(B3SingleHeader) {
|
|
header = append(header, b3ContextHeader)
|
|
}
|
|
if b3.InjectEncoding.supports(B3MultipleHeader) || b3.InjectEncoding == B3Unspecified {
|
|
header = append(header, b3TraceIDHeader, b3SpanIDHeader, b3SampledHeader, b3DebugFlagHeader)
|
|
}
|
|
return header
|
|
}
|
|
|
|
// extractMultiple reconstructs a SpanContext from header values based on B3
|
|
// Multiple header. It is based on the implementation found here:
|
|
// https://github.com/openzipkin/zipkin-go/blob/v0.2.2/propagation/b3/spancontext.go
|
|
// and adapted to support a SpanContext.
|
|
func extractMultiple(traceID, spanID, parentSpanID, sampled, flags string) (SpanContext, error) {
|
|
var (
|
|
err error
|
|
requiredCount int
|
|
sc = SpanContext{}
|
|
)
|
|
|
|
// correct values for an existing sampled header are "0" and "1".
|
|
// For legacy support and being lenient to other tracing implementations we
|
|
// allow "true" and "false" as inputs for interop purposes.
|
|
switch strings.ToLower(sampled) {
|
|
case "0", "false":
|
|
// Zero value for TraceFlags sample bit is unset.
|
|
case "1", "true":
|
|
sc.TraceFlags = FlagsSampled
|
|
case "":
|
|
sc.TraceFlags = FlagsDeferred
|
|
default:
|
|
return empty, errInvalidSampledHeader
|
|
}
|
|
|
|
// The only accepted value for Flags is "1". This will set Debug to
|
|
// true. All other values and omission of header will be ignored.
|
|
if flags == "1" {
|
|
sc.TraceFlags |= FlagsDebug
|
|
}
|
|
|
|
if traceID != "" {
|
|
requiredCount++
|
|
id := traceID
|
|
if len(traceID) == 16 {
|
|
// Pad 64-bit trace IDs.
|
|
id = b3TraceIDPadding + traceID
|
|
}
|
|
if sc.TraceID, err = IDFromHex(id); err != nil {
|
|
return empty, errInvalidTraceIDHeader
|
|
}
|
|
}
|
|
|
|
if spanID != "" {
|
|
requiredCount++
|
|
if sc.SpanID, err = SpanIDFromHex(spanID); err != nil {
|
|
return empty, errInvalidSpanIDHeader
|
|
}
|
|
}
|
|
|
|
if requiredCount != 0 && requiredCount != 2 {
|
|
return empty, errInvalidScope
|
|
}
|
|
|
|
if parentSpanID != "" {
|
|
if requiredCount == 0 {
|
|
return empty, errInvalidScopeParent
|
|
}
|
|
// Validate parent span ID but we do not use it so do not save it.
|
|
if _, err = SpanIDFromHex(parentSpanID); err != nil {
|
|
return empty, errInvalidParentSpanIDHeader
|
|
}
|
|
}
|
|
|
|
return sc, nil
|
|
}
|
|
|
|
// extractSingle reconstructs a SpanContext from contextHeader based on a B3
|
|
// Single header. It is based on the implementation found here:
|
|
// https://github.com/openzipkin/zipkin-go/blob/v0.2.2/propagation/b3/spancontext.go
|
|
// and adapted to support a SpanContext.
|
|
func extractSingle(contextHeader string) (SpanContext, error) {
|
|
if contextHeader == "" {
|
|
return empty, errEmptyContext
|
|
}
|
|
|
|
var (
|
|
sc = SpanContext{}
|
|
sampling string
|
|
)
|
|
|
|
headerLen := len(contextHeader)
|
|
|
|
if headerLen == samplingWidth {
|
|
sampling = contextHeader
|
|
} else if headerLen == traceID64BitsWidth || headerLen == traceID128BitsWidth {
|
|
// Trace ID by itself is invalid.
|
|
return empty, errInvalidScope
|
|
} else if headerLen >= traceID64BitsWidth+spanIDWidth+separatorWidth {
|
|
pos := 0
|
|
var traceID string
|
|
if string(contextHeader[traceID64BitsWidth]) == "-" {
|
|
// traceID must be 64 bits
|
|
pos += traceID64BitsWidth // {traceID}
|
|
traceID = b3TraceIDPadding + string(contextHeader[0:pos])
|
|
} else if string(contextHeader[32]) == "-" {
|
|
// traceID must be 128 bits
|
|
pos += traceID128BitsWidth // {traceID}
|
|
traceID = string(contextHeader[0:pos])
|
|
} else {
|
|
return empty, errInvalidTraceIDValue
|
|
}
|
|
var err error
|
|
sc.TraceID, err = IDFromHex(traceID)
|
|
if err != nil {
|
|
return empty, errInvalidTraceIDValue
|
|
}
|
|
pos += separatorWidth // {traceID}-
|
|
|
|
sc.SpanID, err = SpanIDFromHex(contextHeader[pos : pos+spanIDWidth])
|
|
if err != nil {
|
|
return empty, errInvalidSpanIDValue
|
|
}
|
|
pos += spanIDWidth // {traceID}-{spanID}
|
|
|
|
if headerLen > pos {
|
|
if headerLen == pos+separatorWidth {
|
|
// {traceID}-{spanID}- is invalid.
|
|
return empty, errInvalidSampledByte
|
|
}
|
|
pos += separatorWidth // {traceID}-{spanID}-
|
|
|
|
if headerLen == pos+samplingWidth {
|
|
sampling = string(contextHeader[pos])
|
|
} else if headerLen == pos+parentSpanIDWidth {
|
|
// {traceID}-{spanID}-{parentSpanID} is invalid.
|
|
return empty, errInvalidScopeParentSingle
|
|
} else if headerLen == pos+samplingWidth+separatorWidth+parentSpanIDWidth {
|
|
sampling = string(contextHeader[pos])
|
|
pos += samplingWidth + separatorWidth // {traceID}-{spanID}-{sampling}-
|
|
|
|
// Validate parent span ID but we do not use it so do not
|
|
// save it.
|
|
_, err = SpanIDFromHex(contextHeader[pos:])
|
|
if err != nil {
|
|
return empty, errInvalidParentSpanIDValue
|
|
}
|
|
} else {
|
|
return empty, errInvalidParentSpanIDValue
|
|
}
|
|
}
|
|
} else {
|
|
return empty, errInvalidTraceIDValue
|
|
}
|
|
switch sampling {
|
|
case "":
|
|
sc.TraceFlags = FlagsDeferred
|
|
case "d":
|
|
sc.TraceFlags = FlagsDebug
|
|
case "1":
|
|
sc.TraceFlags = FlagsSampled
|
|
case "0":
|
|
// Zero value for TraceFlags sample bit is unset.
|
|
default:
|
|
return empty, errInvalidSampledByte
|
|
}
|
|
|
|
return sc, nil
|
|
}
|