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

com.github.frtu.logs.config.LogConfigTracingAOP Maven / Gradle / Ivy

Go to download

log instrumentation with open telemetry library - refreshed from logger-opentracing-fluentd

The newest version!
package com.github.frtu.logs.config;

import com.github.frtu.logs.tracing.annotation.ExecutionSpanAspect;
import com.github.frtu.spring.conditional.commons.AopConditionalOnClass;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Conditional;
import org.springframework.context.annotation.Configuration;

/**
 * Enable {@link LogConfigTracingOnly} and {@link ExecutionSpanAspect}.
 *
 * @author Frédéric TU
 * @since 1.0.2
 */
@Configuration
@ComponentScan(basePackageClasses = {LogConfigTracingOnly.class, ExecutionSpanAspect.class})
@Conditional(value = AopConditionalOnClass.class)
public class LogConfigTracingAOP {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy