Dijar Vrella
09/20/2024, 3:07 PMMarvin
09/20/2024, 3:07 PMhttp://<your-prefect-server-host>:4200/api/health
For Prefect 3.x and Later:
Although the exact endpoint for a health check is not directly mentioned in the documentation snippet, you can usually try typical health check endpoints like:
http://<your-prefect-server-host>:4200/api/health
or
http://<your-prefect-server-host>:4200/health
These endpoints should return a response that indicates whether the Prefect server is operating correctly.
Using these URL formats should help you verify your Prefect server's readiness. It's always a good idea to refer to the respective Prefect documentation as well:
Prefect 2.x documentation snippet: https://docs-2.prefect.io/latest/cloud/connecting/
Prefect 3.x documentation snippet: https://docs-3.prefect.io/3.0/manage/self-host
Make sure to replace <your-prefect-server-host>
with the actual host where your Prefect server is running.
If there is any specific endpoint or additional settings required, you can consult the Prefect documentation or check with the Prefect community for any updates.