RTCIceCandidatePairStats.totalRoundTripTime
The RTCIceCandidatePairStats
dictionary's totalRoundTripTime
property is the total time that has elapsed between sending STUN requests and receiving the responses, for all such requests that have been made so far on the pair of candidates described by this RTCIceCandidatePairStats
object. This value includes both connectivity check and consent check requests.
Syntax
totalRTT = rtcIceCandidatePairStats.totalRoundTripTime;
Value
This floating-point value indicates the total number of seconds which have elapsed between sending out STUN connectivity and consent check requests and receiving their responses, for all such requests made so far on the connection described by this candidate pair.
You can calculate the average round-trip time (RTT) by dividing this value by the value of the responsesReceived
property:
rtt = rtcIceCandidatePairStats.totalRoundTripTime / rtcIceCandidatePairStats.responsesReceived;
Specifications
Specification |
---|
Identifiers for WebRTC's Statistics API (WebRTC Statistics) # dom-rtcicecandidatepairstats-totalroundtriptime |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
totalRoundTripTime |
71
Yes
|
≤79
≤79
|
No |
No |
? |
11 |
No |
71
Yes
|
No |
? |
11 |
10.0
Yes
|
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidatePairStats/totalRoundTripTime