我的应用程序是基于spring-rabbitmq的应用程序(既不是spring-cloud也不是spring-boot),从一个队列接收请求并将响应发送到另一个队列。
我希望使用brave来跟踪系统,方法是在发送邮件之前注入Zipkin标头,并在收到邮件后立即提取Zipkin标头。
问题是在以下场景的第3步中,如何在发送消息之前获取span1?
场景:
step1, app -> mq (new created span1, root span, client)
step2, mq -> app (receive span1, server)
step3, app -> mq (**new created span2, child span of span1, client**)
step4, mq -> app (receive span2, server)
发送消息前的代码段:
try{
Span currentSpan = tracer.currentSpan();
Span newSpan = null;
if(currentSpan == null){
newSpan = tracer.newTrace();
}else{
newSpan = tracer.newChild(currentSpan.context());
}
Map<String, String> strHeaders = new HashMap<String, String>();
tracing.propagation().injector(Map<String, String>::put).inject(newSpan.context(),strHeaders);
messageProperties.setHeader("zipkin.brave.tracing.headers", strHeaders);
newSpan.name("send").kind(Kind.CLIENT).start().flush();
}catch(Exception e){
logger.warn("zipkin problem", e);
}
在上面的代码Span currentSpan = tracer.currentSpan();
中, currentSpan 始终为 null 。
收到消息后的代码段:
try{
Map<String, Object> msgHeaders = messageProperties.getHeaders();
Object headersObj = msgHeaders.get("zipkin.brave.tracing.headers");
Map<String, String> strHeaders = null;
if(headersObj != null){
strHeaders = (HashMap<String, String>)headersObj;
}
TraceContextOrSamplingFlags result = tracing.propagation().extractor(Map<String, String>::get).extract(strHeaders);
if(result.context() != null){
Span clientSpan = tracer.joinSpan(result.context());
clientSpan.name("receive").kind(Kind.SERVER).start().flush();
}
}catch(Exception e){
logger.warn("zipkin problem", e);
}
勇敢的配置代码:
@Configuration
public class BraveSpringConfiguration {
private static final Logger logger = LoggerFactory.getLogger(BraveSpringConfiguration.class);
/** Configuration for how to send spans to Zipkin */
@Bean
public Sender sender() {
logger.debug("okhttpsender");
return OkHttpSender.create("http://127.0.0.1:9411/api/v1/spans");
}
/** Configuration for how to buffer spans into messages for Zipkin */
@Bean
public Reporter<Span> reporter() {
logger.debug("asyncreporter");
return AsyncReporter.builder(sender()).build();
}
/** Controls aspects of tracing such as the name that shows up in the UI */
@Bean
public Tracing tracing() {
logger.debug("one tracing");
return Tracing.newBuilder()
.localServiceName("spring-rabbitmq-brave")
//// log4j2, import brave.context.log4j2.ThreadContextCurrentTraceContext;
//.currentTraceContext(ThreadContextCurrentTraceContext.create()) // puts trace IDs into logs
.currentTraceContext(MDCCurrentTraceContext.create()) // puts trace IDs into logs
.sampler(Sampler.ALWAYS_SAMPLE) // always sampler
.reporter(reporter())
.build();
}
/** Controls aspects of tracing such as the name that shows up in the UI */
@Bean
public Tracer tracer() {
logger.debug("one tracer");
return tracing().tracer();
}
}
以下是我的参考资料:
答案 0 :(得分:2)
问题解决了。 tracer.withSpanInScope(clientSpan)
可以完成这项工作。
请注意,在发送邮件之前尚未调用withSpanInScope(...)
。