简要描述
请求URL
{{adminHost:8181}}/appliReserve/search
请求方式
| 字段名 |
示例值 |
必选 |
类型 |
说明 |
| adminKey |
603284317954637824 |
是 |
string |
该参数为后台管理接入凭证,在LarkXR3.3后台接入管理中查看 |
| timestamp |
8641706679604867 |
是 |
string |
发送请求时的时间戳,单位为毫秒 |
| signature |
9A02B47AE67664D80A2ED13FC2B1691512613790 |
是 |
string |
该参数为密钥签名。将adminKey(LarkXR3.3后台接入管理中查看)和adminSecret(LarkXR3.3后台中接入管理查看)和当前时间戳(long型数值)按字母序排序,然后进行SHA-1摘要签名。请参考【获取凭证签名】的样例 |
请求Query参数
| 参数名 |
示例值 |
必选 |
类型 |
说明 |
| appliId |
|
是 |
string |
应用ID |
| serverIp |
|
是 |
string |
渲染节点IP |
| page |
|
是 |
string |
页码,默认1 |
| pageSize |
|
是 |
string |
每页大小,默认20 |
成功返回示例
{
"code": 1000,
"message": "Success",
"result": {
"records": [
{
"reserveId": "1203006119274872832",
"appliId": "1199762458126843904",
"serverId": "c255ced0be4451c5ba5524b926a53816",
"serverIp": "192.168.0.28",
"exitRestart": 0,
"codeRate": 8000,
"frameRate": 60,
"reserveCnt": 1,
"runningCnt": 0,
"usingCnt": 0,
"status": 1,
"autoAdjustFlag": 0,
"minCnt": 0,
"maxCnt": 0,
"minIdleCnt": 0,
"maxIdleCnt": 0,
"hesitateTime": 0,
"multiUserInteractionFlag": "0",
"updateDate": "1706860609608",
"appliName": "test33"
}
],
"total": "1",
"size": "15",
"current": "1",
"orders": [],
"optimizeCountSql": true,
"searchCount": true,
"pages": "1"
}
}
成功返回示例的参数说明
| 参数名 |
类型 |
说明 |
| code |
string |
无 |
| message |
string |
无 |
| result |
object |
无 |
| records |
array |
无 |
| records.reserveId |
string |
预启动Id |
| records.appliId |
string |
应用ID |
| records.serverId |
string |
渲染节点ID |
| records.serverIp |
string |
渲染节点IP |
| records.exitRestart |
string |
客户端退出是否重启应用,0不重启,1重启 |
| records.codeRate |
string |
码率 |
| records.frameRate |
string |
帧率 |
| records.reserveCnt |
string |
预启动数量 |
| records.runningCnt |
string |
服务器端正在运行的预启动数量 |
| records.usingCnt |
string |
客户端正在使用的预启动数量 |
| records.status |
string |
1:启用 0 :禁用(只是保留预启动的设置,但渲染节点不启动应用信息,在交换信息接口禁用的预启动信息不返回给渲染节点) |
| records.autoAdjustFlag |
string |
是否自动调节,默认0 。 0:不开启,1:开启 |
| records.minCnt |
string |
最小值 应用使用过程中,渲染服务器需要持续补充预启动应用,来满足最小空闲。当应用退出时,空闲数量增加,当空闲数量大于最大空闲数时,渲染服务将退出多余的预启动应用。当剩余的预启动数量等于最小值时,停止退出 |
| records.maxCnt |
string |
最大值 应用使用过程中,渲染服务器需要持续补充预启动应用,来满足最小空闲。在此设置一个最大值,封顶应用的总启动数量 |
| records.minIdleCnt |
string |
最小的空闲数量 应用使用过程中,渲染服务器需要持续补充预启动应用,来满足最小空闲。 |
| records.maxIdleCnt |
string |
最大空闲数 应用使用过程中,渲染服务器需要持续补充预启动应用,来满足最小空闲。当应用退出时,空闲数量增加,当空闲数量大于最大空闲数,渲染服务将退出多余的预启动应用 |
| records.hesitateTime |
string |
犹豫时间 为了防止程序频繁第调起,杀掉进程,在此处设置犹豫时间,在犹豫时间的间隔下会去检查启动或者释放的流程。 |
| records.multiUserInteractionFlag |
string |
是否开启2.5D多用户交互(目前未使用) |
| records.updateDate |
string |
更新时间 |
| records.appliName |
string |
应用名称 |
| total |
string |
无 |
| size |
string |
无 |
| current |
string |
无 |
| orders |
array |
无 |
| optimizeCountSql |
string |
无 |
| searchCount |
string |
无 |
| pages |
string |
无 |
备注