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

datadog.trace.api.sampling.PrioritySampling Maven / Gradle / Ivy

There is a newer version: 0.48.0-sfx8
Show newest version
package datadog.trace.api.sampling;

public class PrioritySampling {
  /**
   * Implementation detail of the client. will not be sent to the agent or propagated.
   *
   * 

Internal value used when the priority sampling flag has not been set on the span context. */ public static final int UNSET = Integer.MIN_VALUE; /** The sampler has decided to drop the trace. */ public static final int SAMPLER_DROP = 0; /** The sampler has decided to keep the trace. */ public static final int SAMPLER_KEEP = 1; /** The user has decided to drop the trace. */ public static final int USER_DROP = -1; /** The user has decided to keep the trace. */ public static final int USER_KEEP = 2; private PrioritySampling() {} }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy