![JAR search and dependency download from the Maven repository](/logo.png)
com.github.frtu.logs.config.LogConfigTracingOnly Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of logger-opentelemetry Show documentation
Show all versions of logger-opentelemetry Show documentation
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.core.metadata.DefaultApplicationMetadataFactory;
import com.github.frtu.logs.tracing.core.TraceHelper;
import com.github.frtu.logs.tracing.core.jaeger.JaegerConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
/**
* Enable {@link TraceHelper}, {@link JaegerConfiguration} and {@link DefaultApplicationMetadataFactory}.
*
* @author Frédéric TU
* @since 1.0.2
*/
@Configuration
@Import(DefaultApplicationMetadataFactory.class)
@ComponentScan(basePackageClasses = {TraceHelper.class})
public class LogConfigTracingOnly {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy