Skip to content

Commit 64e4ad6

Browse files
authored
[consistent-sampling] Fix spec urls (#2358)
1 parent b68a651 commit 64e4ad6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

consistent-sampling/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ There are two major components included here.
55
## Original proposal implementation
66

77
The original specification for consistent probability sampling is defined by
8-
<https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md>
8+
<https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md>
99
and <https://github.com/open-telemetry/opentelemetry-specification/pull/2047>.
1010
It supports sampling probabilities that are power of 2 (1, 1/2, 1/4, ...), and uses 8-bit `r-value` and 8-bit `p-value` in tracestate.
1111

@@ -14,18 +14,18 @@ The implementation of this proposal is contained by the package `io/opentelemetr
1414
* **ConsistentSampler**:
1515
abstract base class of all consistent sampler implementations below
1616
* **ConsistentAlwaysOffSampler**:
17-
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md#always-off-sampler>
17+
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md#always-off-sampler>
1818
* **ConsistentAlwaysOnSampler**:
19-
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md#always-on-consistent-probability-sampler>
19+
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md#always-on-consistent-probability-sampler>
2020
* **ConsistentComposedAndSampler**:
2121
allows combining two consistent samplers and samples when both samplers would sample
2222
* **ConsistentComposedOrSampler**:
2323
allows combining two consistent sampler and samples when at least one of both samplers would sample,
24-
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md#requirement-combine-multiple-consistent-probability-samplers-using-the-minimum-p-value>
24+
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md#requirement-combine-multiple-consistent-probability-samplers-using-the-minimum-p-value>
2525
* **ConsistentParentBasedSampler**:
26-
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md#parentconsistentprobabilitybased-sampler>
26+
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md#parentconsistentprobabilitybased-sampler>
2727
* **ConsistentProbabilityBasedSampler**:
28-
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/tracestate-probability-sampling-experimental.md#consistentprobabilitybased-sampler>
28+
see <https://github.com/open-telemetry/opentelemetry-specification/blob/main/oteps/trace/4673-experimental-probability-sampling.md#consistentprobabilitybased-sampler>
2929
* **ConsistentRateLimitingSampler**:
3030
a rate limiting sampler based on exponential smoothing that dynamically adjusts the sampling
3131
probability based on the estimated rate of spans occurring to satisfy a given rate of sampled spans

0 commit comments

Comments
 (0)