All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nike.wingtips.sampling.SampleAllTheThingsStrategy Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy