Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "XHR Load" mean in Chrome Developer Tools?

I monitored the performance of our JavaScript application using Chrome's Developer Tools.

The output looks like this:

Output produced

I don't really understand what "XHR Load" exactly means. According to Google reference, "XHR Load" is an event. So, what exactly does it mean that the XHR Load took 3014ms (in total)? Does it mean that the execution of the function triggered by this event took 3014ms?

like image 499
itsame69 Avatar asked Feb 02 '18 10:02

itsame69


1 Answers

Check there https://developers.google.com/web/tools/chrome-devtools/evaluate-performance/performance-reference

XHR Load =>  An XMLHTTPRequest finished loading.
like image 59
GrigorAtaryan Avatar answered Nov 11 '22 05:11

GrigorAtaryan