Get service status
GET/system/services/active/:system_services_id/status
system.services.active.check_status
The method checks if service is active using 3 steps:
- The method is registered in the active services registry.
- The PID-file is present.
- The process with recorded PID is alive.
Additionally, the method removes leftovers (pid-file and registration in
active services), which may occur if services has been terminated by
SIGKILL
or finished abnormally.
The method checks only services on the node, where it is called.
If the service has been executed incorrectly, it is possible that PID-file
is present, but service is not registered in the active services. In this
case the method will return only pid
key in the response.
Request​
Responses​
- 200
- 400
- 401
- 404
- 422
- 500
Object containing service details if it is alive, otherwise None
is
returned.
The request contains invalid arguments or is malformed
Access is not authorized
Requested object was not found
A logical error occurred, making the request unprocessable
An unexpected error occurred