Sha256: b005a67f7e758ce50749dcf20d33fbaef6e71ab9f072515726cb8fd84ef1ec71
Contents?: true
Size: 897 Bytes
Versions: 5
Compression:
Stored size: 897 Bytes
Contents
# typed: false require 'ddtrace/contrib/configuration/settings' require 'ddtrace/contrib/mysql2/ext' module Datadog module Contrib module Mysql2 module Configuration # Custom settings for the Mysql2 integration 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, Ext::ENV_ANALYTICS_ENABLED_OLD], false) } o.lazy end option :analytics_sample_rate do |o| o.default { env_to_float([Ext::ENV_ANALYTICS_SAMPLE_RATE, Ext::ENV_ANALYTICS_SAMPLE_RATE_OLD], 1.0) } o.lazy end option :service_name, default: Ext::SERVICE_NAME end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems