Spring-cloud-sleuth 异步方法

发布于 2025-01-12 17:13:16 字数 271 浏览 0 评论 0原文

我必须向方法添加 @Async 注释,以便 Sleuth 可以生成跨度 id 和跟踪 id。问题是我需要与调用方相同的跟踪 ID,但这是另一个。

main log: INFO [label-service,**a3a1f1db46aecf7a**,**a3a1f1db46aecf7a**]
async log: INFO [label-service,**b819bd0e67ee86c4**,b819bd0e67ee86c4]

我需要 ** 中的 id 相同。

I have to add @Async annotation to method so Sleuth could generate span id and trace id. The problem is that it i need the same trace id as from the call side, but it is another.

main log: INFO [label-service,**a3a1f1db46aecf7a**,**a3a1f1db46aecf7a**]
async log: INFO [label-service,**b819bd0e67ee86c4**,b819bd0e67ee86c4]

I need ids in ** to be the same.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

路还长,别太狂 2025-01-19 17:13:17

您必须通过将 spring.sleuth.async.enabled 的值设置为 true 来启用此行为。

You will have to enable this behavior by setting the value of spring.sleuth.async.enabled to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文