我正在尝试在类库项目中设置和使用 application insights。我想在 Visual Studio 中调试时在离线模式下使用它。

在遵循了一些指南之后,我有了这个:

(在 Engine.cs 的构造函数中 - 我的库的“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();

然后在该类的主要方法中:
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 key 等),因此该项目没有其他配置,也没有 applicationinsights.config。

但是,当我在 VS 中对此进行调试时,在选择“选择 Application Insights 资源”-> 上次调试 session 后,“Application Insights 搜索”没有数据。

最佳答案

为了让 VS 知道您的应用程序正在使用应用程序洞察并让调试器监视 AI 数据,您需要在项目中拥有一个 applicationinsights.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 调用,我相信在 Debug模式下,我们查找的输出是在记录遥测时写入的,而不是在刷新时写入调用发生。

如果上述方法有效,则在调试时,Application Insights 工具栏按钮也应显示它所看到的事件数,即使调试搜索仅显示最后 250 个事件。

关于c# - Visual Studio 类库的应用洞察,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41464771/

10-17 02:04