mastodon/config/initializers/rack_attack_logging.rb

5 lines
311 B
Ruby
Raw Permalink Normal View History

2018-04-10 01:20:18 +02:00
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