RtcStats
通话相关的统计信息。
Dart
class RtcStats {
const RtcStats(
{this.duration,
this.txBytes,
this.rxBytes,
this.txAudioBytes,
this.txVideoBytes,
this.rxAudioBytes,
this.rxVideoBytes,
this.txKBitRate,
this.rxKBitRate,
this.rxAudioKBitRate,
this.txAudioKBitRate,
this.rxVideoKBitRate,
this.txVideoKBitRate,
this.lastmileDelay,
this.userCount,
this.cpuAppUsage,
this.cpuTotalUsage,
this.gatewayRtt,
this.memoryAppUsageRatio,
this.memoryTotalUsageRatio,
this.memoryAppUsageInKbytes,
this.connectTimeMs,
this.firstAudioPacketDuration,
this.firstVideoPacketDuration,
this.firstVideoKeyFramePacketDuration,
this.packetsBeforeFirstKeyFramePacket,
this.firstAudioPacketDurationAfterUnmute,
this.firstVideoPacketDurationAfterUnmute,
this.firstVideoKeyFramePacketDurationAfterUnmute,
this.firstVideoKeyFrameDecodedDurationAfterUnmute,
this.firstVideoKeyFrameRenderedDurationAfterUnmute,
this.txPacketLossRate,
this.rxPacketLossRate});
(name: 'duration')
final int? duration;
(name: 'txBytes')
final int? txBytes;
(name: 'rxBytes')
final int? rxBytes;
(name: 'txAudioBytes')
final int? txAudioBytes;
(name: 'txVideoBytes')
final int? txVideoBytes;
(name: 'rxAudioBytes')
final int? rxAudioBytes;
(name: 'rxVideoBytes')
final int? rxVideoBytes;
(name: 'txKBitRate')
final int? txKBitRate;
(name: 'rxKBitRate')
final int? rxKBitRate;
(name: 'rxAudioKBitRate')
final int? rxAudioKBitRate;
(name: 'txAudioKBitRate')
final int? txAudioKBitRate;
(name: 'rxVideoKBitRate')
final int? rxVideoKBitRate;
(name: 'txVideoKBitRate')
final int? txVideoKBitRate;
(name: 'lastmileDelay')
final int? lastmileDelay;
(name: 'userCount')
final int? userCount;
(name: 'cpuAppUsage')
final double? cpuAppUsage;
(name: 'cpuTotalUsage')
final double? cpuTotalUsage;
(name: 'gatewayRtt')
final int? gatewayRtt;
(name: 'memoryAppUsageRatio')
final double? memoryAppUsageRatio;
(name: 'memoryTotalUsageRatio')
final double? memoryTotalUsageRatio;
(name: 'memoryAppUsageInKbytes')
final int? memoryAppUsageInKbytes;
(name: 'connectTimeMs')
final int? connectTimeMs;
(name: 'firstAudioPacketDuration')
final int? firstAudioPacketDuration;
(name: 'firstVideoPacketDuration')
final int? firstVideoPacketDuration;
(name: 'firstVideoKeyFramePacketDuration')
final int? firstVideoKeyFramePacketDuration;
(name: 'packetsBeforeFirstKeyFramePacket')
final int? packetsBeforeFirstKeyFramePacket;
(name: 'firstAudioPacketDurationAfterUnmute')
final int? firstAudioPacketDurationAfterUnmute;
(name: 'firstVideoPacketDurationAfterUnmute')
final int? firstVideoPacketDurationAfterUnmute;
(name: 'firstVideoKeyFramePacketDurationAfterUnmute')
final int? firstVideoKeyFramePacketDurationAfterUnmute;
(name: 'firstVideoKeyFrameDecodedDurationAfterUnmute')
final int? firstVideoKeyFrameDecodedDurationAfterUnmute;
(name: 'firstVideoKeyFrameRenderedDurationAfterUnmute')
final int? firstVideoKeyFrameRenderedDurationAfterUnmute;
(name: 'txPacketLossRate')
final int? txPacketLossRate;
(name: 'rxPacketLossRate')
final int? rxPacketLossRate;
factory RtcStats.fromJson(Map<String, dynamic> json) =>
_$RtcStatsFromJson(json);
Map<String, dynamic> toJson() => _$RtcStatsToJson(this);
}
duration
本地用户通话时长(秒),累计值。
txBytes
发送字节数 (bytes)。
rxBytes
接收字节数 (bytes)。
txAudioBytes
发送音频字节数 (bytes),累计值。
txVideoBytes
发送视频字节数 (bytes),累计值。
rxAudioBytes
接收音频字节数 (bytes),累计值。
rxVideoBytes
接收视频字节数 (bytes),累计值。
txKBitRate
发送码率 (Kbps)。
rxKBitRate
接收码率 (Kbps)。
rxAudioKBitRate
音频接收码率 (Kbps)。
txAudioKBitRate
音频包的发送码率 (Kbps)。
rxVideoKBitRate
视频接收码率 (Kbps)。
txVideoKBitRate
视频发送码率 (Kbps)。
lastmileDelay
客户端-接入服务器延时 (毫秒)。
txPacketLossRate
使用抗丢包技术前,客户端上行发送到服务器丢包率 (%)。
rxPacketLossRate
使用抗丢包技术前,服务器下行发送到客户端丢包率 (%)。
userCount
当前频道内的用户人数。
cpuAppUsage
当前 App 的 CPU 使用率 (%)。
注意
- onLeaveChannel 回调中报告的 cpuAppUsage 恒为 0。
- 自 Android 8.1 起,因系统限制,你可能无法通过该属性获取 CPU 使用率。
cpuTotalUsage
当前系统的 CPU 使用率 (%)。
对于 Windows 平台,在多核环境中,该成员指多核 CPU 的平均使用率。 计算方式为 (100 - 任务管理中显示的系统空闲进程 CPU)/100。
注意
- onLeaveChannel 回调中报告的 cpuTotalUsage 恒为 0。
connectTimeMs
从开始建立连接到成功连接的时间(毫秒)。如报告 0,则表示无效。
gatewayRtt
客户端到本地路由器的往返时延 (ms)。
信息
该属性默认在 iOS 14 之前的设备上开启,在 iOS 14 及之后的设备上关闭。
如需在 iOS 14 及之后的设备上启用该属性,请联系技术支持。
信息
在 Android 平台上,如需获取 gatewayRtt,请确保已在项目
AndroidManifest.xml
文件的 </application>
后面添加 android.permission.ACCESS_WIFI_STATE
权限。memoryAppUsageRatio
当前 App 的内存占比 (%)。
注意
该值仅作参考。受系统限制可能无法获取。
memoryTotalUsageRatio
当前系统的内存占比 (%)。
注意
该值仅作参考。受系统限制可能无法获取。
memoryAppUsageInKbytes
当前 App 的内存大小 (KB)。
注意
该值仅作参考。受系统限制可能无法获取。