Sha256: 3760b12f49ffb9df3b46a3f897d864ee0522af926a6ce7cac53e3e6327b29d6f

Contents?: true

Size: 1.19 KB

Versions: 11

Compression:

Stored size: 1.19 KB

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
require 'new_relic/agent/instrumentation/action_cable_subscriber'
require 'new_relic/agent/prepend_supportability'

DependencyDetection.defer do
  @name = :rails5_action_cable

  depends_on do
    defined?(::Rails::VERSION::MAJOR) &&
     ::Rails::VERSION::MAJOR.to_i == 5 &&
       defined?(::ActionCable)
  end

  depends_on do
    !NewRelic::Agent.config[:disable_action_cable_instrumentation] &&
      !NewRelic::Agent::Instrumentation::ActionCableSubscriber.subscribed?
  end

  executes do
    ::NewRelic::Agent.logger.info 'Installing Rails 5 Action Cable instrumentation'
  end

  executes do
    # enumerate the specific events we want so that we do not get unexpected additions in the future
    ActiveSupport::Notifications.subscribe(/(perform_action|transmit)\.action_cable/,
      NewRelic::Agent::Instrumentation::ActionCableSubscriber.new)

    ActiveSupport.on_load(:action_cable) do
      ::NewRelic::Agent::PrependSupportability.record_metrics_for(
        ::ActionCable::Engine,
        ::ActionCable::RemoteConnections)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
newrelic_rpm-6.2.0.354 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-6.1.0.352 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-6.0.0.351 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.7.0.350 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.6.0.349 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.5.0.348 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.4.0.347 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.3.0.346 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.2.0.345 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.1.0.344 lib/new_relic/agent/instrumentation/rails5/action_cable.rb
newrelic_rpm-5.0.0.342 lib/new_relic/agent/instrumentation/rails5/action_cable.rb