Sha256: 5dc546dfb064e44359ae73de3e6a3a46ee3efe5d92a8dc37893a623032e1e972
Contents?: true
Size: 1016 Bytes
Versions: 4
Compression:
Stored size: 1016 Bytes
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module Instrumentation module Redis # The Instrumentation class contains logic to detect and install the Redis # instrumentation class Instrumentation < OpenTelemetry::Instrumentation::Base install do |_config| require_dependencies patch_client end present do defined?(::Redis) end option :peer_service, default: nil, validate: :string option :trace_root_spans, default: true, validate: :boolean option :db_statement, default: :obfuscate, validate: ->(opt) { %I[omit include obfuscate].include?(opt) } private def require_dependencies require_relative 'patches/client' end def patch_client ::Redis::Client.prepend(Patches::Client) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems