Health Check
A lightweight endpoint or probe a system polls to decide whether an instance is ready to receive traffic.
A health check is a cheap, frequent probe (often just an HTTP GET /healthz) that a load balancer, orchestrator, or service registry polls to decide whether an instance should keep receiving traffic. Liveness checks ask "is this process still running at all," while readiness checks ask the stricter question "is it currently able to serve a request correctly" — a subtle but important distinction, since a process can be alive but temporarily unable to serve (e.g. still warming a cache).