Sha256: 0e4fcdaa2986c889f15e2927f625bf3e73fd3d3c973058b9e370814a97c60464

Contents?: true

Size: 1016 Bytes

Versions: 10

Compression:

Stored size: 1016 Bytes

Contents

# 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
  named :mongo

  depends_on do
    defined?(::Mongo)
  end

  depends_on do
    require 'new_relic/agent/datastores/mongo'
    unless NewRelic::Agent::Datastores::Mongo.is_supported_version?
      NewRelic::Agent.logger.log_once(:warn, :mongo2, 'Detected unsupported Mongo 2, upgrade your Mongo Driver to 2.1 or newer for instrumentation')
    end
    NewRelic::Agent::Datastores::Mongo.is_supported_version?
  end

  executes do
    NewRelic::Agent.logger.info 'Installing Mongo instrumentation'
    install_mongo_command_subscriber
  end

  def install_mongo_command_subscriber
    require 'new_relic/agent/instrumentation/mongodb_command_subscriber'
    Mongo::Monitoring::Global.subscribe(
      Mongo::Monitoring::COMMAND,
      NewRelic::Agent::Instrumentation::MongodbCommandSubscriber.new
    )
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
newrelic_rpm-8.9.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.8.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.7.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.6.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/mongo.rb