io.opentelemetry.trace.spi.TracerProviderFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Show all versions of lightstep-opentelemetry-auto-exporter Show documentation
Lightstep OpenTelemetry Auto Exporter
The newest version!
/*
* Copyright 2019, OpenTelemetry Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.opentelemetry.trace.spi;
import io.opentelemetry.trace.TracerProvider;
import javax.annotation.concurrent.ThreadSafe;
/**
* TracerProviderFactory is a service provider for a {@link TracerProvider}. Fully qualified class
* name of the implementation should be registered in {@code
* META-INF/services/io.opentelemetry.trace.spi.TracerProviderFactory}.
*
* A specific implementation can be selected by a system property {@code
* io.opentelemetry.trace.spi.TracerProviderFactory} with value of fully qualified class name.
*
* @see io.opentelemetry.OpenTelemetry
*/
@ThreadSafe
public interface TracerProviderFactory {
/**
* Creates a new TracerProvider.
*
* @return a new TracerProvider.
* @since 0.1.0
*/
TracerProvider create();
}