summaryrefslogtreecommitdiff
path: root/config/initializers/rack_attack_logging.rb
blob: 8bb9ea29c33406e655ac6816edc780b0a81e0650 (plain)
1
2
3
4
5
6
7
# Adds logging for all Rack Attack blocks and throttling events.

ActiveSupport::Notifications.subscribe('rack.attack') do |name, start, finish, request_id, req|
  if [:throttle, :blacklist].include? req.env['rack.attack.match_type']
    Rails.logger.info("Rack_Attack: #{req.env['rack.attack.match_type']} #{req.ip} #{req.request_method} #{req.fullpath}")
  end
end