Sha256: 2a5e5fadb12ad2f69b63f6f6962363bb50712bc9bd068237d80a17b34c9b2005
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 KB
Contents
# frozen_string_literal: true require_relative '../../configuration/settings' require_relative '../ext' require_relative '../utils' module Datadog module Tracing module Contrib module ActiveRecord module Configuration # Custom settings for the ActiveRecord 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 :service_name do |o| o.default do Contrib::SpanAttributeSchema.fetch_service_name( '', Utils.adapter_name ) end o.lazy end end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems