I'm tinkering with Application Insights using a blank UWP app to send telemetry. It seems like all events (PageView, Exception, CustomEvent, etc) take quite long to appear in the Azure Portal (or Visual Studio). I am refreshing the portal page manually.
An example is this CustomEvent that took 14 minutes to become available in Azure:
TelemetryClient _tc;
_tc.TrackEvent("A message");
...and this is typical for everything I've tried so far.
In the introductory walk-through article, it indicated that data should appear in the portal after a few seconds.
Is it normal for it to take so long? If not, any ideas for resolving the long delays?