class Datadog::Contrib::Rails::Configuration::Settings

Custom settings for the Rails integration

Public Class Methods

new(options = {}) click to toggle source
Calls superclass method
# File lib/ddtrace/contrib/rails/configuration/settings.rb, line 9
def initialize(options = {})
  super(options)

  # NOTE: Eager load these
  #       Rails integration is responsible for orchestrating other integrations.
  #       When using environment variables, settings will not be automatically
  #       filled because nothing explicitly calls them. They must though, so
  #       integrations like ActionPack can receive the value as it should.
  #       Trigger these manually to force an eager load and propagate them.
  analytics_enabled
  analytics_sample_rate
end