Package io.opentelemetry.api.trace
Interface TracerProvider
@ThreadSafe
public interface TracerProvider
A registry for creating named
Tracers. The name Provider is for consistency with *
other languages and it is NOT loaded using reflection.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionGets or creates a named tracer instance.Gets or creates a named and versioned tracer instance.static TracerProvidernoop()Returns a no-opTracerProviderwhich only creates no-opSpans which do not record nor are emitted.default TracerBuildertracerBuilder(String instrumentationName) Creates a TracerBuilder for a namedTracerinstance.
-
Method Details
-
noop
Returns a no-opTracerProviderwhich only creates no-opSpans which do not record nor are emitted. -
get
Gets or creates a named tracer instance.- Parameters:
instrumentationName- The name of the instrumentation library, not the name of the instrument*ed* library (e.g., "io.opentelemetry.contrib.mongodb"). Must not be null. If the instrumented library is providing its own instrumentation, this should match the library name.- Returns:
- a tracer instance.
-
get
Gets or creates a named and versioned tracer instance.- Parameters:
instrumentationName- The name of the instrumentation library, not the name of the instrument*ed* library (e.g., "io.opentelemetry.contrib.mongodb"). Must not be null. If the instrumented library is providing its own instrumentation, this should match the library name.instrumentationVersion- The version of the instrumentation library (e.g., "1.0.0").- Returns:
- a tracer instance.
-
tracerBuilder
Creates a TracerBuilder for a namedTracerinstance.- Parameters:
instrumentationName- The name of the instrumentation library, not the name of the instrument*ed* library.- Returns:
- a TracerBuilder instance.
- Since:
- 1.4.0
-