Module: NewRelic::Security::Instrumentation::HTTPX::Session
- Included in:
- Prepend
- Defined in:
- lib/newrelic_security/instrumentation-security/httpx/chain.rb,
lib/newrelic_security/instrumentation-security/httpx/prepend.rb,
lib/newrelic_security/instrumentation-security/httpx/instrumentation.rb
Defined Under Namespace
Instance Method Summary collapse
Instance Method Details
#send_requests_on_enter(*args) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/newrelic_security/instrumentation-security/httpx/instrumentation.rb', line 8 def send_requests_on_enter(*args) event = nil NewRelic::Security::Agent.logger.debug "OnEnter : #{self.class}.#{__method__}" ic_args = [] args.each { |arg| ic_args << arg.uri.to_s } event = NewRelic::Security::Agent::Control::Collector.collect(HTTP_REQUEST, ic_args) args.each do |arg| NewRelic::Security::Instrumentation::InstrumentationUtils.add_tracing_data(arg.headers, event) if event end event rescue => exception NewRelic::Security::Agent.logger.error "Exception in hook in #{self.class}.#{__method__}, #{exception.inspect}, #{exception.backtrace}" ensure yield return event end |
#send_requests_on_exit(event) ⇒ Object
25 26 27 28 29 30 31 32 |
# File 'lib/newrelic_security/instrumentation-security/httpx/instrumentation.rb', line 25 def send_requests_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 |