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