Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

webrtc-issue-detector

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webrtc-issue-detector

WebRTC diagnostic tool that detects issues with network or user devices

  • 1.3.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7.7K
decreased by-22.55%
Maintainers
1
Weekly downloads
 
Created
Source

webrtc-issue-detector

Diagnostic tool for WebRTC applications that analyzes WebRTC getStats() result in realtime and generates a report on possible issues.

Key features

  • Mean opinion score - calculates MOS for inbound and outbound network connections that can indicate problems before it even appears.
  • CPU issues - indicates possible issues with encoding and decoding media streams.
  • Server issues - indicates possible server side issues.
  • Fully customizable - allows to create your own detectors or WebRTC getStats() parsers.

Installation

yarn add webrtc-issue-detector

Usage

Getting started

import WebRTCIssueDetector from 'webrtc-issue-detector';

// create it before the first instance of RTCPeerConnection is created
const webRtcIssueDetector = new WebRTCIssueDetector({
    onIssues: (issues) => issues.map((issue) => {
        console.log('Issues type:', issue.type); // eg. "network"
        console.log('Issues reason:', issue.reason); // eg. "outbound-network-throughput"
        console.log('Issues reason:', issue.debug); // eg. "packetLoss: 12%, jitter: 230, rtt: 150"
    }),
    onNetworkScoresUpdated: (scores) => {
        console.log('Inbound network score', scores.inbound); // eg. 3.7
        console.log('Outbound network score', scores.outbound); // eg. 4.5
    }
});

// start collecting getStats() and detecting issues
webRtcIssueDetector.watchNewPeerConnections();

Configure

import WebRTCIssueDetector, {
  QualityLimitationsIssueDetector,
  FramesDroppedIssueDetector,
  FramesEncodedSentIssueDetector,
  InboundNetworkIssueDetector,
  OutboundNetworkIssueDetector,
  NetworkMediaSyncIssueDetector,
  AvailableOutgoingBitrateIssueDetector,
  VideoCodecMismatchDetector,
  CompositeRTCStatsParser,
  WebRTCIssueEmitter,
  NetworkScoresCalculator,
  PeriodicWebRTCStatsReporter,
  RTCStatsParser,
} from 'webrtc-issue-detector';

new WebRTCIssueDetector({
  issueEmitter: new WebRTCIssueEmitter(),
  networkScoresCalculator: new NetworkScoresCalculator(),
  detectors: [
    new QualityLimitationsIssueDetector(),
    new FramesDroppedIssueDetector(),
    new FramesEncodedSentIssueDetector(),
    new InboundNetworkIssueDetector(),
    new OutboundNetworkIssueDetector(),
    new NetworkMediaSyncIssueDetector(),
    new AvailableOutgoingBitrateIssueDetector(),
    new VideoCodecMismatchDetector(),
  ],
  statsReporter: new PeriodicWebRTCStatsReporter({
    compositeStatsParser,
    getStatsInterval: 5000,
  }),
  onIssues: params.onIssues,
  onNetworkScoresUpdated: params.onNetworkScoresUpdated,
  ignoreSSRCList: params.ignoreSSRCList,
  compositeStatsParser,
  logger,
});

Detectors

AvailableOutgoingBitrateIssueDetector

Detects issues with outgoing network connection.

{
    type: 'network',
    reason: 'outbound-network-throughput',
    debug: '...'
}

FramesDroppedIssueDetector

Detects issues with decoder.

{
    type: 'cpu',
    reason: 'decoder-cpu-throttling',
    debug: '...'
}

FramesEncodedSentIssueDetector

Detects issues with outbound network throughput.

{
    type: 'network',
    reason: 'outbound-network-throughput',
    debug: '...'
}

InboundNetworkIssueDetector

Detects issues with inbound network connection.

{
    type: 'network',
    reason: 'inbound-network-quality' | 'inbound-network-media-latency' | 'network-media-sync-failure',
    iceCandidate: 'ice-candidate-id'
    debug: '...'
}

Also can detect server side issues if there is high RTT and jitter is ok.

{
    type: 'server',
    reason: 'server-issue',
    iceCandidate: 'ice-candidate-id'
    debug: '...'
}

NetworkMediaSyncIssueDetector

Detects issues with audio syncronization.

{
    type: 'network',
    reason: 'network-media-sync-failure',
    ssrc: '...'
    debug: '...'
}

OutboundNetworkIssueDetector

Detects issues with outbound network connection.

{
    type: 'network',
    reason: 'outbound-network-quality' | 'outbound-network-media-latency',
    iceCandidate: 'ice-candidate-id'
    debug: '...'
}

QualityLimitationsIssueDetector

Detects issues with encoder and outbound network. Based on native qualitiLimitationReason.

{
    type: 'cpu',
    reason: 'encoder-cpu-throttling',
    ssrc: '...'
    debug: '...'
}
{
    type: 'network',
    reason: 'outbound-network-throughput',
    ssrc: '...'
    debug: '...'
}

VideoCodecMismatchDetector

Detects issues with decoding stream.

{
    type: 'stream',
    reason: 'codec-mismatch',
    ssrc: '...',
    trackIdentifier: '...',
    debug: '...'
}

Roadmap

  • Adaptive getStats() call interval based on last getStats() exectution time
  • Structured issue debug
  • Issues detector for user devices permissions

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Keywords

FAQs

Package last updated on 17 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc