Struct opentelemetry_datadog::DatadogPropagator[][src]

pub struct DatadogPropagator { /* fields omitted */ }
Expand description

Extracts and injects SpanContexts into Extractors or Injectors using Datadog’s header format.

The Datadog header format does not have an explicit spec, but can be divined from the client libraries, such as dd-trace-go

Example

use opentelemetry::global;
use opentelemetry_datadog::DatadogPropagator;

global::set_text_map_propagator(DatadogPropagator::default());

Implementations

Creates a new DatadogPropagator.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Properly encodes the values of the Context and injects them into the Injector. Read more

Retrieves encoded data using the provided Extractor. If no data for this format was retrieved OR if the retrieved data is invalid, then the given Context is returned. Read more

Returns iter of fields used by TextMapPropagator Read more

Properly encodes the values of the current Context and injects them into the Injector. Read more

Retrieves encoded data using the provided Extractor. If no data for this format was retrieved OR if the retrieved data is invalid, then the current Context is returned. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Attaches the provided Context to this type, returning a WithContext wrapper. Read more

Attaches the current Context to this type, returning a WithContext wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.