Status: Development
Table of Contents
In alignment to the TraceContext specification, this section uses the Augmented Backus-Naur Form (ABNF) notation of RFC5234, including the DIGIT rule in that document.
When setting TraceState values that are part of the OTel ecosystem,
they MUST all be contained in a single entry using the ot
key, with the value being
a semicolon separated list of key-value pairs such as:
ot=p:8;r:62
ot=foo:bar;k1:13
The TraceContext specification defines support for multiple "tenants" each to use their own tracestate
entry by prefixing tenant@
to tenant-specific values in a mixed tracing environment. OpenTelemetry recognizes this syntax but does not specify an interpretation for multi-tenant tracestate
.
The list can be formally defined as:
list = list-member *( ";" list-member )
list-member = key ":" value
The complete list length MUST NOT exceed 256 characters, as defined by the TraceState value section, and the used keys MUST be unique.
Instrumentation libraries and clients MUST NOT use this entry, and they MUST instead use their own entry.
The key is an identifier that describes an OTel concern.
Simple examples are p
, ts
, or s1
.
The key can be formally defined as:
key = lcalpha *(lcalpha / DIGIT )
lcalpha = %x61-7A ; a-z
Specific keys used by OTel concerns MUST be defined as part of the Specification, and hence it is forbidden to use any key that has not been defined in the Specification itself.
The value is an opaque string. Although it has no maximum allowed length, it is recommended to use short values, as the entire list of key-values MUST NOT exceed 256 characters.
The value can be formally defined as:
value = *(chr)
chr = ucalpha / lcalpha / DIGIT / "." / "_" / "-"
ucalpha = %x41-5A ; A-Z
lcalpha = %x61-7A ; a-z
Set values MUST be either updated or added to the ot
entry in TraceState
,
in order to preserve existing values belonging to other OTel concerns. For example,
if a given concern K wants to set k1:13
:
ot=p:8;r:62
will becomeot=p:8;r:62;k1:13
.ot=p:8;k1:7;r:62
will becomeot=p:8;r:62;k1:13
. Preserving the order is not required.
If setting a value ends up making the entire ot
entry exceed the 256 characters limit,
SDKs are advised to abort the operation and signal the user about the error, e.g.
traceState, ok := SetTraceStateValue(traceState, value)
if ok {
// Successfully set the specified value, traceState was updated.
} else {
// traceState was not updated.
}
The following values have been defined by OpenTelemetry.
The OpenTelemetry TraceState th
sub-key defines a sampling threshold, which conveys effective sampling probability.
Valid values of the th
sub-fields include between 1 and 14 lowercase hexadecimal digits.
hexdigit = DIGIT ; a-f
To decode the threshold from the OpenTelemetry TraceState th
value, first extend the value with trailing zeros to make 14 digits.
Then, parse the 14-digit value as a 56-bit unsigned hexadecimal number, yielding a rejection threshold.
OpenTelemetry defines consistent sampling in terms of a 56-bit trace randomness value compared with the 56-bit rejection threshold. When the randomness value is less than the rejection threshold, the span is not sampled.
The threshold value 0
indicates that no spans are being rejected, corresponding with 100% sampling.
For example, the following TraceState value identifies a trace with 100% sampling:
tracestate: ot=th:0
To calculate sampling probability from the rejection threshold, define a constant MaxAdjustedCount
equal to 2^56, the number of distinct 56-bit values.
The sampling probability is defined:
Probability = (MaxAdjustedCount - Threshold) / MaxAdjustedCount
Threshold can be calculated from Probability:
Threshold = MaxAdjustedCount * (1 - Probability)
In sampling, the term adjusted count refers to the effective number of items represented by a sampled item of telemetry. The adjusted count of a span is the inverse of its sampling probability and can be derived from the threshold as follows.
AdjustedCount = MaxAdjustedCount / (MaxAdjustedCount - Threshold)
For example, here is a W3C TraceState value including an OpenTelemetry sampling threshold value:
tracestate: ot=th:c
This corresponds with 25% sampling probability, as follows:
- The hexadecimal value
c
is extended toc0000000000000
for 56 bits - The rejection threshold is
0xc0000000000000 / 0x100000000000000
which is 75% - The sampling probability is 25%.
The OpenTelemetry TraceState rv
sub-key defines an alternative source of randomness called the explicit randomness value.
Values of rv
MUST be exactly 14 lower-case hexadecimal digits:
The explicit randomness value is meant to be used instead of extracting randomness from TraceIDs, therefore it contains the same number of bits as W3C Trace Context Level 2 recommends for TraceIDs.
Lowercase hexadecimal digits are specified to enable direct lexicographical comparison between a sampling threshold and either the TraceID (as it appears in the traceparent
header) or the explicit randomness value (as it appears in the tracestate
header).
Explicit randomness values are meant to propagate through span contexts unmodified. Explicit randomness values SHOULD NOT be erased from the OpenTelemetry TraceState or modified once associated with a new TraceID, so that sampling decisions made using the explicit randomness value are consistent across signals.
For example, here is a W3C TraceState value including an OpenTelemetry explicit randomness value:
tracestate: ot=rv:6e6d1a75832a2f
This corresponds with the explicit randomness value, an unsigned integer value, of 0x6e6d1a75832a2f. This randomness value is meant to be used instead of the least-significant 56 bits of the TraceID. In this example, the 56-bit fraction (i.e., 0x6e6d1a75832a2f / 0x100000000000000 = 43.1%) supports making a consistent positive sampling decision at probabilities ranging from 56.9% through 100% (i.e., rejection threshold values 0x6e6d1a75832a2f through 0), the same as for a hexadecimal TraceID ending in 6e6d1a75832a2f without explicit randomness value.