# Function description
Monitoring service status list
# Request
# Request example
GET /monitor/service/list
# Request Parameters
none
# Request Headers
Name | Description | Type | Mandatory |
---|---|---|---|
Authorization | User token information | string | Yes |
# Request Body
none
# Response
# Response Header
No special response header
# Response Body
Successful Response Body :
{
"code": 0,
"message": "success",
"data": [
{
"id": 7,
"url": "http://testeditor.meishesdk.com:9999/job/service/info",
"type": "TASK_SCHEDULER",
"status": "NORMAL",
"lastDate": 1656036218000
},
{
"id": 8,
"url": "http://localhost:8092",
"type": "AUDIO_COMPARE",
"status": "NORMAL",
"lastDate": 1656036200000,
"executeCount": 0,
"maxExecuteCount": 2
},
{
"id": 9,
"url": "http://localhost:8090",
"type": "COMPILE",
"status": "NORMAL",
"lastDate": 1656036214000,
"executeCount": 0,
"maxExecuteCount": 3
},
{
"id": 10,
"url": "http://172.22.147.205:8095",
"type": "SPLIT_VIDEO",
"status": "NORMAL",
"lastDate": 1656036210000,
"executeCount": 0,
"maxExecuteCount": 4
},
{
"id": 11,
"url": "http://localhost:8093",
"type": "SPLIT_WORD",
"status": "NORMAL",
"lastDate": 1656036219000,
"executeCount": 0,
"maxExecuteCount": 10
},
{
"id": 12,
"url": "http://172.22.147.205:8096",
"type": "TAG_RECOGNITION",
"status": "NORMAL",
"lastDate": 1656036217000,
"executeCount": 0,
"maxExecuteCount": 2
},
{
"id": 13,
"url": "http://localhost:8091",
"type": "TRANSCODE",
"status": "NORMAL",
"lastDate": 1656036211000,
"executeCount": 0,
"maxExecuteCount": 3
},
{
"id": 14,
"url": "https://testeditor.meishesdk.com:7443/app/test",
"type": "AUTH_SERVER",
"status": "NORMAL",
"lastDate": 1656036230000
}
]
}
Name | Description | Type | Mandatory |
---|---|---|---|
type | type of service Authentication: service auth_server task scheduling: service task_scheduler Synthetic service: compile Transcoding service: transcode word segmentation service: split_word Audio Alignment Service: audio_compare | string | yes |
status | status normal normal abnormal error | string | yes |
lastDate | Last communication time, ms | string | yes |
The response body of the failed request is
{
"code": <errorCode>,
"message": <errorMessage>,
"data": null
}