What is the difference between "transferred" and "resources" in Chrome DevTools Network tab?

Google ChromeGoogle Chrome-Devtools

Google Chrome Problem Overview


How these two data amounts, that are located at the bottom of Network Tab differ?

enter image description here

Google Chrome Solutions


Solution 1 - Google Chrome

Transferred is the compressed size of all resources. You can think of it as the amount of upload and download data that a mobile user will use in order to load this page. Resources is the uncompressed size of all resources.

Question: Can you all think of better words to describe these two values? We get this question somewhat often.

Solution 2 - Google Chrome

In addition to the other answers, if you have filtered the results you will see two numbers in one column, first one indicating the size for the filtered requests and the latter for the total size of requests.

For example if you have filtered the results to only display XHR requests and you see 1 MB / 2 MB transferred at the bottom, that indicates 2 MB has been transferred in total, of which 1 MB are XHR requests.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMantas LukoseviciusView Question on Stackoverflow
Solution 1 - Google ChromeKayce BasquesView Answer on Stackoverflow
Solution 2 - Google ChromeJanne AnnalaView Answer on Stackoverflow