gitlab-org--gitlab-foss/config/initializers/rack_attack_logging.rb

16 lines
477 B
Ruby
Raw Normal View History

# frozen_string_literal: true
#
2016-11-18 18:45:52 +00:00
# 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']
Gitlab::AuthLogger.error(
message: 'Rack_Attack',
env: req.env['rack.attack.match_type'],
ip: req.ip,
request_method: req.request_method,
fullpath: req.fullpath
)
2016-11-18 18:45:52 +00:00
end
end