Sha256: ca6246569e7c0b797c25c47fbe5f4aff31918aef3460b7b689ee9c77f07817ca
Contents?: true
Size: 973 Bytes
Versions: 5
Compression:
Stored size: 973 Bytes
Contents
# typed: false require 'ddtrace/contrib/configuration/settings' require 'ddtrace/contrib/qless/ext' module Datadog module Contrib module Qless module Configuration # Custom settings for the Qless integration class Settings < Contrib::Configuration::Settings 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 :tag_job_data do |o| o.default { env_to_bool(Ext::ENV_TAG_JOB_DATA, false) } o.lazy end option :tag_job_tags do |o| o.default { env_to_bool(Ext::ENV_TAG_JOB_TAGS, false) } o.lazy end option :service_name, default: Ext::SERVICE_NAME end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems