Sha256: 7946236dc8d518466f70ea27f39ae27f1a1c3496064d82d66e9084568625eefb
Contents?: true
Size: 990 Bytes
Versions: 2
Compression:
Stored size: 990 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: %I[omit include obfuscate] 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
2 entries across 2 versions & 1 rubygems