Operations
Error Handling and Retry Logic
HTTP status codes, rate limits, and resilient client patterns.
Last updated: 2026-07-25
Common status codes
407 indicates auth failure. 429 signals rate limiting. 502/503 reflect upstream or pool exhaustion. Log response headers for correlation IDs.
Retry strategy
Implement exponential backoff with jitter. Cap retry attempts and rotate session IDs after repeated failures on the same target.
Concurrency limits
Each plan tier defines concurrent connection limits. Exceeding limits queues or rejects connections depending on pool configuration.
Monitoring integration
Export metrics via webhook or poll the analytics API. Track success rate, latency percentiles, and bandwidth by target domain.