Sha256: ab0dc7a4f8076aecd7729f8d9ca764f064c7da9c1628daf6dc50925cbc780c97

Contents?: true

Size: 929 Bytes

Versions: 4

Compression:

Stored size: 929 Bytes

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

DependencyDetection.defer do
  @name = :passenger

  depends_on do
    defined?(PhusionPassenger)
  end

  executes do
    NewRelic::Agent.logger.debug("Installing Passenger event hooks.")

    PhusionPassenger.on_event(:stopping_worker_process) do
      NewRelic::Agent.logger.debug("Passenger stopping this process, shutdown the agent.")
      NewRelic::Agent.instance.shutdown
    end

    PhusionPassenger.on_event(:starting_worker_process) do |forked|
      # We want to reset the stats from the stats engine in case any carried
      # over into the spawned process.  Don't clear them in case any were
      # cached.  We do this even in conservative spawning.
      NewRelic::Agent.after_fork(:force_reconnect => true)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
newrelic_rpm-9.0.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-8.16.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-8.15.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-8.14.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb