Sha256: b8ab6f01d27eaa73ad78701a69d68917f9cb4552f16ccedee81bde806c034608

Contents?: true

Size: 1.37 KB

Versions: 22

Compression:

Stored size: 1.37 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

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?(ActionCable::VERSION::MAJOR) &&
      ActionCable::VERSION::MAJOR.to_i >= 5 &&
      defined?(ActiveSupport)
  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(/\A(?:perform_action|transmit.*|broadcast)\.action_cable\z/,
      NewRelic::Agent::Instrumentation::ActionCableSubscriber.new)

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

Version data entries

22 entries across 22 versions & 1 rubygems

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