Sha256: ce67a636aa772b37098f36107fb4a99f85bb9b7d264f249cd686d66d45232ad9
Contents?: true
Size: 864 Bytes
Versions: 5
Compression:
Stored size: 864 Bytes
Contents
# frozen_string_literal: true require_relative '../../configuration/settings' require_relative '../ext' module Datadog module Tracing module Contrib module Roda module Configuration # Custom settings for the Roda 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, 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 end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems