Skip to content

Instantly share code, notes, and snippets.

@jakub-g
Last active July 10, 2019 12:14
Show Gist options
  • Save jakub-g/e7b0a890ed96fd7822efbe5d2ec52a7f to your computer and use it in GitHub Desktop.
Save jakub-g/e7b0a890ed96fd7822efbe5d2ec52a7f to your computer and use it in GitHub Desktop.
A little copy-paste to dump resource timings to console via `console.table()`
var regex = /playerv5|jquery/ // customize this
function pick(obj, ...entryNames) { let retObj = {}; entryNames.forEach(key => {retObj[key] = obj[key]}); return retObj }
// uncomment interesting items below, keeping in mind console width / no. of columns constraints
console.table(performance.getEntriesByType("resource")
.filter(item => item.name.match(regex))
.map(i => pick(i, 'name', /*'startTime', 'duration',*/ 'initiatorType',
'transferSize', 'encodedBodySize', 'decodedBodySize',
'fetchStart', /*'domainLookupStart','domainLookupEnd', 'connectStart', 'connectEnd', 'secureConnectionStart', 'requestStart', */'responseStart', 'responseEnd',)))
@jakub-g
Copy link
Author

jakub-g commented Apr 25, 2019

One could also pass the array to console.table of property names to be shown:

console.table(performance.getEntriesByType("resource"), ['name', 'transferSize'])

but it seems the order is not respected in Chrome (it is in Firefox though)

console.table(performance.getEntriesByType("resource").filter(it => it.name.match(/playerv5|jquery/)), ['name','transferSize'])

Chrome prints first transferSize and only then name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment