Changed the default sampler rate to 10

This commit is contained in:
Marcin Grzejszczak
2019-07-31 07:59:29 +02:00
committed by GitHub
parent d8e68b1af4
commit 69248fecc6

View File

@@ -45,7 +45,7 @@ public class SamplerProperties {
* (named Reservoir) for this purpose. Brave has taken the same approach via the
* {@link brave.sampler.RateLimitingSampler}.
*/
private Integer rate = 1000;
private Integer rate = 10;
public Float getProbability() {
return this.probability;