我试图使用 Microsoft.ApplicationInsights,并通过 nuget 安装了它。但是当我尝试使用
_telemetryClient.TrackException(ex, new Dictionary<string, string>
{
{"Id", id.ToString()}
}, null);
我收到一条错误消息: InstrumentationKey 不能为空。
我已经浏览了URL,但在我的 VS 中看不到任何可用于配置文件的更新菜单(注意:我使用的是 VS 2012 Pro)。
我还尝试使用检测密钥更新配置文件
<ComponentID>{Instrumentation Key}</ComponentID>
但是,那也没有用。
谢谢。