Hi folks,
I call the getStats() API when running in firefox 58 as pasted at the bottom.
I seem to get only the following stat objects:
- inbound-rtp
- outbound-rtp
- local-candidate
- remote-candidate
- candidate-pair
I'm looking for "track" related metrics but that doesn't seem to be available to me. It works on chrome but not here.
Any ideas as to why this is happening?
Thanks for your help!
Regards,
Pracheth
this.peer.getStats()
.then((report) => {
report.forEach(
(item) => {
console.log(item);
});
})
.catch((err) => {
console.log(err);
});