Show Proc Action
Show Proc Action
Requestβ
GET /api/show_proc
Descriptionβ
Used to obtain PROC information.
Path parametersβ
None
Query parametersβ
path
Specify Proc Path
forward
Whether to forward to Master FE for execution
Request bodyβ
None
Responseβ
{
"msg": "success",
"code": 0,
"data": [
proc infos ...
],
"count": 0
}
Examplesβ
View
/statistic
informationGET /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
}Forward to Master for execution
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
}