メインコンテンツまでスキップ

Show Proc Action

リクエスト

GET /api/show_proc

説明

PROC情報を取得するために使用されます。

パスパラメータ

なし

クエリパラメータ

  • path

    Proc Pathを指定

  • forward

    実行のためにMaster FEに転送するかどうか

リクエストボディ

なし

レスポンス

{
"msg": "success",
"code": 0,
"data": [
proc infos ...
],
"count": 0
}

  1. /statistic 情報を表示する

    GET /api/show_proc?path=/statistic

    Response:
    {
    "msg": "success",
    "code": 0,
    "data": [
    ["10003", "default_cluster:db1", "2", "3", "3", "3", "3", "0", "0", "0"],
    ["10013", "default_cluster:doris_audit_db__", "1", "4", "4", "4", "4", "0", "0", "0"],
    ["Total", "2", "3", "7", "7", "7", "7", "0", "0", "0"]
    ],
    "count": 0
    }
  2. 実行のためにMasterに転送

    GET /api/show_proc?path=/statistic&forward=true

    Response:
    {
    "msg": "success",
    "code": 0,
    "data": [
    ["10003", "default_cluster:db1", "2", "3", "3", "3", "3", "0", "0", "0"],
    ["10013", "default_cluster:doris_audit_db__", "1", "4", "4", "4", "4", "0", "0", "0"],
    ["Total", "2", "3", "7", "7", "7", "7", "0", "0", "0"]
    ],
    "count": 0
    }