Are there any health check endpoints when I’m deploying prodigy services to production?
something like
http://x.x.x.x:8080/health
that would return a 200 OK status if I post to it from any application health monitoring tool.
There aren’t explicit health check endpoints, but you should be able to GET http://x.x.x.x:8080/project
whenever the server is running.
It returns the project configuration object, so it should be light enough for a health check.
Update: Since 1.11.8 there is a health (and healthz) endpoint in the web api.
1 Like