=============== Health (health) =============== With health API, user or operator can get a general idea about the status of Zaqar server. Those information can be used for basic validation, performance checking, etc. Ping ==== .. rest_method:: GET /v2/ping Simple health check for end user. A request to ping Zaqar server when server is working returns 204, otherwise returns 503. This can be a handy API for end user to check if the messaging service is in working status. Normal response codes: 204 Error response codes: - ServiceUnavailable (503) This operation does not accept a request body and does not return a response body. Health ====== .. rest_method:: GET /v2/health Detailed health check for cloud operator/admin. This is an ``admin only`` API. A request to get detailed health information of Zaqar server. The response body will depend on the storage setting of Zaqar server. By default, there is no pool created. Then the response body will only contain the ``catalog_reachable``. Otherwise, the response body will have ``catalog_reachable`` and the health status for each pool. Normal response codes: 200 Error response codes: - Unauthorized (401) - Forbidden (403) - ServiceUnavailable (503) Response Parameters ------------------- .. rest_parameters:: parameters.yaml - catalog_reachable: catalog_reachable - storage_reachable: storage_reachable - operation_status: operation_status Response Example ---------------- .. literalinclude:: samples/health-response.json :language: javascript