Sha256: 1ebeebea65f9ac8129d0c0f0423dbcc05399159a1fb69605eb50ea0687a439b6

Contents?: true

Size: 1.17 KB

Versions: 3

Compression:

Stored size: 1.17 KB

Contents

module Appsignal
  class Hooks
    # @api private
    class ActiveSupportNotificationsHook < Appsignal::Hooks::Hook
      register :active_support_notifications

      BANG = "!".freeze

      def dependencies_present?
        defined?(::ActiveSupport::Notifications::Instrumenter)
      end

      def install
        ::ActiveSupport::Notifications::Instrumenter.class_eval do
          alias instrument_without_appsignal instrument

          def instrument(name, payload = {}, &block)
            # Events that start with a bang are internal to Rails
            instrument_this = name[0] != BANG

            if instrument_this
              transaction = Appsignal::Transaction.current
              transaction.start_event
            end

            return_value = instrument_without_appsignal(name, payload, &block)

            if instrument_this
              title, body, body_format = Appsignal::EventFormatter.format(name, payload)
              transaction.finish_event(
                name,
                title,
                body,
                body_format
              )
            end

            return_value
          end
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
appsignal-2.2.1 lib/appsignal/hooks/active_support_notifications.rb
appsignal-2.2.0 lib/appsignal/hooks/active_support_notifications.rb
appsignal-2.2.0.beta.1 lib/appsignal/hooks/active_support_notifications.rb