Class: Excon::Middleware::Instrumentor
- Inherits:
-
Base
- Object
- Base
- Excon::Middleware::Instrumentor
show all
- Defined in:
- lib/excon/middlewares/instrumentor.rb
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Base
#initialize
Class Method Details
.valid_parameter_keys ⇒ Object
5
6
7
8
9
10
11
|
# File 'lib/excon/middlewares/instrumentor.rb', line 5
def self.valid_parameter_keys
[
:logger,
:instrumentor,
:instrumentor_name
]
end
|
Instance Method Details
#error_call(datum) ⇒ Object
13
14
15
16
17
18
19
20
21
|
# File 'lib/excon/middlewares/instrumentor.rb', line 13
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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# File 'lib/excon/middlewares/instrumentor.rb', line 23
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
38
39
40
41
42
43
44
45
46
|
# File 'lib/excon/middlewares/instrumentor.rb', line 38
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
|