opentelemetry.sdk.trace.id_generator
- class opentelemetry.sdk.trace.id_generator.IdGenerator[source]
Bases:
ABC- abstract generate_span_id()[source]
Get a new span ID.
- Return type:
- Returns:
A 64-bit int for use as a span ID
- abstract generate_trace_id()[source]
Get a new trace ID.
Implementations should at least make the 56 least significant bits uniformly random. Samplers like the TraceIdRatioBased sampler rely on this randomness to make sampling decisions.
If the implementation does randomly generate the 56 least significant bits, it should also implement is_trace_id_random to return True.
See the specification on TraceIdRatioBased.
- Return type:
- Returns:
A 128-bit int for use as a trace ID
- is_trace_id_random()[source]
Indicates whether generated trace IDs are random.
When True, the trace-id field will have the random-trace-id flag set in the W3C traceparent header. Per the W3C Trace Context specification, this indicates that at least the 7 rightmost bytes (56 bits) of the trace ID were generated randomly with uniform distribution.
See the W3C Trace Context specification.
- Return type:
- Returns:
True if this generator produces random IDs, False otherwise.
- class opentelemetry.sdk.trace.id_generator.RandomIdGenerator[source]
Bases:
IdGeneratorThe default ID generator for TracerProvider which randomly generates all bits when generating IDs.
- generate_span_id()[source]
Get a new span ID.
- Return type:
- Returns:
A 64-bit int for use as a span ID
- generate_trace_id()[source]
Get a new trace ID.
Implementations should at least make the 56 least significant bits uniformly random. Samplers like the TraceIdRatioBased sampler rely on this randomness to make sampling decisions.
If the implementation does randomly generate the 56 least significant bits, it should also implement is_trace_id_random to return True.
See the specification on TraceIdRatioBased.
- Return type:
- Returns:
A 128-bit int for use as a trace ID
- is_trace_id_random()[source]
Indicates whether generated trace IDs are random.
When True, the trace-id field will have the random-trace-id flag set in the W3C traceparent header. Per the W3C Trace Context specification, this indicates that at least the 7 rightmost bytes (56 bits) of the trace ID were generated randomly with uniform distribution.
See the W3C Trace Context specification.
- Return type:
- Returns:
True if this generator produces random IDs, False otherwise.