Health Check Endpoint - Definição do Glossário CI/CD
Um health check endpoint é uma URL que um serviço expõe para informar se está saudável.
Um health check endpoint é uma rota HTTP (frequentemente /healthz) que retorna se um serviço está funcionando, para que orquestradores, load balancers e monitores possam sondar seu status.
Endpoints de health sustentam liveness probes, readiness probes e verificações de load balancer; um bom endpoint verifica dependências reais em vez de sempre retornar 200.
Guias relacionados
Liveness Probe - CI/CD Glossary DefinitionLiveness Probe: A liveness probe is a Kubernetes check that determines whether a container is still healthy;…
Readiness Probe - CI/CD Glossary DefinitionReadiness Probe: A readiness probe is a Kubernetes check that determines whether a container should receive t…
Startup Probe - CI/CD Glossary DefinitionStartup Probe: A startup probe is a Kubernetes check that gives a slow-starting container time to initialize…