Obtaining Project Status Information

Function Description

Obtains the current project status. If the current project fails to be started, the status is failed. If the current project is started successfully, the status is running.

URI

The request method is as follows:

GET /get_project_status

Example Response

The task name and list of project names are returned. An example response is as follows:

assm1-2 indicates the task name, project indicates the project name, status indicates the running status, failed indicates that the project fails to be started, and running indicates that the project is successfully started.

{
     "assm1-2": [
          {"project":"project_crnn", "status":"failed"},
          {"project":"project_ctpn_crnn", "status":"running"},
          {"project":"project_ssd", "status":"running"},
          {"project":"project_ssd_resnet", "status":"running"},
          {"project":"project_unet", "status":"running"},
          {"project":"project_unet++", "status":"running"},
          {"project":"project_yolov4", "status":"running"},
          {"project":"project_yolov4_resnet", "status":"running"},
     ]
}

Status Code

Status Code

Description

200

A successful request.

500

An internal service error.