Shereen
Shereen

Reputation: 139

How to send asynchronous call to application insights (AZURE)

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.

enter image description here

Upvotes: 0

Views: 831

Answers (1)

Ivan Glasenberg
Ivan Glasenberg

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

Related Questions