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