Module: NewRelic::Security::Instrumentation::HTTPrb::Prepend
- 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, ) retval = nil event = perform_on_enter(request, ) { retval = super } perform_on_exit(event) { return retval } end |