Sha256: 926a4bd4c16f7cd4a58cec84cdb5ff08575c97530b9332126832e97e879f99e4
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true module Zipkin # SpanContext holds the data for a span that gets inherited to child spans class SpanContext def self.create_parent_context trace_id = TraceId.generate new(trace_id: trace_id, span_id: trace_id, sampled: true) end def self.create_from_parent_context(span_context) new( span_id: TraceId.generate, parent_id: span_context.span_id, trace_id: span_context.trace_id, sampled: span_context.sampled? ) end attr_reader :span_id, :parent_id, :trace_id, :baggage def initialize(span_id:, parent_id: nil, trace_id:, sampled:, baggage: {}) @span_id = span_id @parent_id = parent_id @trace_id = trace_id @sampled = sampled @baggage = baggage end def sampled? @sampled end # NOTE: This method is not defined in OpenTracing Ruby spec. Use with # caution. def to_h { span_id: @span_id, parent_id: @parent_id, trace_id: @trace_id, sampled: @sampled } end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
zipkin-1.5.2 | lib/zipkin/span_context.rb |
zipkin-1.5.1 | lib/zipkin/span_context.rb |
zipkin-1.5.0 | lib/zipkin/span_context.rb |
zipkin-1.4.0 | lib/zipkin/span_context.rb |