Sha256: 04b8f0116b232e41d4e9ab586304682a6f7b7ff6fe71484d548e1b1c58486aa5

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

# frozen_string_literal: true

module ElasticAPM
  # @api private
  module Spies
    # @api private
    class ShoryukenSpy
      # @api private
      class Middleware
        def call(worker_instance, queue, sqs_msg, body)
          transaction =
            ElasticAPM.start_transaction(
              job_class(worker_instance, body),
              'shoryuken.job'
            )

          ElasticAPM.set_label('shoryuken.id', sqs_msg.message_id)
          ElasticAPM.set_label('shoryuken.queue', queue)

          yield

          transaction&.done :success
        rescue ::Exception => e
          ElasticAPM.report(e, handled: false)
          transaction&.done :error
          raise
        ensure
          ElasticAPM.end_transaction
        end

        private

        def job_class(worker_instance, body)
          klass = body['job_class'] if body.is_a?(Hash)
          klass || worker_instance.class.name
        end
      end

      def install
        ::Shoryuken.server_middleware do |chain|
          chain.add Middleware
        end
      end
    end

    register 'Shoryuken', 'shoryuken', ShoryukenSpy.new
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
elastic-apm-3.6.0 lib/elastic_apm/spies/shoryuken.rb
elastic-apm-3.5.0 lib/elastic_apm/spies/shoryuken.rb
elastic-apm-3.4.0 lib/elastic_apm/spies/shoryuken.rb