2019-05-04 00:16:11 +10:00
|
|
|
ActiveSupport::Notifications.subscribe(/rack_attack/) do |_name, _start, _finish, _request_id, payload|
|
|
|
|
req = payload[:request]
|
|
|
|
|
2018-04-10 09:20:18 +10:00
|
|
|
next unless [:throttle, :blacklist].include? req.env['rack.attack.match_type']
|
2020-07-07 23:26:39 +10:00
|
|
|
|
2018-04-10 09:20:18 +10:00
|
|
|
Rails.logger.info("Rate limit hit (#{req.env['rack.attack.match_type']}): #{req.ip} #{req.request_method} #{req.fullpath}")
|
|
|
|
end
|