This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2019-05-03 07:16:11 -07:00
|
|
|
ActiveSupport::Notifications.subscribe(/rack_attack/) do |_name, _start, _finish, _request_id, payload|
|
|
|
|
req = payload[:request]
|
|
|
|
|
2018-04-09 16:20:18 -07:00
|
|
|
next unless [:throttle, :blacklist].include? req.env['rack.attack.match_type']
|
|
|
|
Rails.logger.info("Rate limit hit (#{req.env['rack.attack.match_type']}): #{req.ip} #{req.request_method} #{req.fullpath}")
|
|
|
|
end
|