Module id

Module id 

Expand description

Unique identifiers for traces and spans.

This module provides the core identifier types used throughout the telemetry system to uniquely identify traces and spans in distributed tracing scenarios.

§Core Types

  • SpanId: An identifier that uniquely identifies a span within a process.
  • SpanContext: A combination of process id and span id that uniquely identifies a span globally.

Structs§

ProcessId
A globally-unique id identifying a process.
SpanContext
A struct representing the context of a span, including its ProcessId and SpanId.
SpanId
A process-unique id for a span.

Enums§

ParseSpanContextError
Errors that can occur while parsing SpanContext from a string.