Sha256: 37d408ba155f6774beb4951c297c4abf7cea6f60f772121a13de04ab83ed3bcc
Contents?: true
Size: 934 Bytes
Versions: 5
Compression:
Stored size: 934 Bytes
Contents
# frozen_string_literal: true require 'ddtrace/contrib/configuration/settings' module Datadog module Contrib module Sneakers module Configuration # Default settings for the Shoryuken integration class Settings < Datadog::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 option :tag_body, default: false end end end end end
Version data entries
5 entries across 5 versions & 2 rubygems