Module: NewRelic::Security::Instrumentation::HTTPrb

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

Defined Under Namespace

Modules: Chain, Prepend

Instance Method Summary collapse

Instance Method Details

#perform_on_enter(request, options) ⇒ Object



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

def perform_on_enter(request, options)
  event = nil
  NewRelic::Security::Agent.logger.debug "OnEnter : #{self.class}.#{__method__}"
  event = NewRelic::Security::Agent::Control::Collector.collect(HTTP_REQUEST, [request.uri.to_s])
  NewRelic::Security::Instrumentation::InstrumentationUtils.add_tracing_data(options.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

#perform_on_exit(event) ⇒ Object



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

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