Spring Cloud Sleuth无法生成spanID

时间:2019-03-13 10:07:56

标签: spring spring-boot spring-cloud-sleuth spring-logback

有必要为所有进入控制台日志的对象生成一个span-id,但是不幸的是,没有生成span-id:

2019-03-13 12:35:27.116  INFO [core.data,,,] 13304 --- [           main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@1fd386c3: startup date [Wed Mar 13 12:35:27 MSK 2019]; root of context hierarchy
2019-03-13 12:35:27.268  INFO [core.data,,,] 13304 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : JSR-330 'javax.inject.Inject' annotation found and supported for autowiring
2019-03-13 12:35:27.298  INFO [core.data,,,] 13304 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'configurationPropertiesRebinderAutoConfiguration' of type [org.springframework.cloud.autoconfigure.ConfigurationPropertiesRebinderAutoConfiguration$$EnhancerBySpringCGLIB$$66207a2f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)

2019-03-13 14:58:43,737+0300 p=INFO l=org.springframework.boot.web.servlet.FilterRegistrationBean trace-id= span-id= Mapping filter: 'characterEncodingFilter' to: [/*]
2019-03-13 14:58:43,737+0300 p=INFO l=org.springframework.boot.web.servlet.FilterRegistrationBean trace-id= span-id= Mapping filter: 'webMvcMetricsFilter' to: [/*]
2019-03-13 14:58:43,738+0300 p=INFO l=org.springframework.boot.web.servlet.FilterRegistrationBean trace-id= span-id= Mapping filter: 'unauthorizedLogbookFilter' to: [/*]

application.yml

    logging:
      config: classpath:config/logging/logback.xml
    pattern:
      console: '%d{"yyyy-MM-dd HH:mm:ss,SSSZ"} %clr(p=%level) %clr(t=%t){yellow} %clr(l=%logger){magenta} %clr(trace-id=%X{X-B3-TraceId:-}){blue} %clr(span-id=%X{X-B3-SpanId:-}){cyan} %msg%n'

      level:
        org.hibernate: info
        org.springframework: info

logback.xml

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
  <!--spring defaults-->
  <include 
    resource="org/springframework/boot/logging/logback/defaults.xml"/>
  <include resource="org/springframework/boot/logging/logback/console- 
appender.xml"/>
<!--custom configurations-->
<include resource="config/logging/file-appender.xml"/>

<!-- level configurations-->
<root level="INFO">
    <appender-ref ref="CONSOLE"/>
    <appender-ref ref="FILE"/>
</root>

span-id的生成发生在显式调用的日志记录方法上

Logger log = loggerFactory().getLogger(this.class);
public void method(){ log.info("test"); }

2 个答案:

答案 0 :(得分:0)

不必为进入控制台日志的所有内容生成span-id。点击您的API,然后您可以在控制台的日志中看到 span-id trace-id

答案 1 :(得分:0)

首先创建一个Rest Api并向其发出api请求(如果尚未完成)。 如果您使用的是Restemplate,请尝试创建RestTemplate bean。

还将日志记录级别设置为调试

logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG