Sha256: 46575763c6b79afb30ce341f177c7682214d56e70bbb46c501848a4a8cdf049c
Contents?: true
Size: 921 Bytes
Versions: 12
Compression:
Stored size: 921 Bytes
Contents
# typed: false require_relative '../../configuration/settings' require_relative '../ext' module Datadog module Tracing module Contrib module ActiveSupport module Configuration # Custom settings for the ActiveSupport integration # @public_api class Settings < Contrib::Configuration::Settings option :enabled do |o| o.default { env_to_bool(Ext::ENV_ENABLED, true) } o.lazy end option :analytics_enabled do |o| o.default { env_to_bool(Ext::ENV_ANALYTICS_ENABLED, false) } o.lazy end option :analytics_sample_rate do |o| o.default { env_to_float(Ext::ENV_ANALYTICS_SAMPLE_RATE, 1.0) } o.lazy end option :cache_service, default: Ext::SERVICE_CACHE end end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems