Reference · Glossary

Liveness probe

A lightweight check that asks **“Is the process alive?”** — if it fails, orchestrators restart the container.

#When to use

Kubernetes, Cloud Run, or any platform that auto-restarts stuck workers serving LLM APIs.

#When not to

Do not embed slow dependency checks — that belongs on readiness.

#Example

`GET /health/live` returns 200 if the event loop responds within 1s.