Module: NewRelic::Security::Instrumentation::Excon::Connection

Included in:
Prepend
Defined in:
lib/newrelic_security/instrumentation-security/excon/chain.rb,
lib/newrelic_security/instrumentation-security/excon/prepend.rb,
lib/newrelic_security/instrumentation-security/excon/instrumentation.rb

Defined Under Namespace

Modules: Chain, Prepend

Instance Method Summary collapse

Instance Method Details

#request_on_enter(_params) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/newrelic_security/instrumentation-security/excon/instrumentation.rb', line 8

def request_on_enter(_params)
  event = nil
  NewRelic::Security::Agent.logger.debug "OnEnter : #{self.class}.#{__method__}"
  uri = "#{self.data[:scheme]}://#{self.data[:host]}#{self.data[:path]}"
  event = NewRelic::Security::Agent::Control::Collector.collect(HTTP_REQUEST, [uri])
  NewRelic::Security::Instrumentation::InstrumentationUtils.add_tracing_data(self.data[:headers], event) if event
  event
rescue => exception
  NewRelic::Security::Agent.logger.error "Exception in hook in #{self.class}.#{__method__}, #{exception.inspect}, #{exception.backtrace}"
ensure
  yield
  return event
end

#request_on_exit(event) ⇒ Object



22
23
24
25
26
27
28
29
# File 'lib/newrelic_security/instrumentation-security/excon/instrumentation.rb', line 22

def request_on_exit(event)
  NewRelic::Security::Agent.logger.debug "OnExit :  #{self.class}.#{__method__}"
  NewRelic::Security::Agent::Utils.create_exit_event(event)
rescue => exception
  NewRelic::Security::Agent.logger.error "Exception in hook in #{self.class}.#{__method__}, #{exception.inspect}, #{exception.backtrace}"
ensure
  yield
end