问题描述
我正在尝试在一个类库项目中设置和使用application insights。在Visual Studio中进行调试时,我希望在脱机模式下使用它。
遵循以下几个指南后,我得到了以下结论:
(在Engine.cs的构造函数中-我的lib的‘main’类)
_telemetryClient = new TelemetryClient();
// Set session data:
_telemetryClient.Context.User.Id = Environment.UserName;
_telemetryClient.Context.Session.Id = Guid.NewGuid().ToString();
_telemetryClient.Context.Device.OperatingSystem = Environment.OSVersion.ToString();
然后在类的Main方法中:
var metrics = new Dictionary<string, double>();
var properties = new Dictionary<string, string>();
try
{
// Do stuff and track metrics code...
telemetryClient?.TrackEvent("Some Event", properties, metrics);
_telemetryClient?.Flush();
System.Threading.Thread.Sleep(1000);
}
catch (Exception exception)
{
_telemetryClient?.TrackException(exception, properties, metrics);
_telemetryClient?.Flush();
throw;
}
由于我希望在使用库的调用代码中配置日志记录(如Azure键等),因此此项目没有其他配置,也没有应用程序insights.config。
当我在VS中调试时,在选择了选择应用程序洞察资源‘->最后一个调试会话后,’应用程序洞察搜索没有数据。
推荐答案
为了让VS知道您的应用程序正在使用应用程序洞察,并让调试器监视AI数据,您需要在作为启动项目的项目内有一个Applationinsights.config文件(即使该文件基本上是空的,其中没有iKey)。
当调试器启动时,我们查看启动的调试器是否是我们识别的调试器类型,和启动项目是否有AI配置。如果我们没有检测到AI,AI服务将停止监视调试器,以防止它在没有AI的项目中无缘无故地减慢速度。
所以只需在启动项目中添加一个ApplicationInsights.config
文件,即此内容:
<?xml version="1.0" encoding="utf-8"?>
<ApplicationInsights xmlns="http://schemas.microsoft.com/ApplicationInsights/2013/Settings">
<!-- this file should NOT be set to copy output, it is here to allow the AI tools in Visual Studio to watch this project when debugging -->
</ApplicationInsights>
并在项目设置中将文件设置为"不复制"。它只需要在启动项目中存在,而不是在项目输出中。因为文件不会复制到输出目录,所以AI SDK不会加载该文件,并且使用您在代码中配置TelemetryClient
时使用的任何设置。
此外,如果您仅使用AI进行调试时间,我非常确定您不需要Flush
调用,我相信在调试模式下,我们查找的输出是在记录遥测时写入的,而不是在刷新调用发生时写入的。
如果上述操作正常,则在调试时,即使调试搜索仅显示最近250个事件,Application Insights工具栏按钮也应显示经过的事件数。
这篇关于Visual Studio中类库的应用程序洞察的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!