Sha256: 610dacbcf38d9958230c09de21a2a99bd6fe239f09cee5da400306a1e8e520cd
Contents?: true
Size: 1 KB
Versions: 3
Compression:
Stored size: 1 KB
Contents
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
3 entries across 3 versions & 1 rubygems