You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.
For cloud deployment and self-hosted installation, a status check / health check endpoint will allow the infrastructure to check the server status for readiness and/or to kill if it becomes unavailable.
I am going to propose that we add such endpoint at /_status/healthz that returns HTTP response with a status code that correspond to the status of the server:
when starting up: return 503
when plugin is ready/when there is no plugin: return 200
For older version of skygear-server, he URL will be served by HomeHandler and will always return 200 when requested.
The handler should work with GET request, the respond body is undefined.
The text was updated successfully, but these errors were encountered:
The healthz endpoint checks if the server is ready to serve request.
This endpoint can be used by cloud deployment or self-hosted
installations to check the status of the server.
refs SkygearIO#264
The healthz endpoint checks if the server is ready to serve request.
This endpoint can be used by cloud deployment or self-hosted
installations to check the status of the server.
refs #264
For cloud deployment and self-hosted installation, a status check / health check endpoint will allow the infrastructure to check the server status for readiness and/or to kill if it becomes unavailable.
I am going to propose that we add such endpoint at
/_status/healthz
that returns HTTP response with a status code that correspond to the status of the server:For older version of skygear-server, he URL will be served by HomeHandler and will always return 200 when requested.
The handler should work with GET request, the respond body is undefined.
The text was updated successfully, but these errors were encountered: