- What's a waterfall analysis?
- A sequential timeline showing each request or processing step, its start time, and duration. The total request time is visible as the sum of cascading steps — identical to browser DevTools Network waterfall.
- How does it model P95/P99 latency?
- Each step gets a distribution (mean + standard deviation). Monte Carlo simulation runs 10,000 iterations, sampling from each distribution and aggregating end-to-end latency to produce percentile outputs.
- Can I model parallel requests?
- Yes — group steps as 'parallel' and the simulator takes the max of the group as the effective duration, then adds the coordination overhead. Useful for fan-out/fan-in patterns.