io.micrometer.tracing.handler.DefaultTracingObservationHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micrometer-tracing Show documentation
Show all versions of micrometer-tracing Show documentation
Facade over tracing concepts
/**
* Copyright 2022 the original author or 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.micrometer.tracing.handler;
import io.micrometer.observation.Observation;
import io.micrometer.tracing.Span;
import io.micrometer.tracing.Tracer;
/**
* TracingRecordingListener that uses the Tracing API to record events.
*
* @author Marcin Grzejszczak
* @since 1.0.0
*/
public class DefaultTracingObservationHandler implements TracingObservationHandler {
private final Tracer tracer;
/**
* Creates a new instance of {@link DefaultTracingObservationHandler}.
* @param tracer the tracer to use to record events
*/
public DefaultTracingObservationHandler(Tracer tracer) {
this.tracer = tracer;
}
@Override
public void onStart(Observation.Context context) {
Span parentSpan = getParentSpan(context);
Span childSpan = parentSpan != null ? getTracer().nextSpan(parentSpan) : getTracer().nextSpan();
childSpan.start();
getTracingContext(context).setSpan(childSpan);
}
@Override
public void onStop(Observation.Context context) {
Span span = getRequiredSpan(context);
span.name(getSpanName(context));
tagSpan(context, span);
endSpan(context, span);
}
@Override
public Tracer getTracer() {
return this.tracer;
}
}