Feature request
This is a feature request for functionality within the network tab of devtools. I would like network tab to display the local socket that was opened for a request.
As a network engineer, I am having to rely more and more on Chrome dev tools to understand the resources that people are loading to see why pages aren't loading correctly. Devtools is great because I can easily cross-reference domains to the IP address that's being used instead of guessing which IP got used after the DNS request. However, sometimes I still have trouble narrowing down which TCP request went over a particular socket. By having the socket displayed I would be able to easily take a packet capture upstream of the computer to see where in the network the connection is dropping.
If the webpage is simple and only one TCP socket is opened then it's easy to guess which socket is being used. However, on pages that load multiple resources from several different places, it can quickly become overwhelming.
Here's an example of my current process to finding the socket right now. For the sake of simplicity, I am going to troubleshoot a very simple site -
www.example.com. Sorry for the large screenshots, I couldn't see any of the info if the size was changed.
1) As you can see here I've opened
example.com and 93.184.216.34 is the IP address of the server.

2) In order to find the correct socket, I need to go to chrome://net-internals/#sockets where I can see the idle socket for
example.com:80.

3) Clicking on the socket, I can see the socket that's been opened for this TCP connection 65153.

4) I can now take 65153 and use that in wireshark to filter for the exact web request that I need to find.

If the socket were displayed in the first screenshot then it would be much more simple to filter right away.
Since everyone loves to blame the network, it would be great to have a way to track down where the problem is faster.