Skip to content
Snippets Groups Projects
Unverified Commit 80a944c8 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Log rate limit hits (#7096)

Fix #7095
parent 0c52654b
No related branches found
No related tags found
No related merge requests found
ActiveSupport::Notifications.subscribe('rack.attack') do |_name, _start, _finish, _request_id, req|
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment