com.taotao.cloud.tracing.skywalking.SkyWalkingTracingAutoConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taotao-cloud-starter-tracing-skywalking Show documentation
Show all versions of taotao-cloud-starter-tracing-skywalking Show documentation
taotao-cloud-starter-tracing-skywalking
/*
* Copyright (c) 2020-2030, Shuigedeng ([email protected] & https://blog.taotaocloud.top/).
*
* 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 com.taotao.cloud.tracing.skywalking;
import com.taotao.cloud.common.utils.log.LogUtils;
import com.taotao.cloud.tracing.skywalking.config.TraceInterceptorConfigurer;
import jakarta.annotation.PostConstruct;
import org.springframework.boot.autoconfigure.AutoConfiguration;
import org.springframework.context.annotation.Bean;
@AutoConfiguration
public class SkyWalkingTracingAutoConfiguration {
@PostConstruct
public void init() {
LogUtils.info("Load Auto Configuration : {}", this.getClass().getName());
}
@Bean
public ClusterTrace skyWalkingClusterTrace() {
return new SkyWalkingClusterTrace();
}
@Bean
public TraceInterceptorConfigurer traceInterceptorConfigurer(ClusterTrace clusterTrace) {
return new TraceInterceptorConfigurer(clusterTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy