Module: Bunny::Chain

Defined in:
lib/new_relic/agent/instrumentation/bunny/chain.rb

Class Method Summary collapse

Class Method Details

.instrument!Object



7
8
9
10
11
12
13
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
# File 'lib/new_relic/agent/instrumentation/bunny/chain.rb', line 7

def self.instrument!
  ::Bunny::Exchange.class_eval do
    include NewRelic::Agent::Instrumentation::Bunny::Exchange

    alias_method(:publish_without_new_relic, :publish)

    def publish(payload, opts = {})
      publish_with_tracing(payload, opts) { publish_without_new_relic(payload, opts) }
    end
  end

  ::Bunny::Queue.class_eval do
    include NewRelic::Agent::Instrumentation::Bunny::Queue

    alias_method(:pop_without_new_relic, :pop)

    def pop(opts = {:manual_ack => false}, &block)
      pop_with_tracing { pop_without_new_relic(opts, &block) }
    end

    alias_method(:purge_without_new_relic, :purge)

    def purge(*args)
      purge_with_tracing { purge_without_new_relic(*args) }
    end
  end

  ::Bunny::Consumer.class_eval do
    include NewRelic::Agent::Instrumentation::Bunny::Consumer

    alias_method(:call_without_new_relic, :call)

    def call(*args)
      call_with_tracing(*args) { call_without_new_relic(*args) }
    end
  end
end