Class: OpenTelemetry::Propagator::B3::Single::TextMapExtractor

Inherits:
Object
  • Object
show all
Includes:
Context::Propagation::DefaultGetter
Defined in:
lib/opentelemetry/propagator/b3/single/text_map_extractor.rb

Overview

Extracts context from carriers in the b3 single header format

Constant Summary collapse

B3_CONTEXT_REGEX =
/\A(?<trace_id>(?:[0-9a-f]{16}){1,2})-(?<span_id>[0-9a-f]{16})(?:-(?<sampling_state>[01d](?![0-9a-f])))?(?:-(?<parent_span_id>[0-9a-f]{16}))?\z/.freeze
SAMPLED_VALUES =
%w[1 d].freeze

Instance Method Summary collapse

Constructor Details

#initialize(b3_key: 'b3') ⇒ TextMapExtractor

Returns a new TextMapExtractor that extracts b3 context using the specified header keys

Parameters:

  • b3_key (String) (defaults to: 'b3')

    The b3 header key used in the carrier



32
33
34
# File 'lib/opentelemetry/propagator/b3/single/text_map_extractor.rb', line 32

def initialize(b3_key: 'b3')
  @b3_key = b3_key
end

Instance Method Details

#extract(carrier, context, &getter) {|Carrier, String| ... } ⇒ Context

Extract b3 context from the supplied carrier and set the active span in the given context. The original context will be returned if b3 cannot be extracted from the carrier.

Parameters:

  • carrier (Carrier)

    The carrier to get the header from.

  • context (Context)

    The context to be updated with extracted context

  • getter (optional Callable)

    An optional callable that takes a carrier and a key and returns the value associated with the key. If omitted the default getter will be used which expects the carrier to respond to [] and []=.

Yields:

  • (Carrier, String)

    if an optional getter is provided, extract will yield the carrier and the header key to the getter.

Returns:

  • (Context)

    Updated context with active span derived from the header, or the original context if parsing fails.



49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# File 'lib/opentelemetry/propagator/b3/single/text_map_extractor.rb', line 49

def extract(carrier, context, &getter)
  getter ||= default_getter
  header = getter.call(carrier, @b3_key)
  return context unless (match = header.match(B3_CONTEXT_REGEX))

  span_context = Trace::SpanContext.new(
    trace_id: B3.to_trace_id(match['trace_id']),
    span_id: B3.to_span_id(match['span_id']),
    trace_flags: to_trace_flags(match['sampling_state']),
    remote: true
  )

  span = Trace::Span.new(span_context: span_context)
  context = B3.context_with_debug(context) if match['sampling_state'] == 'd'
  Trace.context_with_span(span, parent_context: context)
rescue OpenTelemetry::Error
  context
end