Class: Appsignal::Hooks::PumaHook Private

Inherits:
Hook show all
Defined in:
lib/appsignal/hooks/puma.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Method Summary collapse

Methods inherited from Hook

#initialize, #installed?, register, #try_to_install

Constructor Details

This class inherits a constructor from Appsignal::Hooks::Hook

Instance Method Details

#dependencies_present?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


9
10
11
# File 'lib/appsignal/hooks/puma.rb', line 9

def dependencies_present?
  defined?(::Puma)
end

#installObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/appsignal/hooks/puma.rb', line 13

def install
  if ::Puma.respond_to?(:stats)
    Appsignal::Minutely.probes.register :puma, PumaProbe
  end

  if ::Puma.respond_to?(:cli_config) && ::Puma.cli_config
    ::Puma.cli_config.options[:before_worker_boot] ||= []
    ::Puma.cli_config.options[:before_worker_boot] << proc do |_id|
      Appsignal.forked
    end

    ::Puma.cli_config.options[:before_worker_shutdown] ||= []
    ::Puma.cli_config.options[:before_worker_shutdown] << proc do |_id|
      Appsignal.stop("puma before_worker_shutdown")
    end
  end

  return unless defined?(::Puma::Cluster)
  # For clustered mode with multiple workers
  ::Puma::Cluster.class_eval do
    alias stop_workers_without_appsignal stop_workers

    def stop_workers
      Appsignal.stop("puma cluster")
      stop_workers_without_appsignal
    end
  end
end