Backoff Calculator
Visualize retry timing.
Retry timing
Summary
51.00s
Total wait (deterministic)
23.22s
Total wait p50
42.81s
Total wait p95
25.60s
Longest single wait
Generated snippet
function nextDelay(attempt) {
const raw = 200 * Math.pow(2, attempt - 1);
const capped = Math.min(raw, 30000);
return Math.random() * capped;
}