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