I own one VSO account, and am a member of multiple other accounts (in a single login). When I install Application Insights into a web project, I'm not given an option of which account to use, and it installs to the wrong account.
2 回答
在 Application Insights 中更改项目很容易,但很难弄清楚,除非您知道“诀窍”。这是一个两步的过程。首先,您需要获取隐藏在 Application Insights 门户中的三个密钥,然后您需要将它们应用到项目中的文件中。
要更改您的帐户或应用程序,只需转到您要使用的项目的 AppInsights 仪表板并单击页面右上角的齿轮(URL 为:)<YourVSOnlinePortalName>.visualstudio.com/_appanalytics/_admin#application=<AppInsightsProjectName>
,然后单击“获取配置密钥和下载”。这包含项目所需的所有密钥。复制以下三个值:
Account ID
(这是您的 Application Insights 帐户的 ID。)
Primary instrumentation key
(这会识别您的数据,因此其他人无法向 Application Insights 发送虚假数据。)
Windows Phone 8 SDK instrumentation key
(靠近页面底部)。无论您的项目实际上是什么类型的应用程序,都可以使用此键。即,即使它是一个网页,您仍然需要这个值。(这是 Application Insights 帐户中特定应用程序的 ID。)
现在您已拥有这三个键,请在 Visual Studio 中转到您的项目并打开 ApplicationInsights.config文件。
将 Account ID 粘贴到<AccountID>
元素中,将 LicenseKey粘贴到元素中,<LicenseKey>
并将最后一个值(检测密钥)粘贴到<ComponentID>
元素中。
启动您的应用程序,您应该开始查看来自正确项目的数据!
"Application Insights Tools for Visual Studio" 1.3.1 发布于 2014 年 5 月 30 日,允许您选择 VSO 帐户...
我刚刚升级了它(从 1.3.0 开始),现在它允许我选择将洞察数据发送到哪个帐户。