Last active
March 13, 2024 08:58
-
-
Save Sc4ramouche/d8ad660946320e1a6a7e9a1126d5b060 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function logPerformanceEvents() { | |
const resourceEntries = performance.getEntries(); | |
resourceEntries.forEach(entry => { | |
console.log('Resource Name:', entry.name); | |
console.log('Resource Source:', entry.initiatorType); | |
console.log('Resource Start Time:', entry.startTime); | |
console.log('Resource Duration:', entry.duration); | |
console.log('----------------------'); | |
}); | |
} | |
// call from dev tools console conveniently | |
window.logResourceRequests = logResourceRequests; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment