Sha256: cfe478bd41dfe03f98a0190529653be87747e7b4dde8a5393cc55fb4a84faf2b
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module Instrumentation module Mysql2 # The Instrumentation class contains logic to detect and install the Mysql2 # instrumentation class Instrumentation < OpenTelemetry::Instrumentation::Base install do |config| if config[:enable_sql_obfuscation] config[:db_statement] = :obfuscate OpenTelemetry.logger.warn( 'Instrumentation mysql2 configuration option enable_sql_obfuscation has been deprecated,' \ 'use db_statement option instead' ) end require_dependencies patch_client end present do defined?(::Mysql2) end option :peer_service, default: nil, validate: :string option :enable_sql_obfuscation, default: false, validate: :boolean option :db_statement, default: :include, validate: ->(opt) { %I[omit include obfuscate].include?(opt) } private def require_dependencies require_relative 'patches/client' end def patch_client ::Mysql2::Client.prepend(Patches::Client) end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems