com.nike.wingtips.sampling.SampleAllTheThingsStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wingtips-core Show documentation
Show all versions of wingtips-core Show documentation
Wingtips module wingtips-core
The newest version!
package com.nike.wingtips.sampling;
/**
* Simple {@link RootSpanSamplingStrategy} that always returns true, indicating that every trace should be sampled.
*
* @author Nic Munroe
*/
public class SampleAllTheThingsStrategy implements RootSpanSamplingStrategy {
@Override
public boolean isNextRootSpanSampleable() {
return true;
}
}