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

com.datadoghq.trace.sampling.AllSampler Maven / Gradle / Ivy

There is a newer version: 0.2.12
Show newest version
package com.datadoghq.trace.sampling;

import com.datadoghq.trace.DDBaseSpan;

/** Sampler that always says yes... */
public class AllSampler extends AbstractSampler {

  @Override
  public boolean doSample(DDBaseSpan span) {
    return true;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy