What is happening during the gap in Application insights Request Telemetry?

51 Views Asked by At

I have a the following request in Application insights.

Screenshot of the issue

How I understand it is that total request time took 422.1ms to complete. During this time a dependent request, the striped blue bar, took 151.1ms. What is happening during the other 271ms, the red part?

The code is as simple as:

public async Task<Foo> Get()
{
    return await _externalAPI.GetFooExternally()
}

Our first thought was it was related to network/framework, but there are other places we are seeing that the gap/delay completely disappears.

0

There are 0 best solutions below