Sha256: 344f68498b4f35a0f8d743c690faf70ba1a2b4f918fd96c395e5f9ae894d8052

Contents?: true

Size: 766 Bytes

Versions: 2

Compression:

Stored size: 766 Bytes

Contents

# typed: true

module Datadog
  module Tracing
    module Contrib
      module Excon
        # Excon integration constants
        # @public_api Changing resource names, tag names, or environment variables creates breaking changes.
        module Ext
          ENV_ENABLED = 'DD_TRACE_EXCON_ENABLED'.freeze
          ENV_SERVICE_NAME = 'DD_TRACE_EXCON_SERVICE_NAME'.freeze
          ENV_ANALYTICS_ENABLED = 'DD_TRACE_EXCON_ANALYTICS_ENABLED'.freeze
          ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_EXCON_ANALYTICS_SAMPLE_RATE'.freeze
          DEFAULT_PEER_SERVICE_NAME = 'excon'.freeze
          SPAN_REQUEST = 'excon.request'.freeze
          TAG_COMPONENT = 'excon'.freeze
          TAG_OPERATION_REQUEST = 'request'.freeze
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ddtrace-1.9.0 lib/datadog/tracing/contrib/excon/ext.rb
ddtrace-1.8.0 lib/datadog/tracing/contrib/excon/ext.rb