API Endpoint:/webapi/dashboard/getJobTotalInfoMgr
Request Method:GET
Request Content-Type:application/x-www-form-urlencoded
Response Content-Type:application/json;charset=UTF-8
API Description:
Query job activity information.
Request Parameters:
None
Response Status:
| Status Code | Description | Schema |
|---|---|---|
| 200 | OK | ResponseResultActiveJobTotalInfoVo |
Response Parameters:
| Parameter Name | Description | Type | Schema |
|---|---|---|---|
| message | Response status flag | string | |
| statFlag | Response status | integer(int32) | integer(int32) |
| dataInfo | ActiveJobTotalInfoVo | ActiveJobTotalInfoVo | |
| running | Running jobs | integer(int32) | |
| outstanding | Outstanding jobs | integer(int32) | |
| waiting | Queued jobs | integer(int32) | |
| stop | Paused jobs | integer(int32) | |
| dataCount | Number of data items | integer(int32) | integer(int32) |
Response Example:
{
"message": "Operation successful",
"statFlag": 0,
"dataInfo": {
"running": 0,
"outstanding": 0,
"waiting": 0,
"stop": 0
},
"dataCount": 10
}