io.micronaut.tracing.jaeger.JaegerTracerFactory Maven / Gradle / Ivy
/*
* Copyright 2017-2022 original 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
*
* https://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.micronaut.tracing.jaeger;
import io.jaegertracing.Configuration;
import io.jaegertracing.internal.JaegerTracer;
import io.jaegertracing.internal.MDCScopeManager;
import io.jaegertracing.spi.Reporter;
import io.jaegertracing.spi.Sampler;
import io.micronaut.context.annotation.Factory;
import io.micronaut.context.annotation.Primary;
import io.micronaut.context.annotation.Requires;
import io.micronaut.core.annotation.Nullable;
import io.opentracing.ScopeManager;
import io.opentracing.Tracer;
import io.opentracing.util.GlobalTracer;
import jakarta.annotation.PreDestroy;
import jakarta.inject.Inject;
import jakarta.inject.Singleton;
import java.io.Closeable;
/**
* Registers a Jaeger tracer based on the Jaeger configuration.
*
* @author graemerocher
* @since 1.0
*/
@Factory
@Requires(classes = JaegerTracer.Builder.class)
@Requires(beans = JaegerConfiguration.class)
public class JaegerTracerFactory implements Closeable {
private final JaegerConfiguration configuration;
private Reporter reporter;
private Sampler sampler;
private ScopeManager scopeManager = new MDCScopeManager.Builder().build();
/**
* @param configuration the configuration
*/
public JaegerTracerFactory(JaegerConfiguration configuration) {
this.configuration = configuration;
}
/**
* Sets a custom reporter.
*
* @param reporter the reporter
*/
@Inject
public void setReporter(@Nullable Reporter reporter) {
this.reporter = reporter;
}
/**
* Sets a custom sampler.
*
* @param sampler the sampler
*/
@Inject
public void setSampler(@Nullable Sampler sampler) {
this.sampler = sampler;
}
/**
* Overrides the default MDCScopeManager with a custom scope manager.
*
* @param scopeManager the scope manager
*/
@Inject
public void setScopeManager(@Nullable ScopeManager scopeManager) {
if (scopeManager != null) {
this.scopeManager = scopeManager;
}
}
/**
* The Jaeger configuration bean.
*
* @return the configuration
*/
@Singleton
@Primary
@Requires(classes = JaegerTracer.Builder.class)
Configuration jaegerConfiguration() {
return configuration.getConfiguration();
}
/**
* The Jaeger Tracer builder bean.
*
* @param configuration the configuration
* @return the builder
*/
@Singleton
@Primary
@Requires(classes = JaegerTracer.Builder.class)
JaegerTracer.Builder jaegerTracerBuilder(Configuration configuration) {
JaegerTracer.Builder tracerBuilder = resolveBuilder(configuration);
if (this.configuration.isExpandExceptionLogs()) {
tracerBuilder.withExpandExceptionLogs();
}
if (this.configuration.isZipkinSharedRpcSpan()) {
tracerBuilder.withZipkinSharedRpcSpan();
}
if (reporter != null) {
tracerBuilder.withReporter(reporter);
}
if (sampler != null) {
tracerBuilder.withSampler(sampler);
}
tracerBuilder.withScopeManager(scopeManager);
return tracerBuilder;
}
/**
* Adds a Jaeger-based Open Tracing {@code Tracer}.
*
* @param tracerBuilder the builder
* @return the tracer
*/
@Singleton
@Primary
@Requires(classes = JaegerTracer.Builder.class)
Tracer jaegerTracer(JaegerTracer.Builder tracerBuilder) {
Tracer tracer = tracerBuilder.build();
GlobalTracer.registerIfAbsent(tracer);
return tracer;
}
@Override
@PreDestroy
public void close() {
configuration.getConfiguration().closeTracer();
}
/**
* Override in subclass to customize.
*
* @param configuration the configuration
*/
@SuppressWarnings("WeakerAccess")
protected void customizeConfiguration(Configuration configuration) {
// no-op
}
private JaegerTracer.Builder resolveBuilder(Configuration configuration) {
customizeConfiguration(configuration);
return configuration.getTracerBuilder();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy