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

Includes:
NewRelic::Security::Instrumentation::HTTPrb
Defined in:
lib/newrelic_security/instrumentation-security/httprb/prepend.rb

Instance Method Summary collapse

Methods included from NewRelic::Security::Instrumentation::HTTPrb

#perform_on_enter, #perform_on_exit

Instance Method Details

#perform(request, options) ⇒ Object



7
8
9
10
11
# File 'lib/newrelic_security/instrumentation-security/httprb/prepend.rb', line 7

def perform(request, options)
  retval = nil
  event = perform_on_enter(request, options) { retval = super }
  perform_on_exit(event) { return retval }
end