The takeRecords()
method of the PerformanceObserver
interface returns the current list of performance entries
stored in the performance observer, emptying it out.
observer.takeRecords();
None.
A list of PerformanceEntry
objects.
var observer = new PerformanceObserver(function(list, obj) { var entries = list.getEntries(); for (var i=0; i < entries.length; i++) { // Process "mark" and "frame" events } }); observer.observe({entryTypes: ["mark", "frame"]}); var records = observer.takeRecords(); console.log(records[0].name); console.log(records[0].startTime); console.log(records[0].duration);
Specification | Status | Comment |
---|---|---|
Performance Timeline Level 2 The definition of 'takeRecords()' in that specification. | Candidate Recommendation | Initial definition of takeRecords() method. |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | ? | 60 | No | Yes | No |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | Yes | ? | 60 | Yes | No | ? |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/PerformanceObserver/takeRecords