aspnetcore和applicationinsights.tracelistener

时间:2016-10-20 05:09:33

标签: asp.net-core system.diagnostics azure-application-insights

使用aspnetcore和/或任何.net核心应用程序时,是否可以使用应用程序洞察跟踪日志记录/搜索?

我能够添加applicationinsights.aspnetcore nuget,但它似乎没有跟踪日志记录的功能。

似乎tracelistener nuget包需要完整的.net。人们如何在dotnetcore代码上进行跟踪记录/搜索?

1 个答案:

答案 0 :(得分:0)

Application Insights ASP.NET Core nuget增加了自动跟踪Web应用程序中的请求和异常的功能。 但是,您可以使用Application Insights核心遥测API发送自定义遥测,例如跟踪或自定义事件。

请参阅core telemetry API documentation了解如何操作 - 特别是您需要使用TelemetryClient类的TrackTrace方法。

希望这有帮助,

阿萨夫