blob: 6c5f875168b3c2b1d7f3f875c6324860c0ba2aa8 [file] [log] [blame]
package sample.camel;
import co.elastic.apm.opentracing.ElasticApmTracer;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class CamelConfig {
@Bean
public ElasticApmTracer tracer() {
return new ElasticApmTracer();
}
@Bean
public CounterBean counterBean() {
return new CounterBean();
}
}