1.参考资料
gitup地址:https://github.com/opentracing/opentracing-java
官方文档:https://opentracing.io/guides/java/
2.介绍
用于处理分布式日志跟踪,并且该库是适用于java的
3.在java中的使用
1.引入依赖
<dependency>
<groupId>io.jaegertracing</groupId>
<artifactId>jaeger-core</artifactId>
<version>0.32.0</version>
</dependency>
2.编写测试demo
网友评论