Class: Excon::Middleware::Instrumentor

Inherits:
Base
  • Object
show all
Defined in:
lib/excon/middlewares/instrumentor.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Excon::Middleware::Base

Instance Method Details

#error_call(datum) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/excon/middlewares/instrumentor.rb', line 5

def error_call(datum)
  if datum.has_key?(:instrumentor)
    datum[:instrumentor].instrument("#{datum[:instrumentor_name]}.error", :error => datum[:error]) do
      @stack.error_call(datum)
    end
  else
    @stack.error_call(datum)
  end
end

#request_call(datum) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/excon/middlewares/instrumentor.rb', line 15

def request_call(datum)
  if datum.has_key?(:instrumentor)
    if datum[:retries_remaining] < datum[:retry_limit]
      event_name = "#{datum[:instrumentor_name]}.retry"
    else
      event_name = "#{datum[:instrumentor_name]}.request"
    end
    datum[:instrumentor].instrument(event_name, datum) do
      @stack.request_call(datum)
    end
  else
    @stack.request_call(datum)
  end
end

#response_call(datum) ⇒ Object



30
31
32
33
34
35
36
37
38
# File 'lib/excon/middlewares/instrumentor.rb', line 30

def response_call(datum)
  if datum.has_key?(:instrumentor)
    datum[:instrumentor].instrument("#{datum[:instrumentor_name]}.response", datum[:response]) do
      @stack.response_call(datum)
    end
  else
    @stack.response_call(datum)
  end
end