Sha256: 761eb1e391ebc295d05548841a48372549f5d85896559eaf1a793c18aac97c16

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 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 = :action_cable_notifications

  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 notifications based 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

3 entries across 3 versions & 1 rubygems

Version Path
newrelic_rpm-6.5.0.357 lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb
newrelic_rpm-6.4.0.356 lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb
newrelic_rpm-6.3.0.355 lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb