我目前正在使用在 nlog.config 文件中配置的 NLog 登录到 Application Insights。我没有在IncludeScopes
任何地方设置(默认情况下是这样)。
我正在尝试使用范围记录自定义属性。它在登录到文件或控制台时有效,但在登录到 Application Insights customDimensions 时无效。
这就是我记录范围的方式:
using (_logger.BeginScope(new Dictionary<string, object> { ["ActivityId"] = Guid.NewGuid()})
{
_logger.LogInformation("Logging from with scope");
}
这是 nlog.config 文件:
<target name="applicationInsights" xsi:type="ApplicationInsightsTarget" >
<instrumentationKey>8d9f67d5-fe36-45cf-935f-2f87bb240b12</instrumentationKey>
<!-- Only required if not using ApplicationInsights.config -->
<contextproperty name="threadId" layout="${threadid}" />
<contextproperty name="processName" layout="${processname}" />
<!-- Can be repeated with more context -->
</target>
不幸的是,当我查看 Application Insights 中的 customDimensions 时,我没有看到 ActivityId。
我在 Azure 中运行我的控制台应用程序,所以注册了一个工作服务(处理消息),如下所示:
services.AddHostedService<PositionMessageProcessor>()
我需要做什么才能获得日志记录范围以在 Application Insights 中记录我的 ActivityId?
更新
我已经设法通过将 ActivityId 添加为特定的contextProperty
. 我真的不想每次BeginScope(...)
使用不同的属性调用时都必须更新配置文件。
有没有一种通用的方法让它适用于所有范围属性?