Interface Report

Interface representing the pre-call diagnosis report.

Inline

Hierarchy

  • Report

Properties

iceCandidatePairStats: RTCIceCandidatePairStats

The statistics of the selected ICE candidate pair.

iceCandidateStats: RTCIceCandidateStats[]

The statistics of the ICE candidates. RTCIceCandidateStats

sessionStats: {
    bytesReceived: number;
    bytesSent: number;
    packetsLost: number;
    packetsReceived: number;
    packetsSent: number;
}

The session statistics of the pre-call diagnosis.

Type declaration

  • bytesReceived: number

    The number of bytes received.

  • bytesSent: number

    The number of bytes sent.

  • packetsLost: number

    The number of packets lost.

  • packetsReceived: number

    The number of packets received.

  • packetsSent: number

    The number of packets sent.

summaryStats: {
    jitter: MinMaxAverage;
    mos: number;
    quality: Quality;
    rtt: MinMaxAverage;
}

The summary statistics of the pre-call diagnosis.

Type declaration

  • jitter: MinMaxAverage

    The jitter in milliseconds.

  • mos: number

    The mean opinion score (MOS) of the call quality.

  • quality: Quality

    The quality of the call.

  • rtt: MinMaxAverage

    The round-trip time (RTT) in milliseconds.