Show Runtime Info Action
Show Runtime Info Action
Requestβ
GET /api/show_runtime_info
Descriptionβ
Used to obtain Runtime information of FE JVM
Path parametersβ
None
Query parametersβ
None
Request bodyβ
None
Responseβ
{
"msg": "success",
"code": 0,
"data": {
"free_mem": "855642056",
"total_mem": "1037959168",
"thread_cnt": "98",
"max_mem": "1037959168"
},
"count": 0
}
Examplesβ
Get the JVM information of the current FE node
GET /api/show_runtime_info
Response:
{
"msg": "success",
"code": 0,
"data": {
"free_mem": "855642056",
"total_mem": "1037959168",
"thread_cnt": "98",
"max_mem": "1037959168"
},
"count": 0
}