Show Runtime Info Action

Request

GET /api/show_runtime_info

Description

用于获取 FE JVM 的 Runtime 信息

Path parameters

Query parameters

Request body

Response

  1. {
  2. "msg": "success",
  3. "code": 0,
  4. "data": {
  5. "free_mem": "855642056",
  6. "total_mem": "1037959168",
  7. "thread_cnt": "98",
  8. "max_mem": "1037959168"
  9. },
  10. "count": 0
  11. }

Examples

  1. 获取当前 FE 节点的 JVM 信息

    1. GET /api/show_runtime_info
    2. Response:
    3. {
    4. "msg": "success",
    5. "code": 0,
    6. "data": {
    7. "free_mem": "855642056",
    8. "total_mem": "1037959168",
    9. "thread_cnt": "98",
    10. "max_mem": "1037959168"
    11. },
    12. "count": 0
    13. }