gpt4 book ai didi

Azure 应用程序见解和 NLog

转载 作者:行者123 更新时间:2023-12-01 12:29:15 26 4
gpt4 key购买 nike

如果我将 NLog 与 Azure Application Insights 适配器结合使用,如何发送属性?

当我在 VS 或 Azure 门户中浏览这些日志时,我希望能够对它们进行分组或过滤。

有没有办法给它们命名?或者传递一些属性或指标?

最佳答案

解决此问题时添加了自定义属性支持:https://github.com/Microsoft/ApplicationInsights-dotnet-logging/issues/5如果您检查此问题的拉取请求,您可以看到如何通过单元测试对其进行测试:

Logger aiLogger = this.CreateTargetWithGivenInstrumentationKey();
var eventInfo = new LogEventInfo(LogLevel.Trace, "TestLogger", "Hello!");
eventInfo.Properties["Name"] = "Value";
aiLogger.Log(eventInfo);

当您查看该跟踪消息的详细信息边栏选项卡时,您会在那里找到“名称”属性。

关于Azure 应用程序见解和 NLog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35949563/

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