newrelic_rpm 3.8.1.221 → 3.9.0.229
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/.gitignore +1 -0
- data/.yardopts +2 -0
- data/CHANGELOG +95 -0
- data/README.md +9 -3
- data/Rakefile +6 -0
- data/lib/new_relic/agent.rb +37 -52
- data/lib/new_relic/agent/agent.rb +32 -64
- data/lib/new_relic/agent/agent_logger.rb +3 -2
- data/lib/new_relic/agent/audit_logger.rb +2 -1
- data/lib/new_relic/agent/busy_calculator.rb +10 -8
- data/lib/new_relic/agent/configuration.rb +0 -13
- data/lib/new_relic/agent/configuration/default_source.rb +27 -20
- data/lib/new_relic/agent/configuration/manager.rb +101 -27
- data/lib/new_relic/agent/cross_app_monitor.rb +43 -50
- data/lib/new_relic/agent/cross_app_tracing.rb +13 -12
- data/lib/new_relic/agent/error_collector.rb +31 -35
- data/lib/new_relic/agent/harvester.rb +5 -1
- data/lib/new_relic/agent/hostname.rb +17 -0
- data/lib/new_relic/agent/http_clients/curb_wrappers.rb +1 -1
- data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +1 -1
- data/lib/new_relic/agent/http_clients/uri_util.rb +13 -0
- data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +18 -32
- data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +15 -15
- data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
- data/lib/new_relic/agent/instrumentation/active_record.rb +6 -4
- data/lib/new_relic/agent/instrumentation/active_record_helper.rb +3 -2
- data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +18 -20
- data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +79 -93
- data/lib/new_relic/agent/instrumentation/curb.rb +3 -3
- data/lib/new_relic/agent/instrumentation/data_mapper.rb +5 -4
- data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +96 -0
- data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +69 -0
- data/lib/new_relic/agent/instrumentation/net.rb +1 -1
- data/lib/new_relic/agent/instrumentation/queue_time.rb +21 -13
- data/lib/new_relic/agent/instrumentation/rack.rb +85 -74
- data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -1
- data/lib/new_relic/agent/instrumentation/rails_middleware.rb +39 -0
- data/lib/new_relic/agent/instrumentation/rubyprof.rb +3 -3
- data/lib/new_relic/agent/instrumentation/sidekiq.rb +28 -5
- data/lib/new_relic/agent/instrumentation/sinatra.rb +4 -4
- data/lib/new_relic/agent/instrumentation/typhoeus.rb +4 -2
- data/lib/new_relic/agent/javascript_instrumentor.rb +34 -30
- data/lib/new_relic/agent/memory_logger.rb +12 -12
- data/lib/new_relic/agent/method_tracer.rb +34 -74
- data/lib/new_relic/agent/new_relic_service.rb +1 -1
- data/lib/new_relic/agent/pipe_channel_manager.rb +3 -3
- data/lib/new_relic/agent/request_sampler.rb +10 -11
- data/lib/new_relic/agent/samplers/vm_sampler.rb +6 -6
- data/lib/new_relic/agent/shim_agent.rb +2 -1
- data/lib/new_relic/agent/sql_sampler.rb +52 -27
- data/lib/new_relic/agent/stats.rb +24 -10
- data/lib/new_relic/agent/stats_engine/gc_profiler.rb +5 -17
- data/lib/new_relic/agent/stats_engine/metric_stats.rb +106 -58
- data/lib/new_relic/agent/stats_engine/stats_hash.rb +20 -24
- data/lib/new_relic/agent/supported_versions.rb +3 -1
- data/lib/new_relic/agent/threading/agent_thread.rb +42 -11
- data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
- data/lib/new_relic/agent/threading/thread_profile.rb +2 -2
- data/lib/new_relic/agent/traced_method_stack.rb +28 -18
- data/lib/new_relic/agent/transaction.rb +249 -196
- data/lib/new_relic/agent/transaction_metrics.rb +57 -0
- data/lib/new_relic/agent/transaction_sample_builder.rb +10 -7
- data/lib/new_relic/agent/transaction_sampler.rb +81 -45
- data/lib/new_relic/agent/transaction_state.rb +38 -49
- data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +15 -18
- data/lib/new_relic/agent/vm/rubinius_vm.rb +4 -2
- data/lib/new_relic/cli/commands/deployments.rb +3 -2
- data/lib/new_relic/control/frameworks/ruby.rb +2 -3
- data/lib/new_relic/control/frameworks/sinatra.rb +0 -7
- data/lib/new_relic/control/instance_methods.rb +3 -5
- data/lib/new_relic/json_wrapper.rb +2 -0
- data/lib/new_relic/language_support.rb +1 -1
- data/lib/new_relic/local_environment.rb +0 -16
- data/lib/new_relic/metric_spec.rb +10 -38
- data/lib/new_relic/noticed_error.rb +16 -11
- data/lib/new_relic/rack/agent_hooks.rb +4 -10
- data/lib/new_relic/rack/agent_middleware.rb +31 -0
- data/lib/new_relic/rack/browser_monitoring.rb +7 -13
- data/lib/new_relic/rack/developer_mode.rb +16 -59
- data/lib/new_relic/rack/error_collector.rb +16 -54
- data/lib/new_relic/recipes.rb +8 -101
- data/lib/new_relic/recipes/capistrano3.rb +66 -0
- data/lib/new_relic/recipes/capistrano_legacy.rb +98 -0
- data/lib/new_relic/transaction_sample.rb +6 -54
- data/lib/new_relic/transaction_sample/composite_segment.rb +1 -1
- data/lib/new_relic/transaction_sample/segment.rb +12 -4
- data/lib/new_relic/transaction_sample/summary_segment.rb +1 -1
- data/lib/new_relic/version.rb +2 -2
- data/lib/newrelic_rpm.rb +1 -1
- data/lib/sequel/extensions/newrelic_instrumentation.rb +19 -19
- data/lib/tasks/tests.rake +20 -1
- data/lib/tasks/versions.html.erb +0 -4
- data/lib/tasks/versions.rake +4 -3
- data/newrelic.yml +4 -12
- data/newrelic_rpm.gemspec +1 -1
- data/test/agent_helper.rb +146 -44
- data/test/config/newrelic.yml +0 -1
- data/test/environments/norails/Gemfile +1 -1
- data/test/environments/rails21/Gemfile +1 -1
- data/test/environments/rails22/Gemfile +1 -1
- data/test/environments/rails23/Gemfile +1 -1
- data/test/environments/rails30/Gemfile +1 -1
- data/test/environments/rails31/Gemfile +1 -1
- data/test/environments/rails32/Gemfile +1 -1
- data/test/environments/rails40/Gemfile +1 -1
- data/test/environments/rails41/Gemfile +1 -1
- data/test/multiverse/lib/multiverse/runner.rb +13 -1
- data/test/multiverse/lib/multiverse/suite.rb +26 -9
- data/test/multiverse/suites/active_record/config/newrelic.yml +0 -1
- data/test/multiverse/suites/activemerchant/Envfile +18 -1
- data/test/multiverse/suites/agent_only/audit_log_test.rb +4 -3
- data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +35 -0
- data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -1
- data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +1 -0
- data/test/multiverse/suites/agent_only/encoding_handling_test.rb +3 -2
- data/test/multiverse/suites/agent_only/exclusive_time_test.rb +178 -0
- data/test/multiverse/suites/agent_only/logging_test.rb +10 -6
- data/test/multiverse/suites/agent_only/marshaling_test.rb +11 -9
- data/test/multiverse/suites/agent_only/script/loading.rb +1 -1
- data/test/multiverse/suites/agent_only/service_timeout_test.rb +5 -1
- data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +2 -1
- data/test/multiverse/suites/agent_only/xray_sessions_test.rb +9 -9
- data/test/multiverse/suites/capistrano/Capfile +26 -0
- data/test/multiverse/suites/capistrano/Envfile +18 -0
- data/test/multiverse/suites/capistrano/config/deploy.rb +10 -0
- data/test/multiverse/suites/capistrano/config/deploy/production.rb +9 -0
- data/test/multiverse/suites/capistrano/config/newrelic.yml +21 -0
- data/test/multiverse/suites/capistrano/deployment_test.rb +47 -0
- data/test/multiverse/suites/capistrano2/Capfile +4 -0
- data/test/multiverse/suites/capistrano2/Envfile +4 -0
- data/test/multiverse/suites/capistrano2/config/deploy.rb +19 -0
- data/test/multiverse/suites/capistrano2/config/newrelic.yml +21 -0
- data/test/multiverse/suites/capistrano2/deployment_test.rb +38 -0
- data/test/multiverse/suites/curb/Envfile +10 -1
- data/test/multiverse/suites/curb/config/newrelic.yml +0 -1
- data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -1
- data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -1
- data/test/multiverse/suites/excon/config/newrelic.yml +0 -1
- data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -1
- data/test/multiverse/suites/mongo/config/newrelic.yml +0 -1
- data/test/multiverse/suites/net_http/config/newrelic.yml +0 -1
- data/test/multiverse/suites/padrino/config/newrelic.yml +0 -1
- data/test/multiverse/suites/rack/Envfile +25 -0
- data/test/multiverse/suites/rack/example_app.rb +50 -0
- data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +66 -0
- data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +143 -0
- data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +45 -0
- data/test/multiverse/suites/rack/url_map_test.rb +120 -0
- data/test/multiverse/suites/rails/Envfile +10 -0
- data/test/multiverse/suites/rails/app.rb +28 -63
- data/test/multiverse/suites/rails/bad_instrumentation_test.rb +2 -4
- data/test/multiverse/suites/rails/config/newrelic.yml +1 -2
- data/test/multiverse/suites/rails/dummy.txt +1 -0
- data/test/multiverse/suites/rails/error_tracing_test.rb +46 -31
- data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -1
- data/test/multiverse/suites/rails/ignore_test.rb +9 -3
- data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +41 -0
- data/test/multiverse/suites/rails/middlewares.rb +19 -0
- data/test/multiverse/suites/rails/parameter_capture_test.rb +169 -0
- data/test/multiverse/suites/rails/queue_time_test.rb +14 -4
- data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +7 -0
- data/test/multiverse/suites/rails/rails2_app/config/boot.rb +127 -0
- data/test/multiverse/suites/rails/rails2_app/config/database.yml +18 -0
- data/test/multiverse/suites/rails/rails2_app/config/environment.rb +16 -0
- data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +10 -0
- data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +9 -0
- data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +25 -0
- data/test/multiverse/suites/rails/rails2_app/config/routes.rb +18 -0
- data/test/multiverse/suites/rails/rails2_app/db/schema.rb +5 -0
- data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +76 -0
- data/test/multiverse/suites/rails/request_statistics_test.rb +2 -4
- data/test/multiverse/suites/rails/transaction_ignoring_test.rb +3 -5
- data/test/multiverse/suites/rails/view_instrumentation_test.rb +73 -42
- data/test/multiverse/suites/resque/config/newrelic.yml +0 -1
- data/test/multiverse/suites/sequel/config/newrelic.yml +0 -1
- data/test/multiverse/suites/sidekiq/Envfile +4 -0
- data/test/multiverse/suites/sidekiq/after_suite.rb +7 -0
- data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -1
- data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +55 -34
- data/test/multiverse/suites/sidekiq/sidekiq_server.rb +30 -0
- data/test/multiverse/suites/sidekiq/test_worker.rb +60 -0
- data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -1
- data/test/multiverse/suites/sinatra/ignoring_test.rb +33 -11
- data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +3 -1
- data/test/multiverse/suites/typhoeus/Envfile +9 -0
- data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -1
- data/test/multiverse/suites/typhoeus/typhoeus_test.rb +10 -0
- data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -1
- data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -1
- data/test/new_relic/agent/agent/connect_test.rb +3 -10
- data/test/new_relic/agent/agent_logger_test.rb +24 -6
- data/test/new_relic/agent/agent_test.rb +7 -8
- data/test/new_relic/agent/agent_test_controller.rb +2 -2
- data/test/new_relic/agent/audit_logger_test.rb +5 -1
- data/test/new_relic/agent/busy_calculator_test.rb +1 -1
- data/test/new_relic/agent/configuration/manager_test.rb +68 -69
- data/test/new_relic/agent/cross_app_monitor_test.rb +32 -14
- data/test/new_relic/agent/cross_app_tracing_test.rb +2 -2
- data/test/new_relic/agent/error_collector/notice_error_test.rb +9 -33
- data/test/new_relic/agent/error_collector_test.rb +45 -14
- data/test/new_relic/agent/harvester_test.rb +9 -0
- data/test/new_relic/agent/hostname_test.rb +41 -0
- data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +27 -19
- data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +1 -1
- data/test/new_relic/agent/instrumentation/active_record_test.rb +3 -3
- data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +95 -14
- data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +189 -0
- data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +2 -2
- data/test/new_relic/agent/instrumentation/queue_time_test.rb +18 -1
- data/test/new_relic/agent/instrumentation/rack_test.rb +10 -1
- data/test/new_relic/agent/instrumentation/sinatra_test.rb +3 -1
- data/test/new_relic/agent/javascript_instrumentor_test.rb +28 -41
- data/test/new_relic/agent/memory_logger_test.rb +14 -0
- data/test/new_relic/agent/method_interrobang_test.rb +1 -1
- data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +1 -30
- data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +5 -21
- data/test/new_relic/agent/method_tracer_test.rb +5 -4
- data/test/new_relic/agent/mock_scope_listener.rb +2 -2
- data/test/new_relic/agent/obfuscator_test.rb +1 -1
- data/test/new_relic/agent/pipe_channel_manager_test.rb +17 -5
- data/test/new_relic/agent/request_sampler_test.rb +16 -16
- data/test/new_relic/agent/rpm_agent_test.rb +23 -29
- data/test/new_relic/agent/sql_sampler_test.rb +39 -31
- data/test/new_relic/agent/stats_engine/metric_stats_test.rb +189 -117
- data/test/new_relic/agent/stats_engine_test.rb +1 -1
- data/test/new_relic/agent/stats_hash_test.rb +28 -1
- data/test/new_relic/agent/stats_test.rb +1 -12
- data/test/new_relic/agent/threading/agent_thread_test.rb +23 -9
- data/test/new_relic/agent/threading/backtrace_service_test.rb +33 -32
- data/test/new_relic/agent/threading/fake_thread.rb +4 -8
- data/test/new_relic/agent/threading/threaded_test_case.rb +4 -14
- data/test/new_relic/agent/traced_method_stack_test.rb +43 -27
- data/test/new_relic/agent/transaction_interrobang_test.rb +1 -1
- data/test/new_relic/agent/transaction_metrics_test.rb +113 -0
- data/test/new_relic/agent/transaction_sample_builder_test.rb +1 -61
- data/test/new_relic/agent/transaction_sampler_test.rb +176 -228
- data/test/new_relic/agent/transaction_state_test.rb +62 -26
- data/test/new_relic/agent/transaction_test.rb +198 -80
- data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +4 -4
- data/test/new_relic/agent/vm/rubinius_vm_test.rb +68 -0
- data/test/new_relic/agent_test.rb +31 -27
- data/test/new_relic/cli/commands/deployments_test.rb +7 -2
- data/test/new_relic/control/instance_methods_test.rb +4 -4
- data/test/new_relic/control_test.rb +28 -22
- data/test/new_relic/dependency_detection_test.rb +14 -0
- data/test/new_relic/fake_external_server.rb +1 -0
- data/test/new_relic/fake_rpm_site.rb +35 -0
- data/test/new_relic/http_client_test_cases.rb +12 -3
- data/test/new_relic/json_wrapper_test.rb +5 -0
- data/test/new_relic/language_support_test.rb +7 -0
- data/test/new_relic/license_test.rb +11 -5
- data/test/new_relic/local_environment_test.rb +0 -18
- data/test/new_relic/metric_data_test.rb +2 -2
- data/test/new_relic/metric_spec_test.rb +4 -23
- data/test/new_relic/multiverse_helpers.rb +1 -3
- data/test/new_relic/noticed_error_test.rb +6 -22
- data/test/new_relic/rack/agent_hooks_test.rb +5 -1
- data/test/new_relic/rack/agent_middleware_test.rb +32 -0
- data/test/new_relic/rack/browser_monitoring_test.rb +14 -1
- data/test/new_relic/rack/developer_mode_helper_test.rb +0 -8
- data/test/new_relic/rack/developer_mode_test.rb +1 -1
- data/test/new_relic/rack/error_collector_test.rb +6 -30
- data/test/new_relic/transaction_sample/fake_segment_test.rb +2 -2
- data/test/new_relic/transaction_sample/segment_test.rb +47 -47
- data/test/new_relic/transaction_sample_test.rb +9 -8
- data/test/performance/lib/performance/instrumentation/stackprof.rb +11 -8
- data/test/performance/script/runner +13 -0
- data/test/performance/suites/config.rb +5 -2
- data/test/performance/suites/rack_middleware.rb +84 -0
- data/test/performance/suites/rum_autoinsertion.rb +1 -1
- data/test/performance/suites/thread_profiling.rb +1 -1
- data/test/test_helper.rb +12 -10
- data/ui/helpers/developer_mode_helper.rb +3 -43
- data/ui/views/layouts/newrelic_default.rhtml +2 -2
- data/ui/views/newrelic/_sample.rhtml +2 -2
- data/ui/views/newrelic/_sql_row.rhtml +11 -11
- data/ui/views/newrelic/index.rhtml +21 -22
- data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +15 -10
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +2 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +34 -0
- data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +24 -0
- metadata +108 -31
- metadata.gz.sig +0 -0
- data/lib/new_relic/rack/transaction_reset.rb +0 -20
- data/test/multiverse/suites/rails/mongrel_queue_depth_test.rb +0 -42
- data/test/new_relic/rack/transaction_reset_test.rb +0 -35
- data/ui/views/newrelic/show_source.rhtml +0 -3
@@ -0,0 +1,96 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# This file is distributed under New Relic's license terms.
|
3
|
+
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
|
4
|
+
|
5
|
+
require 'new_relic/agent/method_tracer'
|
6
|
+
require 'new_relic/agent/transaction'
|
7
|
+
require 'new_relic/agent/transaction_state'
|
8
|
+
require 'new_relic/agent/instrumentation/queue_time'
|
9
|
+
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
10
|
+
require 'new_relic/agent/instrumentation/middleware_tracing'
|
11
|
+
|
12
|
+
module NewRelic
|
13
|
+
module Agent
|
14
|
+
module Instrumentation
|
15
|
+
class MiddlewareProxy
|
16
|
+
include MiddlewareTracing
|
17
|
+
|
18
|
+
# This class is used to wrap classes that are passed to
|
19
|
+
# Rack::Builder#use without synchronously instantiating those classes.
|
20
|
+
# A MiddlewareProxy::Generator responds to new, like a Class would, and
|
21
|
+
# passes through arguments to new to the original target class.
|
22
|
+
class Generator
|
23
|
+
def initialize(middleware_class)
|
24
|
+
@middleware_class = middleware_class
|
25
|
+
end
|
26
|
+
|
27
|
+
def new(*args, &blk)
|
28
|
+
middleware_instance = @middleware_class.new(*args, &blk)
|
29
|
+
MiddlewareProxy.wrap(middleware_instance)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def self.is_sinatra_app?(target)
|
34
|
+
defined?(::Sinatra::Base) && target.kind_of?(::Sinatra::Base)
|
35
|
+
end
|
36
|
+
|
37
|
+
def self.for_class(target_class)
|
38
|
+
Generator.new(target_class)
|
39
|
+
end
|
40
|
+
|
41
|
+
def self.needs_wrapping?(target)
|
42
|
+
(
|
43
|
+
!target.respond_to?(:_nr_has_middleware_tracing) &&
|
44
|
+
!is_sinatra_app?(target)
|
45
|
+
)
|
46
|
+
end
|
47
|
+
|
48
|
+
def self.wrap(target, is_app=false)
|
49
|
+
if needs_wrapping?(target)
|
50
|
+
self.new(target, is_app)
|
51
|
+
else
|
52
|
+
target
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
attr_reader :target, :category, :transaction_options
|
57
|
+
|
58
|
+
def initialize(target, is_app=false)
|
59
|
+
@target = target
|
60
|
+
@is_app = is_app
|
61
|
+
@category = determine_category
|
62
|
+
@target_class_name = determine_class_name
|
63
|
+
@transaction_name = "#{determine_prefix}#{@target_class_name}/call"
|
64
|
+
@transaction_options = {
|
65
|
+
:transaction_name => @transaction_name
|
66
|
+
}
|
67
|
+
end
|
68
|
+
|
69
|
+
def determine_category
|
70
|
+
if @is_app
|
71
|
+
:rack
|
72
|
+
else
|
73
|
+
:middleware
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def determine_prefix
|
78
|
+
ControllerInstrumentation::TransactionNamer.prefix_for_category(nil, @category)
|
79
|
+
end
|
80
|
+
|
81
|
+
# In 'normal' usage, the target will be an application instance that
|
82
|
+
# responds to #call. With Rails, however, the target may be a subclass
|
83
|
+
# of Rails::Application that defines a method_missing that proxies #call
|
84
|
+
# to a singleton instance of the the subclass. We need to ensure that we
|
85
|
+
# capture the correct name in both cases.
|
86
|
+
def determine_class_name
|
87
|
+
if @target.is_a?(Class)
|
88
|
+
@target.name
|
89
|
+
else
|
90
|
+
@target.class.name
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
@@ -0,0 +1,69 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# This file is distributed under New Relic's license terms.
|
3
|
+
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.
|
4
|
+
|
5
|
+
require 'new_relic/agent/method_tracer'
|
6
|
+
require 'new_relic/agent/transaction'
|
7
|
+
require 'new_relic/agent/transaction_state'
|
8
|
+
require 'new_relic/agent/instrumentation/queue_time'
|
9
|
+
require 'new_relic/agent/instrumentation/controller_instrumentation'
|
10
|
+
|
11
|
+
# This module is intended to be included into both MiddlewareProxy and our
|
12
|
+
# internal middleware classes.
|
13
|
+
#
|
14
|
+
# Host classes must define two methods:
|
15
|
+
#
|
16
|
+
# * target: returns the original middleware being traced
|
17
|
+
# * category: returns the category for the resulting agent transaction
|
18
|
+
# should be either :middleware or :rack
|
19
|
+
# * transaction_options: returns an options hash to be passed to
|
20
|
+
# Transaction.start when tracing this middleware.
|
21
|
+
#
|
22
|
+
# The target may be self, in which case the host class should define a
|
23
|
+
# #traced_call method, instead of the usual #call.
|
24
|
+
|
25
|
+
module NewRelic
|
26
|
+
module Agent
|
27
|
+
module Instrumentation
|
28
|
+
module MiddlewareTracing
|
29
|
+
CAPTURED_REQUEST_KEY = 'newrelic.captured_request'.freeze unless defined?(CAPTURED_REQUEST_KEY)
|
30
|
+
|
31
|
+
def _nr_has_middleware_tracing
|
32
|
+
true
|
33
|
+
end
|
34
|
+
|
35
|
+
def build_transaction_options(env)
|
36
|
+
if env[CAPTURED_REQUEST_KEY]
|
37
|
+
transaction_options
|
38
|
+
else
|
39
|
+
env[CAPTURED_REQUEST_KEY] = true
|
40
|
+
queue_timefrontend_timestamp = QueueTime.parse_frontend_timestamp(env)
|
41
|
+
transaction_options.merge(
|
42
|
+
:request => ::Rack::Request.new(env),
|
43
|
+
:apdex_start_time => queue_timefrontend_timestamp
|
44
|
+
)
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def call(env)
|
49
|
+
opts = build_transaction_options(env)
|
50
|
+
state = NewRelic::Agent::TransactionState.tl_get
|
51
|
+
|
52
|
+
begin
|
53
|
+
txn = Transaction.start(state, category, opts)
|
54
|
+
if target == self
|
55
|
+
traced_call(env)
|
56
|
+
else
|
57
|
+
target.call(env)
|
58
|
+
end
|
59
|
+
rescue => e
|
60
|
+
txn.notice_error(e)
|
61
|
+
raise
|
62
|
+
ensure
|
63
|
+
Transaction.stop(state)
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
69
|
+
end
|
@@ -10,26 +10,34 @@ module NewRelic
|
|
10
10
|
# which can be set on the request.
|
11
11
|
module QueueTime
|
12
12
|
unless defined?(REQUEST_START_HEADER)
|
13
|
-
REQUEST_START_HEADER = 'HTTP_X_REQUEST_START'
|
14
|
-
QUEUE_START_HEADER = 'HTTP_X_QUEUE_START'
|
15
|
-
|
16
|
-
|
17
|
-
ALL_QUEUE_METRIC = 'WebFrontend/QueueTime'
|
13
|
+
REQUEST_START_HEADER = 'HTTP_X_REQUEST_START'.freeze
|
14
|
+
QUEUE_START_HEADER = 'HTTP_X_QUEUE_START'.freeze
|
15
|
+
MIDDLEWARE_START_HEADER = 'HTTP_X_MIDDLEWARE_START'.freeze
|
16
|
+
ALL_QUEUE_METRIC = 'WebFrontend/QueueTime'.freeze
|
18
17
|
# any timestamps before this are thrown out and the parser
|
19
18
|
# will try again with a larger unit (2000/1/1 UTC)
|
20
19
|
EARLIEST_ACCEPTABLE_TIMESTAMP = 946684800
|
20
|
+
|
21
|
+
CANDIDATE_HEADERS = [
|
22
|
+
REQUEST_START_HEADER,
|
23
|
+
QUEUE_START_HEADER,
|
24
|
+
MIDDLEWARE_START_HEADER
|
25
|
+
].freeze
|
21
26
|
end
|
22
27
|
|
23
28
|
module_function
|
24
29
|
|
25
30
|
def parse_frontend_timestamp(headers, now=Time.now)
|
26
|
-
|
27
|
-
|
28
|
-
|
31
|
+
earliest = nil
|
32
|
+
|
33
|
+
CANDIDATE_HEADERS.each do |header|
|
29
34
|
if headers[header]
|
30
|
-
parse_timestamp(timestamp_string_from_header_value(headers[header]))
|
35
|
+
parsed = parse_timestamp(timestamp_string_from_header_value(headers[header]))
|
36
|
+
if parsed && (!earliest || parsed < earliest)
|
37
|
+
earliest = parsed
|
38
|
+
end
|
31
39
|
end
|
32
|
-
end
|
40
|
+
end
|
33
41
|
|
34
42
|
if earliest && earliest > now
|
35
43
|
NewRelic::Agent.logger.debug("Negative queue time detected, treating as zero: start=#{earliest.to_f} > now=#{now.to_f}")
|
@@ -39,9 +47,9 @@ module NewRelic
|
|
39
47
|
earliest
|
40
48
|
end
|
41
49
|
|
42
|
-
def record_frontend_metrics(start_time, now=Time.now)
|
43
|
-
NewRelic::Agent.instance.stats_engine.
|
44
|
-
ALL_QUEUE_METRIC, (now - start_time).to_f
|
50
|
+
def record_frontend_metrics(start_time, now=Time.now) #THREAD_LOCAL_ACCESS
|
51
|
+
NewRelic::Agent.instance.stats_engine.tl_record_unscoped_metrics(
|
52
|
+
ALL_QUEUE_METRIC, (now - start_time).to_f)
|
45
53
|
end
|
46
54
|
|
47
55
|
def timestamp_string_from_header_value(value)
|
@@ -9,87 +9,36 @@ module NewRelic
|
|
9
9
|
module Instrumentation
|
10
10
|
# == Instrumentation for Rack
|
11
11
|
#
|
12
|
-
#
|
13
|
-
#
|
14
|
-
# be identified only by its class, so if you want to instrument multiple
|
15
|
-
# actions in a middleware, you need to use
|
16
|
-
# NewRelic::Agent::Instrumentation::ControllerInstrumentation::ClassMethods#add_transaction_tracer
|
17
|
-
#
|
18
|
-
# Example:
|
19
|
-
# require 'newrelic_rpm'
|
20
|
-
# require 'new_relic/agent/instrumentation/rack'
|
21
|
-
# class Middleware
|
22
|
-
# def call(env)
|
23
|
-
# ...
|
24
|
-
# end
|
25
|
-
# # Do the include after the call method is defined:
|
26
|
-
# include NewRelic::Agent::Instrumentation::Rack
|
27
|
-
# end
|
28
|
-
#
|
29
|
-
# == Instrumenting Metal and Cascading Middlewares
|
30
|
-
#
|
31
|
-
# Metal apps and apps belonging to Rack::Cascade middleware
|
32
|
-
# follow a convention of returning a 404 for all requests except
|
33
|
-
# the ones they are set up to handle. This means that New Relic
|
34
|
-
# needs to ignore these calls when they return a 404.
|
35
|
-
#
|
36
|
-
# In these cases, you should not include or extend the Rack
|
37
|
-
# module but instead include
|
38
|
-
# NewRelic::Agent::Instrumentation::ControllerInstrumentation.
|
39
|
-
# Here's how that might look for a Metal app:
|
40
|
-
#
|
41
|
-
# require 'new_relic/agent/instrumentation/controller_instrumentation'
|
42
|
-
# class MetalApp
|
43
|
-
# extend NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
44
|
-
# def self.call(env)
|
45
|
-
# if should_do_my_thing?
|
46
|
-
# perform_action_with_newrelic_trace(:category => :rack) do
|
47
|
-
# return my_response(env)
|
48
|
-
# end
|
49
|
-
# else
|
50
|
-
# return [404, {"Content-Type" => "text/html"}, ["Not Found"]]
|
51
|
-
# end
|
52
|
-
# end
|
53
|
-
# end
|
54
|
-
#
|
55
|
-
# == Overriding the metric name
|
56
|
-
#
|
57
|
-
# By default the middleware is identified only by its class, but if you want to
|
58
|
-
# be more specific and pass in name, then omit including the Rack instrumentation
|
59
|
-
# and instead follow this example:
|
60
|
-
#
|
61
|
-
# require 'newrelic_rpm'
|
62
|
-
# require 'new_relic/agent/instrumentation/controller_instrumentation'
|
63
|
-
# class Middleware
|
64
|
-
# include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
65
|
-
# def call(env)
|
66
|
-
# ...
|
67
|
-
# end
|
68
|
-
# add_transaction_tracer :call, :category => :rack, :name => 'my app'
|
69
|
-
# end
|
12
|
+
# Since version 3.9.0, New Relic instruments Rack middlewares by default.
|
13
|
+
# As a result, this entire module has been deprecated.
|
70
14
|
#
|
71
15
|
# @api public
|
16
|
+
# @deprecated
|
72
17
|
#
|
73
18
|
module Rack
|
74
|
-
|
19
|
+
include ControllerInstrumentation
|
20
|
+
|
21
|
+
def newrelic_request_headers(_)
|
75
22
|
@newrelic_request.env
|
76
23
|
end
|
24
|
+
|
77
25
|
def call_with_newrelic(*args)
|
78
26
|
@newrelic_request = ::Rack::Request.new(args.first)
|
79
|
-
perform_action_with_newrelic_trace(:category => :
|
27
|
+
perform_action_with_newrelic_trace(:category => :middleware, :request => @newrelic_request) do
|
80
28
|
result = call_without_newrelic(*args)
|
81
29
|
# Ignore cascaded calls
|
82
30
|
Transaction.abort_transaction! if result.first == 404
|
83
31
|
result
|
84
32
|
end
|
85
33
|
end
|
34
|
+
|
86
35
|
def self.included middleware #:nodoc:
|
87
36
|
middleware.class_eval do
|
88
37
|
alias call_without_newrelic call
|
89
38
|
alias call call_with_newrelic
|
90
39
|
end
|
91
40
|
end
|
92
|
-
|
41
|
+
|
93
42
|
def self.extended middleware #:nodoc:
|
94
43
|
middleware.class_eval do
|
95
44
|
class << self
|
@@ -98,12 +47,77 @@ module NewRelic
|
|
98
47
|
end
|
99
48
|
end
|
100
49
|
end
|
50
|
+
|
51
|
+
def _nr_has_middleware_tracing
|
52
|
+
true
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
module RackHelpers
|
57
|
+
def self.rack_version_supported?
|
58
|
+
version = ::NewRelic::VersionNumber.new(::Rack.release)
|
59
|
+
min_version = ::NewRelic::VersionNumber.new('1.1.0')
|
60
|
+
version >= min_version
|
61
|
+
end
|
62
|
+
|
63
|
+
def self.middleware_instrumentation_enabled?
|
64
|
+
rack_version_supported? && !::NewRelic::Agent.config[:disable_middleware_instrumentation]
|
65
|
+
end
|
66
|
+
|
67
|
+
def self.check_for_late_instrumentation(app)
|
68
|
+
return if @checked_for_late_instrumentation
|
69
|
+
@checked_for_late_instrumentation = true
|
70
|
+
if middleware_instrumentation_enabled?
|
71
|
+
if ::NewRelic::Agent::Instrumentation::MiddlewareProxy.needs_wrapping?(app)
|
72
|
+
::NewRelic::Agent.logger.info("We weren't able to instrument all of your Rack middlewares.",
|
73
|
+
"To correct this, ensure you 'require \"newrelic_rpm\"' before setting up your middleware stack.")
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
module RackBuilder
|
80
|
+
def run_with_newrelic(app, *args)
|
81
|
+
if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
82
|
+
wrapped_app = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.wrap(app, true)
|
83
|
+
run_without_newrelic(wrapped_app, *args)
|
84
|
+
else
|
85
|
+
run_without_newrelic(app, *args)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def use_with_newrelic(middleware_class, *args, &blk)
|
90
|
+
if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
91
|
+
wrapped_middleware_class = ::NewRelic::Agent::Instrumentation::MiddlewareProxy.for_class(middleware_class)
|
92
|
+
use_without_newrelic(wrapped_middleware_class, *args, &blk)
|
93
|
+
else
|
94
|
+
use_without_newrelic(middleware_class, *args, &blk)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
# We patch this method for a reason that actually has nothing to do with
|
99
|
+
# instrumenting rack itself. It happens to be a convenient and
|
100
|
+
# easy-to-hook point that happens late in the startup sequence of almost
|
101
|
+
# every application, making it a good place to do a final call to
|
102
|
+
# DependencyDetection.detect!, since all libraries are likely loaded at
|
103
|
+
# this point.
|
104
|
+
def to_app_with_newrelic_deferred_dependency_detection
|
105
|
+
unless ::Rack::Builder._nr_deferred_detection_ran
|
106
|
+
NewRelic::Agent.logger.info "Doing deferred dependency-detection before Rack startup"
|
107
|
+
DependencyDetection.detect!
|
108
|
+
::Rack::Builder._nr_deferred_detection_ran = true
|
109
|
+
end
|
110
|
+
|
111
|
+
result = to_app_without_newrelic
|
112
|
+
::NewRelic::Agent::Instrumentation::RackHelpers.check_for_late_instrumentation(result)
|
113
|
+
|
114
|
+
result
|
115
|
+
end
|
101
116
|
end
|
102
117
|
end
|
103
118
|
end
|
104
119
|
end
|
105
120
|
|
106
|
-
|
107
121
|
DependencyDetection.defer do
|
108
122
|
named :rack
|
109
123
|
|
@@ -113,29 +127,26 @@ DependencyDetection.defer do
|
|
113
127
|
|
114
128
|
executes do
|
115
129
|
::NewRelic::Agent.logger.info 'Installing deferred Rack instrumentation'
|
116
|
-
end
|
117
130
|
|
118
|
-
executes do
|
119
131
|
class ::Rack::Builder
|
120
|
-
|
121
132
|
class << self
|
122
133
|
attr_accessor :_nr_deferred_detection_ran
|
123
134
|
end
|
124
135
|
self._nr_deferred_detection_ran = false
|
125
136
|
|
126
|
-
|
127
|
-
unless Rack::Builder._nr_deferred_detection_ran
|
128
|
-
NewRelic::Agent.logger.info "Doing deferred dependency-detection before Rack startup"
|
129
|
-
DependencyDetection.detect!
|
130
|
-
Rack::Builder._nr_deferred_detection_ran = true
|
131
|
-
end
|
132
|
-
|
133
|
-
to_app_without_newrelic
|
134
|
-
end
|
137
|
+
include ::NewRelic::Agent::Instrumentation::RackBuilder
|
135
138
|
|
136
139
|
alias_method :to_app_without_newrelic, :to_app
|
137
140
|
alias_method :to_app, :to_app_with_newrelic_deferred_dependency_detection
|
138
141
|
|
142
|
+
if ::NewRelic::Agent::Instrumentation::RackHelpers.middleware_instrumentation_enabled?
|
143
|
+
::NewRelic::Agent.logger.info 'Installing Rack::Builder middleware instrumentation'
|
144
|
+
alias_method :run_without_newrelic, :run
|
145
|
+
alias_method :run, :run_with_newrelic
|
146
|
+
|
147
|
+
alias_method :use_without_newrelic, :use
|
148
|
+
alias_method :use, :use_with_newrelic
|
149
|
+
end
|
139
150
|
end
|
140
151
|
end
|
141
152
|
end
|