Sha256: 36d216d21081b2afaa870595d8d0ebaab792b3173233cfb96c46fb76367c39c6

Contents?: true

Size: 957 Bytes

Versions: 2

Compression:

Stored size: 957 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.
# 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

2 entries across 2 versions & 1 rubygems

Version Path
newrelic_rpm-8.10.1 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-8.10.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb