Class: Instana::Activators::Shoryuken
Instance Method Summary
collapse
#call, call, inherited, start
Instance Method Details
#can_instrument? ⇒ Boolean
7
8
9
|
# File 'lib/instana/activators/shoryuken.rb', line 7
def can_instrument?
defined?(::Shoryuken) && ::Shoryuken.respond_to?(:configure_server)
end
|
#instrument ⇒ Object
11
12
13
14
15
16
17
18
19
20
21
|
# File 'lib/instana/activators/shoryuken.rb', line 11
def instrument
require 'instana/instrumentation/shoryuken'
::Shoryuken.configure_server do |config|
config.server_middleware do |chain|
chain.add ::Instana::Instrumentation::Shoryuken
end
end
true
end
|