Sha256: e342987ede5fff42117c683e930640faf24d7a2bcde468df152ddf816eeb4b27
Contents?: true
Size: 543 Bytes
Versions: 60
Compression:
Stored size: 543 Bytes
Contents
# (c) Copyright IBM Corp. 2021 # (c) Copyright Instana Inc. 2021 module Instana module Activators class Shoryuken < Activator def can_instrument? defined?(::Shoryuken) && ::Shoryuken.respond_to?(:configure_server) end 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 end end end
Version data entries
60 entries across 60 versions & 1 rubygems