Module: NewRelic::Security::Instrumentation::AsyncHttp

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

Defined Under Namespace

Modules: Chain, Prepend

Instance Method Summary collapse

Instance Method Details

#call_on_enter(_method, url, headers, _body) ⇒ Object



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

def call_on_enter(_method, url, headers, _body)
  event = nil
  NewRelic::Security::Agent.logger.debug "OnEnter : #{self.class}.#{__method__}"
  uri = ::URI.parse url
  event = NewRelic::Security::Agent::Control::Collector.collect(HTTP_REQUEST, [uri.to_s])
  NewRelic::Security::Instrumentation::InstrumentationUtils.append_tracing_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

#call_on_exit(event) ⇒ Object



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

def call_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