0fe4cf2b0f
Moves program tag into the global configuration since this doesn't change and since Sidekiq workers get a unique context for each event. Closes #21410
24 lines
765 B
Ruby
24 lines
765 B
Ruby
# Be sure to restart your server when you modify this file.
|
|
|
|
require 'gitlab/current_settings'
|
|
include Gitlab::CurrentSettings
|
|
|
|
if Rails.env.production?
|
|
# allow it to fail: it may do so when create_from_defaults is executed before migrations are actually done
|
|
begin
|
|
sentry_enabled = current_application_settings.sentry_enabled
|
|
rescue
|
|
sentry_enabled = false
|
|
end
|
|
|
|
if sentry_enabled
|
|
Raven.configure do |config|
|
|
config.dsn = current_application_settings.sentry_dsn
|
|
config.release = Gitlab::REVISION
|
|
|
|
# Sanitize fields based on those sanitized from Rails.
|
|
config.sanitize_fields = Rails.application.config.filter_parameters.map(&:to_s)
|
|
config.tags = { program: Gitlab::Sentry.program_context }
|
|
end
|
|
end
|
|
end
|