diff --git a/consistent-sampling/README.md b/consistent-sampling/README.md index 49f4c0565..4f67765ac 100644 --- a/consistent-sampling/README.md +++ b/consistent-sampling/README.md @@ -5,7 +5,7 @@ There are two major components included here. ## Original proposal implementation The original specification for consistent probability sampling is defined by - + and . 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. @@ -14,18 +14,18 @@ The implementation of this proposal is contained by the package `io/opentelemetr * **ConsistentSampler**: abstract base class of all consistent sampler implementations below * **ConsistentAlwaysOffSampler**: - see + see * **ConsistentAlwaysOnSampler**: - see + see * **ConsistentComposedAndSampler**: allows combining two consistent samplers and samples when both samplers would sample * **ConsistentComposedOrSampler**: allows combining two consistent sampler and samples when at least one of both samplers would sample, - see + see * **ConsistentParentBasedSampler**: - see + see * **ConsistentProbabilityBasedSampler**: - see + see * **ConsistentRateLimitingSampler**: a rate limiting sampler based on exponential smoothing that dynamically adjusts the sampling probability based on the estimated rate of spans occurring to satisfy a given rate of sampled spans