mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-11 22:51:28 +00:00
add When to Use Each Endpoint (#13193)
This commit is contained in:
parent
cc4881eedd
commit
547c46cd02
1 changed files with 9 additions and 0 deletions
|
|
@ -1,6 +1,15 @@
|
|||
# Health Checks
|
||||
Use this to health check all LLMs defined in your config.yaml
|
||||
|
||||
## When to Use Each Endpoint
|
||||
|
||||
| Endpoint | Use Case | Purpose |
|
||||
|----------|----------|---------|
|
||||
| `/health/liveliness` | **Container liveness probes** | Basic alive check - use for container restart decisions |
|
||||
| `/health/readiness` | **Load balancer health checks** | Ready to accept traffic - includes DB connection status |
|
||||
| `/health` | **Model health monitoring** | Comprehensive LLM model health - makes actual API calls |
|
||||
| `/health/services` | **Service debugging** | Check specific integrations (datadog, langfuse, etc.) |
|
||||
|
||||
## Summary
|
||||
|
||||
The proxy exposes:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue