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

datadog.trace.api.DoNotTrace Maven / Gradle / Ivy

There is a newer version: 1.42.2
Show newest version
package datadog.trace.api;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

/** Set this annotation to a method to mute tracing until its scope is closed */
@Retention(RUNTIME)
@Target(METHOD)
public @interface DoNotTrace {}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy