An Azure service that provides a platform-managed, scalable, and highly available application delivery controller as a service.
No. On Application Gateway WAF v2, a rate limit of 600 requests per 1 minute is not documented as a fixed 10 requests/second limit.
What is documented:
- Application Gateway WAF v2 rate limiting uses a sliding window algorithm.
- The threshold is defined as the number of requests allowed within the specified time period.
- In the first window where the threshold is breached, additional matching traffic is dropped.
- From the second window onward, traffic up to the configured threshold within the window is allowed, which creates a throttling effect.
- With GroupByUserSession = ClientAddr, the threshold is counted independently per source IP address.
So the supported interpretation is:
- 600/minute means evaluation against a rolling 1-minute window per client IP, not a separate documented per-second cap.
- The behavior is based on the sliding window logic, so enforcement does not have to align with simple second-by-second math such as “10 per second.”
The observed pattern described in the logs is not enough to conclude that Application Gateway WAF converts 600/minute into an instantaneous 10 req/s rule. The documented behavior is a sliding 60-second window, not a fixed per-second limiter.
References: