简要描述
请求URL
{{adminHost:8181}}/taskInfo/getPerformanceMeasure
请求方式
字段名 |
示例值 |
必选 |
类型 |
说明 |
adminKey |
603284317954637824 |
是 |
string |
该参数为后台管理接入凭证,在LarkXR3.3后台接入管理中查看 |
timestamp |
8641706679604867 |
是 |
string |
发送请求时的时间戳,单位为毫秒 |
signature |
9A02B47AE67664D80A2ED13FC2B1691512613790 |
是 |
string |
该参数为密钥签名。将adminKey(LarkXR3.2后台接入管理中查看)和adminSecret(LarkXR3.3后台中接入管理查看)和当前时间戳(long型数值)按字母序排序,然后进行SHA-1摘要签名。请参考【获取凭证签名】的样例 |
请求Query参数
参数名 |
示例值 |
必选 |
类型 |
说明 |
taskId |
|
是 |
string |
任务Id |
成功返回示例
{
"code": 1000,
"message": "操作成功",
"result": [
{
"id": "732282282802413568",
"taskId": "732282274455748608",
"clientRenderLatency": 3.57,
"decodeLatency": 15.9,
"transportLatency": 3.96,
"encodeLatency": 11.84,
"serverRenderLatency1": 0.12,
"serverRenderLatency2": 0,
"cmdUploadLatency": 0,
"totalLatency": 54.65,
"feelLatency": 0,
"blackEdgeDegree": 0.54,
"clientFps": 70,
"serverFps": 24,
"rtt": 1,
"packetRate": 144,
"packetsLostInSecond": 0,
"totalSent": 0,
"sentRate": 0,
"frameRate": 23,
"resolutionRatio": "2560x1440",
"createDate": "2020-07-13 17:08:21",
"otherLatency": 19.38,
"packetsLostLatency": 0
}
]
}
成功返回示例的参数说明
参数名 |
类型 |
说明 |
code |
string |
无 |
message |
string |
无 |
result |
array |
无 |
id |
string |
无 |
taskId |
string |
任务Id |
clientRenderLatency |
string |
客户端渲染时延 单位:ms |
decodeLatency |
string |
解码时延 单位:ms |
transportLatency |
string |
传输时延 单位:ms |
encodeLatency |
string |
编码时延 单位:ms |
serverRenderLatency1 |
string |
服务端渲染时延1 单位:ms |
serverRenderLatency2 |
string |
服务端渲染时延2 单位:ms |
cmdUploadLatency |
string |
指令上传时延 单位:ms |
totalLatency |
string |
总时延 单位:ms |
feelLatency |
string |
感知时延 单位:ms |
blackEdgeDegree |
string |
黑边度数 单位:° |
clientFps |
string |
客户端FPS |
serverFps |
string |
服务端FPS |
rtt |
string |
网络延时 单位:ms |
packetRate |
string |
包发送速率 |
packetsLostInSecond |
string |
每秒丢包数 |
totalSent |
string |
发送包的总个数 |
sentRate |
string |
发送速率 Mbps |
frameRate |
string |
码率 |
resolutionRatio |
string |
客户端分辨率 |
createDate |
string |
创建时间 |
otherLatency |
string |
其他时延时延 单位:ms |
packetsLostLatency |
string |
丢包率 |
备注