Sha256: bbdc188baf1bac31802dc0f459e4217855fd3f1e2ec580d3d3f52c73e9cd1969
Contents?: true
Size: 951 Bytes
Versions: 11
Compression:
Stored size: 951 Bytes
Contents
# typed: true module Datadog module Tracing module Contrib module Redis # Redis integration constants # @public_api Changing resource names, tag names, or environment variables creates breaking changes. module Ext ENV_ENABLED = 'DD_TRACE_REDIS_ENABLED'.freeze ENV_ANALYTICS_ENABLED = 'DD_TRACE_REDIS_ANALYTICS_ENABLED'.freeze ENV_ANALYTICS_SAMPLE_RATE = 'DD_TRACE_REDIS_ANALYTICS_SAMPLE_RATE'.freeze ENV_COMMAND_ARGS = 'DD_REDIS_COMMAND_ARGS'.freeze METRIC_PIPELINE_LEN = 'redis.pipeline_length'.freeze DEFAULT_PEER_SERVICE_NAME = 'redis'.freeze SPAN_COMMAND = 'redis.command'.freeze TAG_DB = 'out.redis_db'.freeze TAG_RAW_COMMAND = 'redis.raw_command'.freeze TYPE = 'redis'.freeze TAG_COMPONENT = 'redis'.freeze TAG_OPERATION_COMMAND = 'command'.freeze end end end end end
Version data entries
11 entries across 11 versions & 1 rubygems