Health Endpoint - CI/CD Glossary Definition
A health endpoint is a URL that reports whether a service is up, used to gate traffic during deploys.
A health endpoint is a URL (often /health) that reports whether a service is running, used by load balancers and deploy pipelines to gate traffic. It typically returns 200 when healthy.
Deploy pipelines poll the health endpoint after rollout and only shift traffic once it returns 200. A failing health check triggers rollback in many CD systems.
Related guides
Readiness Endpoint - CI/CD Glossary DefinitionReadiness Endpoint: A readiness endpoint reports whether a service is ready to accept traffic, for example af…
Liveness Endpoint - CI/CD Glossary DefinitionLiveness Endpoint: A liveness endpoint reports whether a service process is alive and not deadlocked; a faili…
Status Code - CI/CD Glossary DefinitionStatus Code: A status code is the three-digit HTTP number in a response that signals the result: 2xx success,…