Please help me understand what waiting time is in a HTTP request.
I have a RESTful node.js server. Client makes a HTTPS get request, the node server has to make a couple of SOAP calls to a web service.
When I look at this request/response timing using Chrome developer tools,
I see time is 931 ms.
Blocking is 0.578 ms
Sending is 0.163 ms
Receiving 0.590 ms
Waiting is 929.936 ms
Is the waiting the amount of time spent on the SOAP call?