You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have recently implemented a basic boomerang implementation (only rt plugin included) and noted that our production website experiences issues with "blocking time"
(as seen in chrome devtools... this "blocking time" is "the time the request spent waiting for an already established connection to become available").
This "blocking time" is not recorded by our boomerang implementation (I mean, all measurements seem to start from the start of the network request only).
Is there any means that we can measure this "blocking time"?
The text was updated successfully, but these errors were encountered:
Hi @Aardvark71, are you talking about timings for the root page (e.g. NavigationTiming), or for resources on the page (ResourceTiming)?
The rt plugin only reports on time for the root page, which I wouldn't expect to be blocking waiting on a connection (as navigations generally trump all other fetches).
If you enable the restiming and navtiming plugins, you'll get the a Waterfall of resources (restiming=) and timings from NavigationTiming (nt_*=). Based on the timestamps captured in either, you could calculate Blocking Time (see Blocking Time in http://nicj.net/resourcetiming-in-practice/ for how we do it)
We have recently implemented a basic boomerang implementation (only rt plugin included) and noted that our production website experiences issues with "blocking time"
(as seen in chrome devtools... this "blocking time" is "the time the request spent waiting for an already established connection to become available").
This "blocking time" is not recorded by our boomerang implementation (I mean, all measurements seem to start from the start of the network request only).
Is there any means that we can measure this "blocking time"?
The text was updated successfully, but these errors were encountered: