Class: Appsignal::Hooks::NetHttpHook Private

Inherits:
Hook show all
Defined in:
lib/appsignal/hooks/net_http.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)


11
12
13
# File 'lib/appsignal/hooks/net_http.rb', line 11

def dependencies_present?
  Appsignal.config && Appsignal.config[:instrument_net_http]
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.



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/appsignal/hooks/net_http.rb', line 15

def install
  Net::HTTP.class_eval do
    alias request_without_appsignal request

    def request(request, body = nil, &block)
      Appsignal.instrument(
        "request.net_http",
        "#{request.method} #{use_ssl? ? "https" : "http"}://#{request["host"] || address}"
      ) do
        request_without_appsignal(request, body, &block)
      end
    end
  end
end