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

org.apache.cxf.tracing.micrometer.ObservationTracerContext Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
/**
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you 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 org.apache.cxf.tracing.micrometer;

import java.util.concurrent.Callable;

import org.apache.cxf.tracing.Traceable;
import org.apache.cxf.tracing.TracerContext;

import io.micrometer.observation.Observation;
import io.micrometer.observation.ObservationRegistry;

public class ObservationTracerContext implements TracerContext {
    private final ObservationRegistry observationRegistry;
    private final Observation continuationObservation;

    public ObservationTracerContext(final ObservationRegistry observationRegistry) {
        this(observationRegistry, null);
    }

    public ObservationTracerContext(final ObservationRegistry observationRegistry, final
    Observation continuationObservation) {
        this.observationRegistry = observationRegistry;
        this.continuationObservation = continuationObservation;
    }

    @Override
    @SuppressWarnings("unchecked")
    public ObservationScope startSpan(final String description) {
        return new ObservationScope(Observation.start(description, this.observationRegistry));
    }

    @Override
    public  T continueSpan(final Traceable traceable) throws Exception {
        Observation.Scope scope = null;

        if (observationRegistry.getCurrentObservation() == null && continuationObservation != null) {
            scope = continuationObservation.openScope();
        }

        try { //NOPMD
            return traceable.call(new ObservationTracerContext(observationRegistry));
        } finally {
            if (continuationObservation != null && scope != null) {
                scope.close();
            }
        }
    }

    @Override
    public  Callable wrap(final String description, final Traceable traceable) {
        final Callable callable = new Callable() {
            @Override
            public T call() throws Exception {
                return traceable.call(new ObservationTracerContext(observationRegistry));
            }
        };

        // Carry over parent from the current thread
        final Observation parent = this.observationRegistry.getCurrentObservation();
        return () -> {
            try (ObservationScope span = newOrChildSpan(description, parent)) {
                return callable.call();
            }
        };
    }

    @Override
    public void annotate(String key, String value) {
        final Observation current = observationRegistry.getCurrentObservation();
        if (current != null) {
            current.highCardinalityKeyValue(key, value);
        }
    }

    @Override
    public void timeline(String message) {
        final Observation current = observationRegistry.getCurrentObservation();
        if (current != null) {
            current.event(() -> message);
        }
    }

    @SuppressWarnings("unchecked")
    @Override
    public  T unwrap(final Class clazz) {
        if (ObservationRegistry.class.equals(clazz)) {
            return (T) observationRegistry;
        } else {
            throw new IllegalArgumentException("The class is '" + clazz
                                               + "'not supported and cannot be unwrapped");
        }
    }

    private ObservationScope newOrChildSpan(final String description, final Observation parent) {
        if (parent == null) {
            return new ObservationScope(Observation.start(description, observationRegistry));
        }
        return new ObservationScope(Observation.createNotStarted(description, observationRegistry)
                                               .parentObservation(parent).start());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy