I'm looking to limit requests per second on a per-backend basis (not per IP or per url, just per second).
The backend itself just forwards requests w/ samples of performance data to a logging backend - beyond X per second we have all the samples we need and can discard the rest (pref HTTP code 429) so as not to overload the logger process. Anyone have a quick example how to do that?

