gpt4 book ai didi

c# - 如何在 .net core 3.1 应用程序中访问 W3C TraceContext header ?

转载 作者:行者123 更新时间:2023-12-05 02:08:05 25 4
gpt4 key购买 nike

这些来源(microsoft docsmicrosoft dev blog)声明为了使用新的W3C Trace Context Headers在 .net 3.0+ 核心应用程序中不需要额外的配置。但是,我们不会从通过 ServiceClient 发出的任何请求中接收到 traceparent 或 tracestate。

什么是正确的设置过程?你们是如何访问分布式跟踪 ID 的?如果可能的话,我们更愿意自动公开这些值,而无需向所有现有服务添加大量代码。

非常感谢您!

PS:这是我的第一个问题;如果您需要更多信息,请告诉我

最佳答案

.net 5 中的 System.Diagnostics.Activity Id 已经配置为 w3c standard .这意味着所有 Actions 都可以通过 traceparent id 格式进行识别,并且 traceparenttracestate 都将被发送到http 请求 header 中的下游依赖项。正如您所说,不需要额外的配置,但在 .net 3 中是不同的,默认的 id 格式是 Hierarchical 格式,它作为 HeaderRequestId 向下游传播。要查看 Activity Id 格式,请将 System.Diagnostics 导入到您的类中并键入:Console.WriteLine(Activity.Current.Id),您将看到如下格式这个:|fab6082c-46326cca135ffe48.1.。要将其更改为 .net 3 中的 w3c 格式,需要在您的主要方法中强制使用它:

public static void Main(string[] args)
{
Activity.DefaultIdFormat = ActivityIdFormat.W3C;
Activity.ForceDefaultIdFormat = true;

CreateHostBuilder(args).Build().Run();
}

然后,您会看到 w3c 的格式以及 traceparenttracestate 字段已传播到 header 中的下游依赖项。

如果你想发送消息抛出代理,使用 application-properties 部分以防 AMQP calls .您会发现这两种情况的一些示例 herehere .

关于c# - 如何在 .net core 3.1 应用程序中访问 W3C TraceContext header ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61251914/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com