Class: Upfluence::ErrorLogger::Sentry
- Inherits:
-
Object
- Object
- Upfluence::ErrorLogger::Sentry
- Defined in:
- lib/upfluence/error_logger/sentry.rb
Constant Summary collapse
- EXCLUDED_ERRORS =
( ::Sentry::Configuration::IGNORE_DEFAULT + [ 'Identity::Thrift::Forbidden', 'ActiveRecord::RecordNotFound' ] )
- MAX_TAG_SIZE =
8 * 1024
Instance Method Summary collapse
- #append_tag_extractors(klass) ⇒ Object
- #ignore_exception(*klss) ⇒ Object
-
#initialize ⇒ Sentry
constructor
A new instance of Sentry.
- #middleware ⇒ Object
- #notify(error, *args) ⇒ Object
- #user=(user) ⇒ Object
Constructor Details
#initialize ⇒ Sentry
Returns a new instance of Sentry.
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/upfluence/error_logger/sentry.rb', line 14 def initialize @tag_extractors = [] ::Sentry.init do |config| config.send_default_pii = true config.dsn = ENV.fetch('SENTRY_DSN', nil) config.environment = Upfluence.env config.excluded_exceptions = EXCLUDED_ERRORS config.logger = Upfluence.logger config.release = "#{ENV.fetch('PROJECT_NAME', nil)}-#{ENV.fetch('SEMVER_VERSION', nil)}" config.enable_tracing = false config.auto_session_tracking = false end ::Sentry.( { unit_name: unit_name, unit_type: unit_type }.select { |_, v| v } ) ::Sentry.with_scope do |scope| scope.add_event_processor do |event, hint| = @tag_extractors.map(&:extract).compact.reduce({}, &:merge) exc = hint[:exception] .merge!(exc.) if exc.respond_to? :tags tx_name = transaction_name() event.transaction = tx_name if tx_name event.extra.merge!(prepare_extra()) event end end end |
Instance Method Details
#append_tag_extractors(klass) ⇒ Object
50 51 52 |
# File 'lib/upfluence/error_logger/sentry.rb', line 50 def append_tag_extractors(klass) @tag_extractors << klass end |
#ignore_exception(*klss) ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/upfluence/error_logger/sentry.rb', line 83 def ignore_exception(*klss) klss.each do |kls| case kls.class when Class ::Sentry.configuration.excluded_exceptions << kls.name when String ::Sentry.configuration.excluded_exceptions << kls else Upfluence.logger.warn "Unexcepted argument for ignore_exception #{kls}" end end end |
#middleware ⇒ Object
79 80 81 |
# File 'lib/upfluence/error_logger/sentry.rb', line 79 def middleware ::Sentry::Rack::CaptureExceptions end |
#notify(error, *args) ⇒ Object
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/upfluence/error_logger/sentry.rb', line 54 def notify(error, *args) ::Sentry.with_scope do |scope| context = args.reduce({}) do |acc, arg| v = if arg.is_a?(Hash) arg else key = acc.empty? ? 'method' : "arg_#{acc.length}" { key => arg.inspect } end acc.merge(v) end scope.set_extras(prepare_extra(context)) ::Sentry.capture_exception(error) end rescue ::Sentry::Error => e Upfluence.logger.warning e. end |
#user=(user) ⇒ Object
75 76 77 |
# File 'lib/upfluence/error_logger/sentry.rb', line 75 def user=(user) ::Sentry.set_user(id: user.id, email: user.email) end |