Reputation: 615
I added Application Insights on Visual Studio Online. Also I have a website running on Azure which have a Application Insights on Azure. Now I am receiving page view info in VS Online, and telemetry info in Azure. How can I join them together? What is the difference?
Update:
Here is the complete answer.
Upvotes: 0
Views: 512
Reputation: 615
I asked it on MSDN Forum and got the complete answer. Here it is.
Application Insights for VSO is an older version of Application Insights. At this point all new Application Insights account are created in Azure portal and going forward Application Insights for VSO will not be supported.
From what you described you are getting your telemetry in Azure portal (by telemetry I am assuming your page request data), but your page views are coming to VSO. The reason is that there's JavaScript on your website that is sending data to your VSO account. My suggestion was to instead insert JavaScript snippet which would be sending it to your Azure account, so you can view all your telemetry data there.
Upvotes: 4
Reputation: 131
You need to update the script in your web pages. It's probably in a master page like Views\Shared_Layout. You'll find it in the section. Delete the old one and insert the new one.
You get the new one by going to App Insights - click Quick Start and look under the second step, where it says "Get the script..."
See http://azure.microsoft.com/en-gb/documentation/articles/app-insights-web-track-usage/
Upvotes: 3