io.micronaut.tracing.instrument.util.OpenTracingInvocationInstrumenter Maven / Gradle / Ivy
/*
* Copyright 2017-2020 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
*
* 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.micronaut.tracing.instrument.util;
import io.micronaut.context.annotation.Requires;
import io.micronaut.core.annotation.Internal;
import io.micronaut.scheduling.instrument.InvocationInstrumenter;
import io.micronaut.scheduling.instrument.ReactiveInvocationInstrumenterFactory;
import io.opentracing.Scope;
import io.opentracing.Span;
import io.opentracing.Tracer;
import javax.inject.Singleton;
/**
* Tracing invocation instrument for OpenTracing.
*
* @author graemerocher
* @author dstepanov
* @since 1.0
*/
@Singleton
@Requires(beans = Tracer.class)
@Requires(missingBeans = TracingInvocationInstrumenterFactory.class)
@Internal
public class OpenTracingInvocationInstrumenter implements TracingInvocationInstrumenterFactory, ReactiveInvocationInstrumenterFactory {
private final Tracer tracer;
/**
* Create a tracing invocation instrumenter.
*
* @param tracer invocation tracer
*/
protected OpenTracingInvocationInstrumenter(Tracer tracer) {
this.tracer = tracer;
}
@Override
public InvocationInstrumenter newReactiveInvocationInstrumenter() {
return newTracingInvocationInstrumenter();
}
@Override
public InvocationInstrumenter newTracingInvocationInstrumenter() {
final Span activeSpan = tracer.activeSpan();
if (activeSpan != null) {
return () -> {
Scope activeScope = tracer.scopeManager().activate(activeSpan);
return cleanup -> activeScope.close();
};
}
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy