Sha256: f663a3a7339b50afb1174aac20bd002123ff116075f731d47bea7d4939a7b50f

Contents?: true

Size: 845 Bytes

Versions: 34

Compression:

Stored size: 845 Bytes

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.

DependencyDetection.defer do
  @name = :unicorn

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

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

  executes do
    Unicorn::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

34 entries across 34 versions & 1 rubygems

Version Path
newrelic_rpm-3.7.3.204 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.3.199 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.2.195 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.2.192 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.2.190.beta lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.1.188 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.1.182 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.1.180 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.0.177 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.7.0.174.beta lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.9.171 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.8.168 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.8.164 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.7.159 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.7.159.beta lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.7.152 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.6.147 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.5.130 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.4.122 lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb
newrelic_rpm-3.6.4.113.beta lib/new_relic/agent/instrumentation/unicorn_instrumentation.rb