Method: Datadog::Tracing::TraceDigest#trace_state_unknown_fields
- Defined in:
- lib/datadog/tracing/trace_digest.rb
#trace_state_unknown_fields ⇒ String (readonly)
From W3C “tracestate”‘s `dd=` entry, when keys are not recognized they are stored here long with their values. This allows later propagation to include those unknown fields, as they can represent future versions of the spec sending data through this service. This value ends in a trailing `;` to facilitate serialization.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/datadog/tracing/trace_digest.rb', line 88 attr_reader \ :span_id, :span_name, :span_resource, :span_service, :span_type, :trace_distributed_tags, :trace_hostname, :trace_id, :trace_name, :trace_origin, :trace_process_id, :trace_resource, :trace_runtime_id, :trace_sampling_priority, :trace_service, :trace_distributed_id, :trace_flags, :trace_state, :trace_state_unknown_fields, :span_remote, :baggage |