Class: Datadog::Tracing::Transport::TraceFormatter
- Inherits:
-
Object
- Object
- Datadog::Tracing::Transport::TraceFormatter
- Defined in:
- lib/datadog/tracing/transport/trace_formatter.rb
Overview
Prepares traces for transport
Instance Attribute Summary collapse
-
#first_span ⇒ Object
readonly
Returns the value of attribute first_span.
-
#root_span ⇒ Object
readonly
Returns the value of attribute root_span.
-
#trace ⇒ Object
readonly
Returns the value of attribute trace.
Class Method Summary collapse
Instance Method Summary collapse
-
#format! ⇒ Object
Modifies a trace so suitable for transport.
-
#initialize(trace) ⇒ TraceFormatter
constructor
A new instance of TraceFormatter.
Constructor Details
#initialize(trace) ⇒ TraceFormatter
26 27 28 29 30 31 32 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 26 def initialize(trace) @trace = trace @root_span = find_root_span(trace) # source code integration uses the "first span in trace chunk" concept instead of root span # see: https://github.com/DataDog/dd-trace-rb/pull/3424 @first_span = trace.spans.first end |
Instance Attribute Details
#first_span ⇒ Object (readonly)
Returns the value of attribute first_span.
17 18 19 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 17 def first_span @first_span end |
#root_span ⇒ Object (readonly)
Returns the value of attribute root_span.
17 18 19 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 17 def root_span @root_span end |
#trace ⇒ Object (readonly)
Returns the value of attribute trace.
17 18 19 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 17 def trace @trace end |
Class Method Details
.format!(trace) ⇒ Object
22 23 24 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 22 def self.format!(trace) new(trace).format! end |
Instance Method Details
#format! ⇒ Object
Modifies a trace so suitable for transport
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/datadog/tracing/transport/trace_formatter.rb', line 35 def format! return unless trace return trace unless root_span # Because the trace API does not support # trace metadata, we must put our trace # metadata on the root span. This "root span" # is needed by the agent/API to ingest the trace. # Apply generic trace tags. Any more specific value will be overridden # by the subsequent calls below. set_resource! tag_agent_sample_rate! tag_hostname! tag_lang! tag_origin! tag_process_id! tag_rule_sample_rate! tag_runtime_id! tag_rate_limiter_rate! tag_sample_rate! tag_sampling_decision_maker! tag_high_order_trace_id! tag_sampling_priority! tag_profiling_enabled! tag_apm_tracing_disabled! if first_span tag_git_repository_url! tag_git_commit_sha! end trace end |