Sha256: 8be0429483e1901a44345a82e50c022cde58f1b5a69691e80523d9771b3f441d

Contents?: true

Size: 1.37 KB

Versions: 11

Compression:

Stored size: 1.37 KB

Contents

# -*- ruby -*-
# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.

DependencyDetection.defer do
  @name = :sequel

  depends_on do
    defined?(::Sequel)
  end

  depends_on do
    !NewRelic::Agent.config[:disable_sequel_instrumentation] &&
    !NewRelic::Agent.config[:disable_database_instrumentation]
  end

  def supported_sequel_version?
    Sequel.const_defined?( :MAJOR ) &&
      ( Sequel::MAJOR > 3 ||
        Sequel::MAJOR == 3 && Sequel::MINOR >= 37 )
  end

  executes do
    if supported_sequel_version?

      ::NewRelic::Agent.logger.info 'Installing Sequel instrumentation'

      if Sequel::Database.respond_to?( :extension )
        Sequel::Database.extension :newrelic_instrumentation
      else
        NewRelic::Agent.logger.info "Detected Sequel version %s." % [ Sequel::VERSION ]
        NewRelic::Agent.logger.info "Please see additional documentation: " +
          "https://newrelic.com/docs/ruby/sequel-instrumentation"
      end

      Sequel.synchronize{Sequel::DATABASES.dup}.each do |db|
        db.extension :newrelic_instrumentation
      end

      Sequel::Model.plugin(:newrelic_instrumentation) if defined?(Sequel::Model)
    else

      NewRelic::Agent.logger.info "Sequel instrumentation requires at least version 3.37.0."

    end

  end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/instrumentation/sequel.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/instrumentation/sequel.rb