| Interface | Description |
|---|---|
| DeclarativeSampler.RateForMethod<M> |
| Class | Description |
|---|---|
| BoundarySampler |
This sampler is appropriate for high-traffic instrumentation (ex edge web servers that each
receive >100K requests) who provision random trace ids, and make the sampling decision only once.
|
| CountingSampler |
This sampler is appropriate for low-traffic instrumentation (ex servers that each receive <100K
requests), or those who do not provision random trace ids.
|
| DeclarativeSampler<M> |
This is an implementation of how to decide whether to trace a request using annotations on a java
method.
|
| ParameterizedSampler<P> |
This is an implementation of how to decide whether to trace a request using ordered rules.
|
| ParameterizedSampler.Rule<P> | |
| Sampler |
Sampler is responsible for deciding if a particular trace should be "sampled", i.e.
|
Copyright © 2017 OpenZipkin. All rights reserved.