Startup Status Query API

Function

Queries the service startup status.

Format

Operation type: GET

URL: https://{ip}:{port}/v1/startup

  • The {ip} field preferentially reads the environment variable POD_IP. If the environment variable is not configured, the value of ip in http_server of the ms_controller.json configuration file is used.
  • The {port} field uses the value of port in http_server of the ms_controller.json configuration file.

Request Parameters

None

Usage Example

Request example:

GET https://{ip}:{port}/v1/startup

Response example:

{
    "message":"",
    "status":"0"
}

Output Description

  • If the status code is 200, the service has been started.
  • If no response is returned, the service is not started.