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
data/test/config/newrelic.yml
CHANGED
@@ -46,6 +46,18 @@ module Multiverse
|
|
46
46
|
end
|
47
47
|
|
48
48
|
def run(filter="", opts={})
|
49
|
+
execute_suites(filter, opts) do |suite|
|
50
|
+
suite.execute
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def prime(filter="", opts={})
|
55
|
+
execute_suites(filter, opts) do |suite|
|
56
|
+
suite.prime
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def execute_suites(filter, opts)
|
49
61
|
Dir.new(SUITES_DIRECTORY).entries.each do |dir|
|
50
62
|
full_path = File.join(SUITES_DIRECTORY, dir)
|
51
63
|
|
@@ -55,7 +67,7 @@ module Multiverse
|
|
55
67
|
|
56
68
|
begin
|
57
69
|
suite = Suite.new(full_path, opts)
|
58
|
-
suite
|
70
|
+
yield suite
|
59
71
|
rescue => e
|
60
72
|
puts red("Error when trying to run suite in #{full_path.inspect}")
|
61
73
|
puts
|
@@ -69,7 +69,7 @@ module Multiverse
|
|
69
69
|
end
|
70
70
|
|
71
71
|
# load the environment for this suite after we've forked
|
72
|
-
def load_dependencies(gemfile_text, env_index)
|
72
|
+
def load_dependencies(gemfile_text, env_index, should_print=true)
|
73
73
|
ENV["BUNDLE_GEMFILE"] = "Gemfile.#{env_index}"
|
74
74
|
clean_gemfiles(env_index)
|
75
75
|
begin
|
@@ -82,7 +82,7 @@ module Multiverse
|
|
82
82
|
generate_gemfile(gemfile_text, env_index, false)
|
83
83
|
bundle
|
84
84
|
end
|
85
|
-
print_environment
|
85
|
+
print_environment if should_print
|
86
86
|
end
|
87
87
|
|
88
88
|
def bundle
|
@@ -108,7 +108,8 @@ module Multiverse
|
|
108
108
|
f.puts " gem 'mocha', '0.14.0', :require => false"
|
109
109
|
|
110
110
|
if debug
|
111
|
-
|
111
|
+
# Pry 0.10.0 breaks compatibility with Ruby 1.8.7 :(
|
112
|
+
f.puts " gem 'pry', '~> 0.9.12'"
|
112
113
|
end
|
113
114
|
end
|
114
115
|
puts yellow("Gemfile.#{env_index} set to:") if verbose?
|
@@ -175,6 +176,19 @@ module Multiverse
|
|
175
176
|
ENV['SERIALIZE'] || debug
|
176
177
|
end
|
177
178
|
|
179
|
+
def prime
|
180
|
+
ENV["VERBOSE"]= "1"
|
181
|
+
puts yellow("\nPriming #{directory.inspect}")
|
182
|
+
@environments = nil
|
183
|
+
|
184
|
+
environments.each_with_index do |gemfile_text, env_index|
|
185
|
+
puts yellow("... for Envfile entry #{env_index}")
|
186
|
+
with_clean_env do
|
187
|
+
load_dependencies(gemfile_text, env_index, false)
|
188
|
+
end
|
189
|
+
end
|
190
|
+
end
|
191
|
+
|
178
192
|
# Load the test suite's environment and execute it.
|
179
193
|
#
|
180
194
|
# Normally we fork to do this, and wait for the child to exit, to avoid
|
@@ -295,6 +309,8 @@ module Multiverse
|
|
295
309
|
test_run = ::MiniTest::Unit.new.run(options)
|
296
310
|
end
|
297
311
|
|
312
|
+
load @after_file if @after_file
|
313
|
+
|
298
314
|
if test_run
|
299
315
|
exit(test_run)
|
300
316
|
else
|
@@ -371,18 +387,19 @@ module Multiverse
|
|
371
387
|
def ordered_ruby_files(directory)
|
372
388
|
files = Dir[File.join(directory, '*.rb')]
|
373
389
|
|
374
|
-
|
375
|
-
|
390
|
+
@before_file = files.find { |file| File.basename(file) == "before_suite.rb" }
|
391
|
+
@after_file = files.find { |file| File.basename(file) == "after_suite.rb" }
|
376
392
|
|
377
|
-
files.delete(
|
378
|
-
files.delete(
|
393
|
+
files.delete(@before_file)
|
394
|
+
files.delete(@after_file)
|
379
395
|
|
380
396
|
# Important that we filter after removing before/after so they don't get
|
381
397
|
# tromped for not matching our pattern!
|
382
398
|
files.select! {|file| file.include?(filter_file) } if filter_file
|
383
399
|
|
384
|
-
|
385
|
-
|
400
|
+
# Just put before_suite.rb at the head of the list.
|
401
|
+
# Will explicitly load after_suite.rb after the test run
|
402
|
+
files.insert(0, @before_file) if @before_file
|
386
403
|
|
387
404
|
files
|
388
405
|
end
|
@@ -1,5 +1,5 @@
|
|
1
1
|
gemfile <<-RB
|
2
|
-
gem 'activemerchant', '~>1.
|
2
|
+
gem 'activemerchant', '~>1.43.1'
|
3
3
|
gem 'rack'
|
4
4
|
|
5
5
|
if RUBY_VERSION <= '1.9.2'
|
@@ -14,3 +14,20 @@ gemfile <<-RB
|
|
14
14
|
# Need to load newrelic_rpm after ActiveMerchant Gateways are required
|
15
15
|
gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
|
16
16
|
RB
|
17
|
+
|
18
|
+
gemfile <<-RB
|
19
|
+
gem 'activemerchant', '~>1.25.0'
|
20
|
+
gem 'rack'
|
21
|
+
|
22
|
+
if RUBY_VERSION <= '1.9.2'
|
23
|
+
# Very special versioning to keep us running on 1.8.7 versions of Ruby
|
24
|
+
gem 'activesupport', '~>2.3.14', :require => 'active_support'
|
25
|
+
gem 'nokogiri', '~>1.4.7'
|
26
|
+
else
|
27
|
+
gem 'activesupport', '~>4.0.4'
|
28
|
+
gem 'nokogiri', '~>1.5.11'
|
29
|
+
end
|
30
|
+
|
31
|
+
# Need to load newrelic_rpm after ActiveMerchant Gateways are required
|
32
|
+
gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../')
|
33
|
+
RB
|
@@ -87,11 +87,12 @@ class AuditLogTest < Minitest::Test
|
|
87
87
|
def perform_actions
|
88
88
|
reset_collector
|
89
89
|
|
90
|
-
NewRelic::Agent.
|
90
|
+
state = NewRelic::Agent::TransactionState.tl_get
|
91
|
+
NewRelic::Agent.instance.sql_sampler.on_start_transaction(state, nil)
|
91
92
|
NewRelic::Agent.instance.sql_sampler.notice_sql("select * from test",
|
92
93
|
"Database/test/select",
|
93
|
-
nil, 1.5)
|
94
|
-
NewRelic::Agent.instance.sql_sampler.on_finishing_transaction('txn')
|
94
|
+
nil, 1.5, state)
|
95
|
+
NewRelic::Agent.instance.sql_sampler.on_finishing_transaction(state, 'txn')
|
95
96
|
NewRelic::Agent.instance.send(:harvest_and_send_slowest_sql)
|
96
97
|
end
|
97
98
|
end
|
@@ -46,4 +46,39 @@ class CollectorExceptionHandlingTest < Minitest::Test
|
|
46
46
|
assert_equal(1, $collector.calls_for('connect').size)
|
47
47
|
assert_equal(1, $collector.calls_for('metric_data').size)
|
48
48
|
end
|
49
|
+
|
50
|
+
def test_should_reconnect_on_connect_exception
|
51
|
+
$collector.reset
|
52
|
+
|
53
|
+
payload = { 'error_type' => 'RuntimeError' }
|
54
|
+
$collector.stub_exception('connect', payload).once
|
55
|
+
|
56
|
+
with_config(:data_report_period => 0) do
|
57
|
+
worker_loop = NewRelic::Agent::WorkerLoop.new(:limit => 1)
|
58
|
+
NewRelic::Agent.agent.stubs(:create_worker_loop).returns(worker_loop)
|
59
|
+
# there's a call to sleep in connect that we want to skip
|
60
|
+
NewRelic::Agent.agent.stubs(:sleep)
|
61
|
+
NewRelic::Agent.agent.deferred_work!({})
|
62
|
+
end
|
63
|
+
|
64
|
+
assert_equal(2, $collector.calls_for('connect').size)
|
65
|
+
end
|
66
|
+
|
67
|
+
def test_should_reconnect_on_get_redirect_host_exception
|
68
|
+
$collector.reset
|
69
|
+
|
70
|
+
payload = { 'error_type' => 'RuntimeError' }
|
71
|
+
$collector.stub_exception('get_redirect_host', payload).once
|
72
|
+
|
73
|
+
with_config(:data_report_period => 0) do
|
74
|
+
worker_loop = NewRelic::Agent::WorkerLoop.new(:limit => 1)
|
75
|
+
NewRelic::Agent.agent.stubs(:create_worker_loop).returns(worker_loop)
|
76
|
+
# there's a call to sleep in connect that we want to skip
|
77
|
+
NewRelic::Agent.agent.stubs(:sleep)
|
78
|
+
NewRelic::Agent.agent.deferred_work!({})
|
79
|
+
end
|
80
|
+
|
81
|
+
assert_equal(2, $collector.calls_for('get_redirect_host').size)
|
82
|
+
assert_equal(1, $collector.calls_for('connect').size)
|
83
|
+
end
|
49
84
|
end
|
@@ -16,7 +16,8 @@ class EncodingHandlingTest < Minitest::Test
|
|
16
16
|
with_config(:'transaction_tracer.transaction_threshold' => 0.0,
|
17
17
|
:'transaction_tracer.record_sql' => :raw) do
|
18
18
|
in_transaction do
|
19
|
-
|
19
|
+
state = NewRelic::Agent::TransactionState.tl_get
|
20
|
+
agent.transaction_sampler.notice_sql(bad_string, nil, 42, state)
|
20
21
|
end
|
21
22
|
assert_endpoint_received_string('transaction_sample_data', normalized_bad_string)
|
22
23
|
end
|
@@ -44,7 +45,7 @@ class EncodingHandlingTest < Minitest::Test
|
|
44
45
|
end
|
45
46
|
|
46
47
|
def test_handles_mis_encoded_custom_params_on_analytics_events
|
47
|
-
in_transaction(:
|
48
|
+
in_transaction(:category => :controller) do
|
48
49
|
NewRelic::Agent.add_custom_parameters(:foo => bad_string)
|
49
50
|
end
|
50
51
|
assert_endpoint_received_string('analytic_event_data', normalized_bad_string)
|
@@ -0,0 +1,178 @@
|
|
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 'multiverse_helpers'
|
6
|
+
|
7
|
+
class ExclusiveTimeTest < Minitest::Test
|
8
|
+
include MultiverseHelpers
|
9
|
+
|
10
|
+
setup_and_teardown_agent
|
11
|
+
|
12
|
+
def test_traced_node_without_metrics_dont_decrease_exclusive_time
|
13
|
+
traced_class = Class.new do
|
14
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
15
|
+
include NewRelic::Agent::MethodTracer
|
16
|
+
|
17
|
+
def outer
|
18
|
+
advance_time 2
|
19
|
+
inner_a
|
20
|
+
inner_b
|
21
|
+
end
|
22
|
+
add_transaction_tracer :outer, :class_name => 'traced'
|
23
|
+
|
24
|
+
def inner_a
|
25
|
+
advance_time 5
|
26
|
+
end
|
27
|
+
add_method_tracer :inner_a, 'inner_a', :metric => false
|
28
|
+
|
29
|
+
def inner_b
|
30
|
+
advance_time 10
|
31
|
+
end
|
32
|
+
add_method_tracer :inner_b, 'inner_b'
|
33
|
+
end
|
34
|
+
|
35
|
+
freeze_time
|
36
|
+
traced_class.new.outer
|
37
|
+
|
38
|
+
txn_name = 'Controller/traced/outer'
|
39
|
+
assert_metrics_recorded(
|
40
|
+
txn_name => {
|
41
|
+
:call_count => 1,
|
42
|
+
:total_call_time => 2 + 5 + 10,
|
43
|
+
:total_exclusive_time => 2 + 5
|
44
|
+
},
|
45
|
+
['inner_b', txn_name] => {
|
46
|
+
:call_count => 1,
|
47
|
+
:total_call_time => 10,
|
48
|
+
:total_exclusive_time => 10
|
49
|
+
})
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_exclusive_time_should_propagate_through_nodes_that_dont_record_metrics
|
53
|
+
traced_class = Class.new do
|
54
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
55
|
+
include NewRelic::Agent::MethodTracer
|
56
|
+
|
57
|
+
def outer
|
58
|
+
advance_time 2
|
59
|
+
inner_a
|
60
|
+
end
|
61
|
+
add_transaction_tracer :outer, :class_name => 'traced'
|
62
|
+
|
63
|
+
def inner_a
|
64
|
+
advance_time 5
|
65
|
+
inner_b
|
66
|
+
end
|
67
|
+
add_method_tracer :inner_a, 'inner_a', :metric => false
|
68
|
+
|
69
|
+
def inner_b
|
70
|
+
advance_time 10
|
71
|
+
end
|
72
|
+
add_method_tracer :inner_b, 'inner_b'
|
73
|
+
end
|
74
|
+
|
75
|
+
freeze_time
|
76
|
+
txn_name = 'Controller/traced/outer'
|
77
|
+
|
78
|
+
traced_class.new.outer
|
79
|
+
|
80
|
+
assert_metrics_recorded(
|
81
|
+
txn_name => {
|
82
|
+
:call_count => 1,
|
83
|
+
:total_call_time => 2 + 5 + 10,
|
84
|
+
:total_exclusive_time => 2 + 5
|
85
|
+
},
|
86
|
+
['inner_b', txn_name] => {
|
87
|
+
:call_count => 1,
|
88
|
+
:total_call_time => 10,
|
89
|
+
:total_exclusive_time => 10
|
90
|
+
})
|
91
|
+
end
|
92
|
+
|
93
|
+
def test_exclusive_time_on_unscoped_metric_should_be_zero_if_scoped_metric_matches
|
94
|
+
traced_class = Class.new do
|
95
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
96
|
+
include NewRelic::Agent::MethodTracer
|
97
|
+
|
98
|
+
def outer_a
|
99
|
+
advance_time 2
|
100
|
+
outer_b
|
101
|
+
end
|
102
|
+
add_transaction_tracer :outer_a, :class_name => 'traced'
|
103
|
+
|
104
|
+
def outer_b
|
105
|
+
advance_time 5
|
106
|
+
inner
|
107
|
+
end
|
108
|
+
add_transaction_tracer :outer_b, :class_name => 'traced'
|
109
|
+
|
110
|
+
def inner
|
111
|
+
advance_time 10
|
112
|
+
end
|
113
|
+
add_method_tracer :inner, 'inner'
|
114
|
+
end
|
115
|
+
|
116
|
+
freeze_time
|
117
|
+
traced_class.new.outer_a
|
118
|
+
|
119
|
+
txn_name = 'Controller/traced/outer_b'
|
120
|
+
assert_metrics_recorded(
|
121
|
+
txn_name => {
|
122
|
+
:call_count => 1,
|
123
|
+
:total_call_time => 2 + 5 + 10,
|
124
|
+
:total_exclusive_time => 0
|
125
|
+
},
|
126
|
+
['Nested/Controller/traced/outer_a', txn_name] => {
|
127
|
+
:call_count => 1,
|
128
|
+
:total_call_time => 2 + 5 + 10,
|
129
|
+
:total_exclusive_time => 2
|
130
|
+
},
|
131
|
+
['Nested/Controller/traced/outer_b', txn_name] => {
|
132
|
+
:call_count => 1,
|
133
|
+
:total_call_time => 5 + 10,
|
134
|
+
:total_exclusive_time => 5
|
135
|
+
},
|
136
|
+
['inner', txn_name] => {
|
137
|
+
:call_count => 1,
|
138
|
+
:total_call_time => 10,
|
139
|
+
:total_exclusive_time => 10
|
140
|
+
}
|
141
|
+
)
|
142
|
+
end
|
143
|
+
|
144
|
+
def test_exclusive_time_on_unscoped_metric_should_be_non_zero_if_no_nested_transaction
|
145
|
+
traced_class = Class.new do
|
146
|
+
include NewRelic::Agent::Instrumentation::ControllerInstrumentation
|
147
|
+
include NewRelic::Agent::MethodTracer
|
148
|
+
|
149
|
+
def outer
|
150
|
+
advance_time 2
|
151
|
+
inner
|
152
|
+
end
|
153
|
+
add_transaction_tracer :outer, :class_name => 'traced'
|
154
|
+
|
155
|
+
def inner
|
156
|
+
advance_time 10
|
157
|
+
end
|
158
|
+
add_method_tracer :inner, 'inner'
|
159
|
+
end
|
160
|
+
|
161
|
+
freeze_time
|
162
|
+
traced_class.new.outer
|
163
|
+
|
164
|
+
txn_name = 'Controller/traced/outer'
|
165
|
+
assert_metrics_recorded(
|
166
|
+
txn_name => {
|
167
|
+
:call_count => 1,
|
168
|
+
:total_call_time => 2 + 10,
|
169
|
+
:total_exclusive_time => 2
|
170
|
+
},
|
171
|
+
['inner', txn_name] => {
|
172
|
+
:call_count => 1,
|
173
|
+
:total_call_time => 10,
|
174
|
+
:total_exclusive_time => 10
|
175
|
+
}
|
176
|
+
)
|
177
|
+
end
|
178
|
+
end
|