Sha256: 1ecf64c737c6fc9a0780fbfc35e1f230322ae0de4a343958279c471eb3837533
Contents?: true
Size: 1 KB
Versions: 5
Compression:
Stored size: 1 KB
Contents
# typed: false # 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 :error_handler, default: Datadog::Tracer::DEFAULT_ON_ERROR option :tag_body, default: false end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems