Does SpiceDB have an HTTP-based health check as a ...
# spicedb
a
Does SpiceDB have an HTTP-based health check as a part of its REST API? Or can it be added? 😉 The reason I am asking is that on AWS ECS we can use gRPC health checks, but they cannot look at the content of the payload. So, when we have something like
{ grpcstatus : OK, response: { healthCheckStatus : NOT_SERVING } }
the only thing that the health checker sees is
OK
but the task is clearly not healthy... We are hoping that an HTTP endpoint would return a different code (not 200) for a
NON_SERVING
scenario making checks easier...
5 Views