Sha256: f71353e5cff4b4d39f58bfdcce3d405475dbe515bb517680a50c6a19923dd443

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

module Datadog
  module Tracing
    module Contrib
      module ActiveSupport
        # ActiveSupport integration constants
        # @public_api Changing resource names, tag names, or environment variables creates breaking changes.
        module Ext
          ENV_ENABLED = 'DD_TRACE_ACTIVE_SUPPORT_ENABLED'.freeze
          ENV_ANALYTICS_ENABLED = 'DD_TRACE_ACTIVE_SUPPORT_ANALYTICS_ENABLED'.freeze
          ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_ACTIVE_SUPPORT_ANALYTICS_SAMPLE_RATE'.freeze
          QUANTIZE_CACHE_MAX_KEY_SIZE = 300
          RESOURCE_CACHE_DELETE = 'DELETE'.freeze
          RESOURCE_CACHE_GET = 'GET'.freeze
          RESOURCE_CACHE_MGET = 'MGET'.freeze
          RESOURCE_CACHE_SET = 'SET'.freeze
          RESOURCE_CACHE_MSET = 'MSET'.freeze
          SERVICE_CACHE = 'active_support-cache'.freeze
          SPAN_CACHE = 'rails.cache'.freeze
          SPAN_TYPE_CACHE = 'cache'.freeze
          TAG_CACHE_BACKEND = 'rails.cache.backend'.freeze
          TAG_CACHE_KEY = 'rails.cache.key'.freeze
          TAG_CACHE_KEY_MULTI = 'rails.cache.keys'.freeze
          TAG_COMPONENT = 'active_support'.freeze
          TAG_OPERATION_CACHE = 'cache'.freeze
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ddtrace-1.12.1 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.12.0 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.11.1 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.11.0 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.11.0.beta1 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.10.1 lib/datadog/tracing/contrib/active_support/ext.rb
ddtrace-1.10.0 lib/datadog/tracing/contrib/active_support/ext.rb