All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.micrometer.tracing.otel.bridge.EventPublishingContextWrapper Maven / Gradle / Ivy

/**
 * 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.otel.bridge;

import io.micrometer.common.lang.Nullable;
import io.opentelemetry.api.baggage.Baggage;
import io.opentelemetry.api.trace.Span;
import io.opentelemetry.context.Context;
import io.opentelemetry.context.ContextStorage;

import java.util.function.Function;

/**
 * A context wrapper that publishes events when scope is being attached, closed or
 * restored.
 *
 * @since 1.0.0
 */
public final class EventPublishingContextWrapper implements Function {

    private final OtelTracer.EventPublisher publisher;

    /**
     * Creates a new instance of {@link EventPublishingContextWrapper}.
     * @param publisher an event publisher
     */
    public EventPublishingContextWrapper(OtelTracer.EventPublisher publisher) {
        this.publisher = publisher;
    }

    @Override
    public ContextStorage apply(ContextStorage contextStorage) {
        return new ContextStorage() {
            @Override
            public io.opentelemetry.context.Scope attach(Context context) {
                Context currentContext = Context.current();
                io.opentelemetry.context.Scope scope = contextStorage.attach(context);
                if (scope == io.opentelemetry.context.Scope.noop()) {
                    return scope;
                }
                publisher.publishEvent(new ScopeAttachedEvent(context));
                return () -> {
                    scope.close();
                    publisher.publishEvent(new ScopeClosedEvent());
                    publisher.publishEvent(new ScopeRestoredEvent(currentContext));
                };
            }

            @Override
            public Context current() {
                return contextStorage.current();
            }
        };
    }

    /**
     * An event with context attached.
     *
     * @since 1.0.0
     */
    public static class ScopeAttachedEvent {

        /**
         * Context corresponding to the attached scope. Might be {@code null}.
         */
        final Context context;

        /**
         * Create a new event.
         * @param context corresponding otel context
         */
        public ScopeAttachedEvent(@Nullable Context context) {
            this.context = context;
        }

        public Span getSpan() {
            return Span.fromContextOrNull(context);
        }

        public Baggage getBaggage() {
            return Baggage.fromContextOrNull(context);
        }

        @Override
        public String toString() {
            return "ScopeAttached{context: [span: " + getSpan() + "] [baggage: " + getBaggage() + "]}";
        }

    }

    /**
     * Event related to closing a scope.
     */
    public static class ScopeClosedEvent {

    }

    /**
     * Event related to restoring a scope.
     */
    public static class ScopeRestoredEvent {

        /**
         * {@link Context} corresponding to the scope being restored. Might be
         * {@code null}.
         */
        final Context context;

        /**
         * Create a new event.
         * @param context corresponding otel context
         */
        public ScopeRestoredEvent(@Nullable Context context) {
            this.context = context;
        }

        public Span getSpan() {
            return Span.fromContextOrNull(context);
        }

        public Baggage getBaggage() {
            return Baggage.fromContextOrNull(context);
        }

        @Override
        public String toString() {
            return "ScopeRestored{context: [span: " + getSpan() + "] [baggage: " + getBaggage() + "]}";
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy