Sha256: 607cb36578f37c261d0f5151a9e6e5f9a3d7238e5354e31bf153ded6ef8a40a7
Contents?: true
Size: 1.02 KB
Versions: 15
Compression:
Stored size: 1.02 KB
Contents
# typed: true module Datadog module AppSec module Contrib # Instrument Sinatra. module Sinatra # Sinatra framework code, used to essentially: # - handle configuration entries which are specific to Datadog tracing # - instrument parts of the framework when needed module Framework # Configure Rack from Sinatra, but only if Rack has not been configured manually beforehand def self.setup Datadog::AppSec.configure do |datadog_config| sinatra_config = config_with_defaults(datadog_config) activate_rack!(datadog_config, sinatra_config) end end def self.config_with_defaults(datadog_config) datadog_config[:sinatra] end # Apply relevant configuration from Sinatra to Rack def self.activate_rack!(datadog_config, sinatra_config) datadog_config.instrument( :rack, ) end end end end end end
Version data entries
15 entries across 15 versions & 1 rubygems