Sha256: 1df12c34c66f7378377ea6f192a044741dba7ce98bd66790bcfcef6380e6e14b

Contents?: true

Size: 1.34 KB

Versions: 215

Compression:

Stored size: 1.34 KB

Contents

require 'active_support/core_ext/module/delegation'

module ActiveSupport
  module Notifications
    class Instrumenter
      attr_reader :id

      def initialize(notifier)
        @id = unique_id
        @notifier = notifier
      end

      # Instrument the given block by measuring the time taken to execute it
      # and publish it. Notice that events get sent even if an error occurs
      # in the passed-in block
      def instrument(name, payload={})
        started = Time.now

        begin
          yield
        rescue Exception => e
          payload[:exception] = [e.class.name, e.message]
          raise e
        ensure
          @notifier.publish(name, started, Time.now, @id, payload)
        end
      end

      private
        def unique_id
          SecureRandom.hex(10)
        end
    end

    class Event
      attr_reader :name, :time, :end, :transaction_id, :payload, :duration

      def initialize(name, start, ending, transaction_id, payload)
        @name           = name
        @payload        = payload.dup
        @time           = start
        @transaction_id = transaction_id
        @end            = ending
        @duration       = 1000.0 * (@end - @time)
      end

      def parent_of?(event)
        start = (time - event.time) * 1000
        start <= 0 && (start + duration >= event.duration)
      end
    end
  end
end

Version data entries

215 entries across 171 versions & 24 rubygems

Version Path
mdg-1.0.1 vendor/bundle/ruby/2.3.0/gems/activesupport-3.2.22.5/lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22.5 lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22.4 lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22.3 lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22.2 lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22.1 lib/active_support/notifications/instrumenter.rb
classiccms-0.7.5 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb
classiccms-0.7.4 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb
classiccms-0.7.3 vendor/bundle/gems/activesupport-3.2.3/lib/active_support/notifications/instrumenter.rb
active_mailer-0.0.10 test/fixtures/dummyapp_rails_3.2/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.12/lib/active_support/notifications/instrumenter.rb
activesupport-3.2.22 lib/active_support/notifications/instrumenter.rb
judge-2.0.5 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.12/lib/active_support/notifications/instrumenter.rb
activesupport-3.2.21 lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/1.8/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/activesupport-3.2.18/lib/active_support/notifications/instrumenter.rb
activesupport-3.2.20 lib/active_support/notifications/instrumenter.rb