Reputation: 139
We have set up application insights (Azure) and the script is added to the project. I have noticed that sometimes this request is overlapping with the page's ajax request.
Upvotes: 0
Views: 831
Reputation: 29985
Have confirmed with app insights team, actually the data(track or others) is sent to application insights backend async.
Here is his feedback:
The actual process of sending telemetry items to backend is done async. 'TrackXXX"
calls result in items being stored in-memory and are sent async, in batches.
Hope it helps.
Upvotes: 1