Sha256: f5021331eabc20bcec4048ef2aae1ba573639cee9829dfc941911774a721e326

Contents?: true

Size: 865 Bytes

Versions: 15

Compression:

Stored size: 865 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
  @name = :rainbows

  depends_on do
    defined?(::Rainbows) && defined?(::Rainbows::HttpServer)
  end

  executes do
    ::NewRelic::Agent.logger.info 'Installing Rainbows instrumentation'
    ::NewRelic::Agent.logger.info 'Detected Rainbows, please see additional documentation: https://newrelic.com/docs/troubleshooting/im-using-unicorn-and-i-dont-see-any-data'
  end

  executes do
    Rainbows::HttpServer.class_eval do
      old_worker_loop = instance_method(:worker_loop)
      define_method(:worker_loop) do |worker|
        NewRelic::Agent.after_fork(:force_reconnect => true)
        old_worker_loop.bind(self).call(worker)
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
newrelic_rpm-8.6.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.5.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.4.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.3.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.2.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.1.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-8.0.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-7.2.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-7.1.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-7.0.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-6.15.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-6.14.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-6.13.1 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-6.13.0 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
newrelic_rpm-6.12.0.367 lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb