opentelemetry.trace package — OpenTelemetry Python documentation (original) (raw)

Submodules

Module contents

The OpenTelemetry tracing API describes the classes used to generate distributed traces.

The Tracer class controls access to the execution context, and manages span creation. Each operation in a trace is represented by aSpan, which records the start, end time, and metadata associated with the operation.

This module provides abstract (i.e. unimplemented) classes required for tracing, and a concrete no-op NonRecordingSpan that allows applications to use the API package alone without a supporting implementation.

To get a tracer, you need to provide the package name from which you are calling the tracer APIs to OpenTelemetry by calling TracerProvider.get_tracerwith the calling module name and the version of your package.

The tracer supports creating spans that are “attached” or “detached” from the context. New spans are “attached” to the context in that they are created as children of the currently active span, and the newly-created span can optionally become the new active span:

from opentelemetry import trace

tracer = trace.get_tracer(name)

Create a new root span, set it as the current span in context

with tracer.start_as_current_span("parent"): # Attach a new child and update the current span with tracer.start_as_current_span("child"): do_work(): # Close child span, set parent as current

Close parent span, set default span as current

When creating a span that’s “detached” from the context the active span doesn’t change, and the caller is responsible for managing the span’s lifetime:

Explicit parent span assignment is done via the Context

from opentelemetry.trace import set_span_in_context

context = set_span_in_context(parent) child = tracer.start_span("child", context=context)

try: do_work(span=child) finally: child.end()

Applications should generally use a single global TracerProvider, and use either implicit or explicit context propagation consistently throughout.

New in version 0.1.0.

Changed in version 0.3.0: TracerProvider was introduced and the global tracer getter was replaced by tracer_provider.

Changed in version 0.5.0: tracer_provider was replaced by get_tracer_provider,set_preferred_tracer_provider_implementation was replaced byset_tracer_provider.

class opentelemetry.trace.NonRecordingSpan(context)[source]

Bases: Span

The Span that is used when no Span implementation is available.

All operations are no-op except context propagation.

get_span_context()[source]

Gets the span’s SpanContext.

Get an immutable, serializable identifier for this span that can be used to create new child spans.

Return type:

SpanContext

Returns:

A opentelemetry.trace.SpanContext with a copy of this span’s immutable state.

is_recording()[source]

Returns whether this span will be recorded.

Returns true if this Span is active and recording information like events with the add_event operation and attributes using set_attribute.

Return type:

bool

end(end_time=None)[source]

Sets the current time as the span’s end time.

The span’s end time is the wall time at which the operation finished.

Only the first call to end should modify the span, and implementations are free to ignore or raise on further calls.

Return type:

None

set_attributes(attributes)[source]

Sets Attributes.

Sets Attributes with the key and value passed as arguments dict.

Note: The behavior of None value attributes is undefined, and hence strongly discouraged. It is also preferred to set attributes at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

set_attribute(key, value)[source]

Sets an Attribute.

Sets a single Attribute with the key and value passed as arguments.

Note: The behavior of None value attributes is undefined, and hence strongly discouraged. It is also preferred to set attributes at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

add_event(name, attributes=None, timestamp=None)[source]

Adds an Event.

Adds a single Event with the name and, optionally, a timestamp and attributes passed as arguments. Implementations should generate a timestamp if the timestamp argument is omitted.

Return type:

None

add_link(context, attributes=None)[source]

Adds a Link.

Adds a single Link with the SpanContext of the span to link to and, optionally, attributes passed as arguments. Implementations may ignore calls with an invalid span context if both attributes and TraceState are empty.

Note: It is preferred to add links at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

update_name(name)[source]

Updates the Span name.

This will override the name provided via opentelemetry.trace.Tracer.start_span().

Upon this update, any sampling behavior based on Span name will depend on the implementation.

Return type:

None

set_status(status, description=None)[source]

Sets the Status of the Span. If used, this will override the default Span status.

Return type:

None

record_exception(exception, attributes=None, timestamp=None, escaped=False)[source]

Records an exception as a span event.

Return type:

None

class opentelemetry.trace.Link(context, attributes=None)[source]

Bases: _LinkBase

A link to a Span. The attributes of a Link are immutable.

Parameters:

property attributes_: Mapping[str, str | bool | int | float | Sequence[str] | Sequence[bool] | Sequence[int] | Sequence[float]] | None_

property dropped_attributes_: int_

class opentelemetry.trace.Span[source]

Bases: ABC

A span represents a single operation within a trace.

abstract end(end_time=None)[source]

Sets the current time as the span’s end time.

The span’s end time is the wall time at which the operation finished.

Only the first call to end should modify the span, and implementations are free to ignore or raise on further calls.

Return type:

None

abstract get_span_context()[source]

Gets the span’s SpanContext.

Get an immutable, serializable identifier for this span that can be used to create new child spans.

Return type:

SpanContext

Returns:

A opentelemetry.trace.SpanContext with a copy of this span’s immutable state.

abstract set_attributes(attributes)[source]

Sets Attributes.

Sets Attributes with the key and value passed as arguments dict.

Note: The behavior of None value attributes is undefined, and hence strongly discouraged. It is also preferred to set attributes at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

