Sha256: 91d82d7c4fe5745a02095d983576cd876b2debbd770c3b7c39f014cff8f8e82a
Contents?: true
Size: 729 Bytes
Versions: 7
Compression:
Stored size: 729 Bytes
Contents
# frozen_string_literal: true # Copyright 2020 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| require_dependencies patch_client end present do defined?(::Mysql2) end 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
7 entries across 7 versions & 1 rubygems