I have an existing Azure web application with very limited application monitoring (endpoint verification). I thought I would stay in functionality, so I added telemetry to my project following the instructions from http://azure.microsoft.com/en-us/documentation/articles/app-insights-start-monitoring-app-health-usage/ . Everything went well, and I was able to make sure that when I loaded the page using JavaScript tools, it did send requests for azure, and I did not return errors either in the error code or in the error array in json's response.
The GUID in the application configuration file looks correct. I also tried sending telemetry manually
private void GatherTelemetry() { var telemetry = new TelemetryClient(); telemetry.TrackEvent("FeedPageLoaded"); }
While all these actions are displayed in the invoice in visual studio 
there is nothing in the portal. 
I tried to open the blades again, and also log out and again.
What else can I try?
source share