This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
The forEach() method of the RTCStatsReport interface executes a provided function once for each key/value pair in the RTCStatsReport object, in insertion order.
The keys are unique id values for the monitored statistics objects from which the statistics are derived, and the associated values are statistics dictionary objects.
The method is otherwise the same as Map.prototype.forEach().
forEach(callbackFn) forEach(callbackFn, thisArg)
callbackFnA function to execute for each entry in the report. The function is called with the following arguments:
reportStatistics report for each iteration. This can be any of the statistics dictionary types.
idA unique string identifying the monitored object from which the statistics are derived.
mapThe report being iterated.
thisArg OptionalA value to use as this when executing callbackFn.
Given a variable myPeerConnection, which is an instance of RTCPeerConnection, the code calls getStats() with await to wait for the statistics report. It then iterates the report using RTCStatsReport.forEach(), and filters the dictionaries for just those reports that have the type of inbound-rtp and kind of video. For matching dictionaries it logs the framesPerSecond property of the inbound video.
const stats = await myPeerConnection.getStats();
stats.forEach((report) => {
if (report.type === "inbound-rtp" && report.kind === "video") {
// Log the frame rate
console.log(report.framesPerSecond);
}
});
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
forEach |
58 | 79 | 27 | 45 | 11 | 58 | 27 | 43 | 11 | 7.0 | 58 | 11 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCStatsReport/forEach