Module: NewRelic::Agent::Instrumentation::RackBuilder
- Included in:
- NewRelic::Agent::Instrumentation::Rack::Prepend
- Defined in:
- lib/new_relic/agent/instrumentation/rack/instrumentation.rb
Constant Summary collapse
- INSTRUMENTATION_NAME =
'Rack'
Class Method Summary collapse
Instance Method Summary collapse
- #check_for_late_instrumentation(app) ⇒ Object
- #deferred_dependency_check ⇒ Object
- #middleware_instrumentation_enabled? ⇒ Boolean
- #run_with_tracing(app) {|::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)| ... } ⇒ Object
- #use_with_tracing(middleware_class) {|::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)| ... } ⇒ Object
-
#with_deferred_dependency_detection ⇒ Object
We patch the #to_app method for a reason that actually has nothing to do with instrumenting rack itself.
Class Method Details
.track_deferred_detection(builder_class) ⇒ Object
11 12 13 14 15 16 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 11 def self.track_deferred_detection(builder_class) class << builder_class attr_accessor :_nr_deferred_detection_ran end builder_class._nr_deferred_detection_ran = false end |
Instance Method Details
#check_for_late_instrumentation(app) ⇒ Object
26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 26 def check_for_late_instrumentation(app) return if defined?(@checked_for_late_instrumentation) && @checked_for_late_instrumentation @checked_for_late_instrumentation = true if middleware_instrumentation_enabled? if ::NewRelic::Agent::Instrumentation::MiddlewareProxy.needs_wrapping?(app) ::NewRelic::Agent.logger.info("We weren't able to instrument all of your Rack middlewares.", "To correct this, ensure you 'require \"newrelic_rpm\"' before setting up your middleware stack.") end end end |
#deferred_dependency_check ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 18 def deferred_dependency_check return if self.class._nr_deferred_detection_ran NewRelic::Agent.logger.info('Doing deferred dependency-detection before Rack startup') DependencyDetection.detect! self.class._nr_deferred_detection_ran = true end |
#middleware_instrumentation_enabled? ⇒ Boolean
49 50 51 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 49 def middleware_instrumentation_enabled? ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled? end |
#run_with_tracing(app) {|::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)| ... } ⇒ Object
53 54 55 56 57 58 59 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 53 def run_with_tracing(app) return yield(app) unless middleware_instrumentation_enabled? NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME) yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)) end |
#use_with_tracing(middleware_class) {|::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)| ... } ⇒ Object
61 62 63 64 65 66 67 68 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 61 def use_with_tracing(middleware_class) return if middleware_class.nil? return yield(middleware_class) unless middleware_instrumentation_enabled? NewRelic::Agent.record_instrumentation_invocation(INSTRUMENTATION_NAME) yield(::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)) end |
#with_deferred_dependency_detection ⇒ Object
We patch the #to_app method for a reason that actually has nothing to do with instrumenting rack itself. It happens to be a convenient and easy-to-hook point that happens late in the startup sequence of almost every application, making it a good place to do a final call to DependencyDetection.detect!, since all libraries are likely loaded at this point.
44 45 46 47 |
# File 'lib/new_relic/agent/instrumentation/rack/instrumentation.rb', line 44 def with_deferred_dependency_detection deferred_dependency_check yield.tap { |result| check_for_late_instrumentation(result) } end |