I have a the following request in Application insights.
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.
