| 78 | } |
| 79 | |
| 80 | type adaptiveSampler struct { |
| 81 | expected uint64 |
| 82 | measured, skipped, sampled uint64 |
| 83 | lost uint64 |
| 84 | info bool |
| 85 | debug bool |
| 86 | |
| 87 | // Probabilistic part |
| 88 | curr int |
| 89 | lim int |
| 90 | } |
| 91 | |
| 92 | var _ Sampler = (*adaptiveSampler)(nil) |
| 93 |
nothing calls this directly
no outgoing calls
no test coverage detected