Sha256: 3e77039af6f33b6be146ad3cd70d6c7eab8f3454b32e41b179739e644082a504
Contents?: true
Size: 672 Bytes
Versions: 35
Compression:
Stored size: 672 Bytes
Contents
require 'ddtrace/contrib/integration' require 'ddtrace/contrib/mysql2/configuration/settings' require 'ddtrace/contrib/mysql2/patcher' module Datadog module Contrib module Mysql2 # Description of Mysql2 integration class Integration include Contrib::Integration register_as :mysql2 def self.version Gem.loaded_specs['mysql2'] && Gem.loaded_specs['mysql2'].version end def self.present? super && defined?(::Mysql2) end def default_configuration Configuration::Settings.new end def patcher Patcher end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems