Burst RPS
600
Model temporary traffic spikes and quantify extra request volume.
Burst RPS
600
Total burst requests
72,000
Extra requests over baseline
48,000
Given baseline throughput, burst multiplier and duration, the tool computes burst RPS and additional request volume during the spike window.
burst_rps = baseline_rps * burst_multiplier
extra_requests = (burst_rps - baseline_rps) * duration_secondsUse this to size caches, queues and autoscaling reactions for peak events.
At 200 RPS baseline, 3x multiplier and 120 seconds, burst reaches 600 RPS.
Yes, it helps model temporary demand peaks.
Yes, add additional margin if retry amplification is expected.
No, this version models burst window only.