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§
- Process
Id - A globally-unique id identifying a process.
- Span
Context - A struct representing the context of a span, including its
ProcessIdandSpanId. - SpanId
- A process-unique id for a span.
Enums§
- Parse
Span Context Error - Errors that can occur while parsing
SpanContextfrom a string.