abstract set_attribute(key, value)[source]

Sets an Attribute.

Sets a single Attribute with the key and value passed as arguments.

Note: The behavior of None value attributes is undefined, and hence strongly discouraged. It is also preferred to set attributes at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

abstract add_event(name, attributes=None, timestamp=None)[source]

Adds an Event.

Adds a single Event with the name and, optionally, a timestamp and attributes passed as arguments. Implementations should generate a timestamp if the timestamp argument is omitted.

Return type:

None

add_link(context, attributes=None)[source]

Adds a Link.

Adds a single Link with the SpanContext of the span to link to and, optionally, attributes passed as arguments. Implementations may ignore calls with an invalid span context if both attributes and TraceState are empty.

Note: It is preferred to add links at span creation, instead of calling this method later since samplers can only consider information already present during span creation.

Return type:

None

abstract update_name(name)[source]

Updates the Span name.

This will override the name provided via opentelemetry.trace.Tracer.start_span().

Upon this update, any sampling behavior based on Span name will depend on the implementation.

Return type:

None

abstract is_recording()[source]

Returns whether this span will be recorded.

Returns true if this Span is active and recording information like events with the add_event operation and attributes using set_attribute.

Return type:

bool

abstract set_status(status, description=None)[source]

Sets the Status of the Span. If used, this will override the default Span status.

Return type:

None

abstract record_exception(exception, attributes=None, timestamp=None, escaped=False)[source]

Records an exception as a span event.

Return type:

None

class opentelemetry.trace.SpanContext(trace_id: int, span_id: int, is_remote: bool, trace_flags: TraceFlags | None = 0, trace_state: TraceState | None = [])[source]

Bases: Tuple[int, int, bool, TraceFlags, TraceState, bool]

The state of a Span to propagate between processes.

This class includes the immutable attributes of a Span that must be propagated to a span’s children and across process boundaries.

Parameters:

property trace_id_: int_

property span_id_: int_

property is_remote_: bool_

property trace_flags_: TraceFlags_

property trace_state_: TraceState_

property is_valid_: bool_

class opentelemetry.trace.SpanKind(value)[source]

Bases: Enum

Specifies additional details on how this span relates to its parent span.

Note that this enumeration is experimental and likely to change. Seehttps://github.com/open-telemetry/opentelemetry-specification/pull/226.

INTERNAL = 0

SERVER = 1

CLIENT = 2

Indicates that the span describes a request to some remote service.

PRODUCER = 3

Indicates that the span describes a producer sending a message to a broker. Unlike client and server, there is usually no direct critical path latency relationship between producer and consumer spans.

CONSUMER = 4

Indicates that the span describes a consumer receiving a message from a broker. Unlike client and server, there is usually no direct critical path latency relationship between producer and consumer spans.

class opentelemetry.trace.TraceFlags[source]

Bases: int

A bitmask that represents options specific to the trace.

The only supported option is the “sampled” flag (0x01). If set, this flag indicates that the trace may have been sampled upstream.

See the W3C Trace Context - Traceparent spec for details.

DEFAULT = 0

SAMPLED = 1

classmethod get_default()[source]

Return type:

TraceFlags

property sampled_: bool_

class opentelemetry.trace.TraceState(entries=None)[source]

Bases: Mapping[str, str]

A list of key-value pairs representing vendor-specific trace info.

Keys and values are strings of up to 256 printable US-ASCII characters. Implementations should conform to the W3C Trace Context - Tracestatespec, which describes additional restrictions on valid field values.

add(key, value)[source]

Adds a key-value pair to tracestate. The provided pair should adhere to w3c tracestate identifiers format.

Parameters:

Return type:

TraceState

Returns:

A new TraceState with the modifications applied.

If the provided key-value pair is invalid or results in tracestate that violates tracecontext specification, they are discarded and same tracestate will be returned.

update(key, value)[source]

Updates a key-value pair in tracestate. The provided pair should adhere to w3c tracestate identifiers format.

Parameters:

Return type:

TraceState

Returns:

A new TraceState with the modifications applied.

If the provided key-value pair is invalid or results in tracestate that violates tracecontext specification, they are discarded and same tracestate will be returned.

delete(key)[source]

Deletes a key-value from tracestate.

Parameters:

key (str) – A valid tracestate key to remove key-value pair from tracestate

Return type:

TraceState

Returns:

A new TraceState with the modifications applied.

If the provided key-value pair is invalid or results in tracestate that violates tracecontext specification, they are discarded and same tracestate will be returned.

Creates a w3c tracestate header from a TraceState.

Return type:

str

Returns:

A string that adheres to the w3c tracestate header format.

Parses one or more w3c tracestate header into a TraceState.

Parameters:

header_list (List[str]) – one or more w3c tracestate headers.

Return type:

TraceState

Returns:

A valid TraceState that contains values extracted from the tracestate header.

If the format of one headers is illegal, all values will be discarded and an empty tracestate will be returned.

If the number of keys is beyond the maximum, all values will be discarded and an empty tracestate will be returned.

classmethod get_default()[source]

Return type:

TraceState

keys()[source]

