Sha256: 85369cba88a714b5b8ca0ad6310b5179b6ef404421d84e4849f284c442a65d6a

Contents?: true

Size: 1 KB

Versions: 30

Compression:

Stored size: 1 KB

Contents

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

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

30 entries across 30 versions & 1 rubygems

Version Path
newrelic_rpm-9.17.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.16.1 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.16.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.15.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.14.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.13.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.12.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.11.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.10.2 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.10.1 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.10.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.9.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.8.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.7.1 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.7.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.6.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.5.0 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.4.2 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.4.1 lib/new_relic/agent/instrumentation/mongo.rb
newrelic_rpm-9.4.0 lib/new_relic/agent/instrumentation/mongo.rb