I have created Application Insights resource in my azure account. After, I added the instrument key into my windows store app. I have configured Application insights for visual studio 2013. Source code as below,
sealed partial class App : Application
{
public App()
{
InitializeComponent();
WindowsAppInitializer.InitializeAsync("XXXXXX-XXXXXX");
}
}
I want to track the crashes of my application. But crashes didn't get logged inside the portal. Details of the Users, Page Views, Sessions are shown. Apart from adding the instrument key, any other thing should I want to do? Please help.