Return type:

KeysView[str]

items()[source]

Return type:

ItemsView[str, str]

values()[source]

Return type:

ValuesView[str]

class opentelemetry.trace.TracerProvider[source]

Bases: ABC

abstract get_tracer(instrumenting_module_name, instrumenting_library_version=None, schema_url=None, attributes=None)[source]

Returns a Tracer for use by the given instrumentation library.

For any two calls it is undefined whether the same or differentTracer instances are returned, even for different library names.

This function may return different Tracer types (e.g. a no-op tracer vs. a functional tracer).

Parameters:

Return type:

Tracer

class opentelemetry.trace.Tracer[source]

Bases: ABC

Handles span creation and in-process context propagation.

This class provides methods for manipulating the context, creating spans, and controlling spans’ lifecycles.

abstract start_span(name, context=None, kind=SpanKind.INTERNAL, attributes=None, links=None, start_time=None, record_exception=True, set_status_on_exception=True)[source]

Starts a span.

Create a new span. Start the span without setting it as the current span in the context. To start the span and use the context in a single method, see start_as_current_span().

By default the current span in the context will be used as parent, but an explicit context can also be specified, by passing in a Context containing a current Span. If there is no current span in the global Context or in the specified context, the created span will be a root span.

The span can be used as a context manager. On exiting the context manager, the span’s end() method will be called.

Example:

trace.get_current_span() will be used as the implicit parent.

If none is found, the created span will be a root instance.

with tracer.start_span("one") as child: child.add_event("child's event")

Parameters:

Return type:

Span

Returns:

The newly-created span.

abstract start_as_current_span(name, context=None, kind=SpanKind.INTERNAL, attributes=None, links=None, start_time=None, record_exception=True, set_status_on_exception=True, end_on_exit=True)[source]

Context manager for creating a new span and set it as the current span in this tracer’s context.

Exiting the context manager will call the span’s end method, as well as return the current span to its previous value by returning to the previous context.

Example:

with tracer.start_as_current_span("one") as parent: parent.add_event("parent's event") with tracer.start_as_current_span("two") as child: child.add_event("child's event") trace.get_current_span() # returns child trace.get_current_span() # returns parent trace.get_current_span() # returns previously active span

This is a convenience method for creating spans attached to the tracer’s context. Applications that need more control over the span lifetime should use start_span() instead. For example:

with tracer.start_as_current_span(name) as span: do_work()

is equivalent to:

span = tracer.start_span(name) with opentelemetry.trace.use_span(span, end_on_exit=True): do_work()

This can also be used as a decorator:

@tracer.start_as_current_span("name") def function(): ...

function()

Parameters:

Yields:

The newly-created span.

Return type:

Iterator[Span]

opentelemetry.trace.format_span_id(span_id)[source]

Convenience span ID formatting method :type span_id: int:param span_id: Span ID int

Return type:

str

Returns:

The span ID as 16-byte hexadecimal string

opentelemetry.trace.format_trace_id(trace_id)[source]

Convenience trace ID formatting method :type trace_id: int:param trace_id: Trace ID int

Return type:

str

Returns:

The trace ID as 32-byte hexadecimal string

opentelemetry.trace.get_current_span(context=None)[source]

Retrieve the current span.

Parameters:

context (Optional[Context]) – A Context object. If one is not passed, the default current context is used instead.

Return type:

Span

Returns:

The Span set in the context if it exists. INVALID_SPAN otherwise.

opentelemetry.trace.get_tracer(instrumenting_module_name, instrumenting_library_version=None, tracer_provider=None, schema_url=None, attributes=None)[source]

Returns a Tracer for use by the given instrumentation library.

This function is a convenience wrapper for opentelemetry.trace.TracerProvider.get_tracer.

If tracer_provider is omitted the current configured one is used.

Return type:

Tracer

opentelemetry.trace.get_tracer_provider()[source]

Gets the current global TracerProvider object.

Return type:

TracerProvider

opentelemetry.trace.set_tracer_provider(tracer_provider)[source]

Sets the current global TracerProvider object.

This can only be done once, a warning will be logged if any further attempt is made.

Return type:

None

opentelemetry.trace.set_span_in_context(span, context=None)[source]

Set the span in the given context.

Parameters:

Return type:

Context

opentelemetry.trace.use_span(span, end_on_exit=False, record_exception=True, set_status_on_exception=True)[source]

Takes a non-active span and activates it in the current context.

Parameters:

Return type:

Iterator[Span]

class opentelemetry.trace.Status(status_code=StatusCode.UNSET, description=None)[source]

Bases: object

Represents the status of a finished Span.

Parameters:

property status_code_: StatusCode_

Represents the canonical status code of a finished Span.

property description_: str | None_

Status description

property is_ok_: bool_

Returns false if this represents an error, true otherwise.

property is_unset_: bool_

Returns true if unset, false otherwise.

class opentelemetry.trace.StatusCode(value)[source]

Bases: Enum

Represents the canonical set of status codes of a finished Span.

UNSET = 0

The default status.

OK = 1

The operation has been validated by an Application developer or Operator to have completed successfully.

ERROR = 2

The operation contains an error.