Show Runtime Info Action
Request
GET /api/show_runtime_info
デスクリプション
FE JVMのRuntime情報を取得するために使用されます
Path parameters
なし
Query parameters
なし
Request body
なし
Response
{
"msg": "success",
"code": 0,
"data": {
"free_mem": "855642056",
"total_mem": "1037959168",
"thread_cnt": "98",
"max_mem": "1037959168"
},
"count": 0
}
Examples
-
現在のFEノードのJVM情報を取得する
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
}