Sha256: 9097760afda42e3415c1eb594a2d2270e09b497381e215868217095dc78c8d45
Contents?: true
Size: 1.05 KB
Versions: 5
Compression:
Stored size: 1.05 KB
Contents
# frozen_string_literal: true require_relative '../../../span_operation' require_relative '../../configuration/settings' require_relative '../ext' module Datadog module Tracing module Contrib module DelayedJob module Configuration # Custom settings for the DelayedJob 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 option :client_service_name option :error_handler, default: Tracing::SpanOperation::Events::DEFAULT_ON_ERROR end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems