Sha256: 64c0fb0e65724e8328db0193ada92a9f52afe6ed6f84b1c5413fff4a9710ad5c

Contents?: true

Size: 1.16 KB

Versions: 13

Compression:

Stored size: 1.16 KB

Contents

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

DependencyDetection.defer do
  depends_on do
    defined?(::Passenger) && defined?(::Passenger::AbstractServer) || defined?(::IN_PHUSION_PASSENGER)
  end

  executes do
    # We're on an older version of passenger
    NewRelic::Agent.logger.warn "An older version of Phusion Passenger has been detected.  We recommend using at least release 2.1.1."

    NewRelic::Agent::Instrumentation::MetricFrame.check_server_connection = true
  end
end

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
dolores_rpm-3.2.0.6 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
dolores_rpm-3.2.0.5 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
dolores_rpm-3.2.0.4 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
dolores_rpm-3.2.0.3 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
dolores_rpm-3.2.0.2 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.3.1.beta2 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.3.1.beta1 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.3.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.3.0.beta1 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.2.0.1 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.2.0 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.2.0.beta2 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb
newrelic_rpm-3.2.0.beta1 lib/new_relic/agent/instrumentation/passenger_instrumentation.rb