1
0
mirror of https://github.com/open-telemetry/opentelemetry-go.git synced 2025-01-01 22:09:57 +02:00

Fix typo in doc (#1949)

This commit is contained in:
Akash Suresh 2021-05-25 15:20:45 -04:00 committed by GitHub
parent acbb188201
commit 8603b9026c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ Other samplers include:
* `TraceIDRatioBased`, which will sample a fraction of traces, based on the fraction given to the sampler. Thus, if you set this to .5, half of traces will be sampled.
* `ParentBased`, which behaves differently based on the incoming sampling decision. In general, this will sample spans that have parents that were sampled, and will not sample spans whose parents were _not_ sampled.
When you're in production, you should consider using the `TraceIDRatioBased` sampler with the `ParentBased` samler.
When you're in production, you should consider using the `TraceIDRatioBased` sampler with the `ParentBased` sampler.
# Resources