I couldn't find any information about how to access the logged variables in chrome://webrtc-internals/
on google. There is not even a description of the graphs available there.
I am specifically interested in packetsLost
, googCurrentDelayMs
, and googNacksSent
.
The reason behind wanting access to webrtc-internals
I am currently developing a video streaming application on Google Chrome that works peer-to-peer. This application uses peerjs to share the stream with other peers, utilizing Google's WebRTC technology as its foundation. To enhance the performance of my application, it would be crucial for me to monitor significant delays. As I can track these delays through logs in chrome://webrtc-internals/
, I was interested in finding out if I could retrieve this data using JavaScript.
My assumption is that there isn't an API available for the chrome://webrtc-internals/
menu.