newrelic_rpm 9.0.0 → 9.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (247) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +7 -81
  4. data/.rubocop_todo.yml +4 -43
  5. data/.simplecov +2 -1
  6. data/Brewfile +1 -0
  7. data/CHANGELOG.md +74 -2
  8. data/Gemfile +1 -1
  9. data/Guardfile +8 -7
  10. data/README.md +1 -2
  11. data/Rakefile +8 -8
  12. data/Thorfile +1 -1
  13. data/bin/newrelic +1 -0
  14. data/bin/newrelic_cmd +1 -0
  15. data/bin/nrdebug +20 -20
  16. data/init.rb +1 -1
  17. data/lib/new_relic/agent/agent.rb +3 -16
  18. data/lib/new_relic/agent/agent_helpers/connect.rb +4 -9
  19. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  20. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  21. data/lib/new_relic/agent/agent_helpers/special_startup.rb +2 -2
  22. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  23. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  24. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  25. data/lib/new_relic/agent/agent_logger.rb +9 -9
  26. data/lib/new_relic/agent/attribute_filter.rb +2 -2
  27. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  28. data/lib/new_relic/agent/audit_logger.rb +5 -5
  29. data/lib/new_relic/agent/autostart.rb +1 -1
  30. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  31. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  32. data/lib/new_relic/agent/commands/thread_profiler_session.rb +5 -5
  33. data/lib/new_relic/agent/configuration/default_source.rb +57 -80
  34. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  35. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -3
  36. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  37. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -10
  38. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  39. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  40. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  41. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  42. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  43. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  44. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  45. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  46. data/lib/new_relic/agent/database.rb +4 -4
  47. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  48. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  49. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  50. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +7 -8
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  52. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  53. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  54. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  55. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  56. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  57. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  58. data/lib/new_relic/agent/error_collector.rb +35 -7
  59. data/lib/new_relic/agent/error_filter.rb +2 -2
  60. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  61. data/lib/new_relic/agent/event_loop.rb +3 -3
  62. data/lib/new_relic/agent/external.rb +1 -1
  63. data/lib/new_relic/agent/harvester.rb +1 -3
  64. data/lib/new_relic/agent/heap.rb +2 -1
  65. data/lib/new_relic/agent/hostname.rb +1 -1
  66. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  67. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  68. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  69. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  70. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  71. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  72. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  73. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  74. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  75. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  76. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  77. data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
  78. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  79. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  80. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  81. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  82. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  83. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  84. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
  85. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  86. data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
  87. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +5 -3
  88. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  89. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  90. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  91. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  92. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
  93. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  94. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  95. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
  96. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +4 -3
  97. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
  98. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  99. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  100. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +1 -1
  101. data/lib/new_relic/agent/instrumentation/fiber.rb +1 -1
  102. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  103. data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
  104. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
  105. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +3 -2
  106. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
  107. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
  108. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +4 -4
  109. data/lib/new_relic/agent/instrumentation/grpc_client.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/grpc_server.rb +1 -1
  111. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  113. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  114. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
  115. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  116. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
  117. data/lib/new_relic/agent/instrumentation/memcache.rb +8 -8
  118. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  119. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -6
  121. data/lib/new_relic/agent/instrumentation/net_http.rb +1 -1
  122. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  123. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  124. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  125. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  126. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  127. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  128. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +7 -7
  129. data/lib/new_relic/agent/instrumentation/rake.rb +2 -2
  130. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  132. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  133. data/lib/new_relic/agent/instrumentation/sequel.rb +4 -4
  134. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  135. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  136. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  137. data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -0
  138. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  139. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  140. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  142. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  143. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  144. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  145. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  146. data/lib/new_relic/agent/logging.rb +73 -33
  147. data/lib/new_relic/agent/messaging.rb +7 -5
  148. data/lib/new_relic/agent/method_tracer.rb +7 -7
  149. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  150. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
  151. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  152. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  153. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  154. data/lib/new_relic/agent/new_relic_service.rb +14 -15
  155. data/lib/new_relic/agent/obfuscator.rb +1 -1
  156. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  157. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  158. data/lib/new_relic/agent/pipe_service.rb +5 -3
  159. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  160. data/lib/new_relic/agent/sampler.rb +2 -1
  161. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  162. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  163. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  164. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  165. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  166. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  167. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  168. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  169. data/lib/new_relic/agent/stats.rb +1 -1
  170. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  171. data/lib/new_relic/agent/system_info.rb +10 -10
  172. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  173. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  174. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  175. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  176. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  177. data/lib/new_relic/agent/tracer.rb +8 -7
  178. data/lib/new_relic/agent/transaction/abstract_segment.rb +52 -46
  179. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  180. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  181. data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
  182. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  183. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  184. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  185. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  186. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  187. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  188. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  189. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  190. data/lib/new_relic/agent/transaction/tracing.rb +2 -2
  191. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  192. data/lib/new_relic/agent/transaction.rb +39 -36
  193. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  194. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  195. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  196. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  197. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  198. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  199. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  200. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  201. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  202. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  203. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  204. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  205. data/lib/new_relic/agent/worker_loop.rb +1 -1
  206. data/lib/new_relic/agent.rb +78 -16
  207. data/lib/new_relic/cli/command.rb +3 -3
  208. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  209. data/lib/new_relic/cli/commands/install.rb +14 -14
  210. data/lib/new_relic/collection_helper.rb +2 -2
  211. data/lib/new_relic/constants.rb +7 -8
  212. data/lib/new_relic/control/class_methods.rb +3 -3
  213. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  214. data/lib/new_relic/control/instance_methods.rb +5 -5
  215. data/lib/new_relic/control/instrumentation.rb +1 -1
  216. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  217. data/lib/new_relic/dependency_detection.rb +4 -17
  218. data/lib/new_relic/environment_report.rb +4 -4
  219. data/lib/new_relic/helper.rb +2 -1
  220. data/lib/new_relic/language_support.rb +1 -1
  221. data/lib/new_relic/latest_changes.rb +5 -5
  222. data/lib/new_relic/noticed_error.rb +20 -18
  223. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  224. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  225. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  226. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  227. data/lib/new_relic/supportability_helper.rb +2 -0
  228. data/lib/new_relic/version.rb +1 -1
  229. data/lib/newrelic_rpm.rb +3 -3
  230. data/lib/sequel/extensions/new_relic_instrumentation.rb +3 -3
  231. data/lib/sequel/plugins/new_relic_instrumentation.rb +1 -1
  232. data/lib/tasks/config.rake +12 -12
  233. data/lib/tasks/coverage_report.rake +4 -4
  234. data/lib/tasks/helpers/format.rb +9 -9
  235. data/lib/tasks/helpers/removers.rb +5 -5
  236. data/lib/tasks/install.rake +4 -4
  237. data/lib/tasks/instrumentation_generator/instrumentation.thor +8 -8
  238. data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
  239. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
  240. data/lib/tasks/multiverse.rb +13 -6
  241. data/lib/tasks/newrelic.rb +1 -0
  242. data/lib/tasks/tests.rake +6 -6
  243. data/newrelic.yml +3 -3
  244. data/newrelic_rpm.gemspec +13 -13
  245. data/test/agent_helper.rb +25 -24
  246. metadata +73 -4
  247. data/lib/new_relic/agent/range_extensions.rb +0 -27
@@ -97,14 +97,14 @@ class Instrumentation < Thor
97
97
 
98
98
  def config_block(name)
99
99
  <<~CONFIG
100
- :'instrumentation.#{name.downcase}' => {
101
- :default => 'auto',
102
- :public => true,
103
- :type => String,
104
- :dynamic_name => true,
105
- :allowed_from_server => false,
106
- :description => 'Controls auto-instrumentation of the #{name} library at start up. May be one of [auto|prepend|chain|disabled].'
107
- },
100
+ :'instrumentation.#{name.downcase}' => {
101
+ :default => 'auto',
102
+ :public => true,
103
+ :type => String,
104
+ :dynamic_name => true,
105
+ :allowed_from_server => false,
106
+ :description => 'Controls auto-instrumentation of the #{name} library at start up. May be one of [auto|prepend|chain|disabled].'
107
+ },
108
108
  CONFIG
109
109
  end
110
110
 
@@ -3,7 +3,7 @@
3
3
  # frozen_string_literal: true
4
4
 
5
5
  module NewRelic::Agent::Instrumentation
6
- module <%= @class_name %>
6
+ module <%= @class_name %>::Chain
7
7
  def self.instrument!
8
8
  ::<%= @class_name %>.class_eval do
9
9
  include NewRelic::Agent::Instrumentation::<%= @class_name %>
@@ -23,7 +23,7 @@ DependencyDetection.defer do
23
23
  if use_prepend?
24
24
  prepend_instrument ::<%= @class_name %>, NewRelic::Agent::Instrumentation::<%= @class_name %>::Prepend
25
25
  else
26
- chain_instrument NewRelic::Agent::Instrumentation::<%= @class_name %>
26
+ chain_instrument NewRelic::Agent::Instrumentation::<%= @class_name %>::Chain
27
27
  end
28
28
  end
29
29
  end
@@ -1,6 +1,7 @@
1
1
  # This file is distributed under New Relic's license terms.
2
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
3
  # frozen_string_literal: true
4
+
4
5
  #
5
6
  # Rake task for running Ruby agent multiverse tests. This file may be required
6
7
  # from third party gems. It is also used by the agent itself to run multiverse.
@@ -39,12 +40,14 @@ require_relative 'helpers/removers'
39
40
  include Removers
40
41
 
41
42
  namespace :test do
42
- desc "Run functional test suite for New Relic"
43
+ desc 'Run functional test suite for New Relic'
43
44
  task :multiverse, [:suite, :param1, :param2, :param3, :param4] => ['multiverse:env'] do |_, args|
44
45
  Multiverse::Runner.run(args.suite, Multiverse::Runner.parse_args(args))
45
46
  end
46
47
 
47
48
  namespace :multiverse do
49
+ # task :prerequisites
50
+
48
51
  task :env do
49
52
  # ENV['SUITES_DIRECTORY'] = File.expand_path('../../test/multiverse/suites', __FILE__)
50
53
  require File.expand_path('../../../test/multiverse/lib/multiverse', __FILE__)
@@ -56,22 +59,26 @@ namespace :test do
56
59
  remove_generated_gemfile_lockfiles
57
60
  end
58
61
 
59
- desc "Clean cached gemfiles from Bundler.bundle_path"
62
+ desc 'Clean cached gemfiles from Bundler.bundle_path'
60
63
  task :clean_gemfile_cache do
61
64
  glob = File.expand_path('multiverse-cache/Gemfile.*.lock', Bundler.bundle_path)
62
65
  File.delete(*Dir[glob])
63
66
  end
64
67
 
65
- desc "Test the multiverse testing framework by executing tests in test/multiverse/test. Get meta with it."
68
+ desc 'Test the multiverse testing framework by executing tests in test/multiverse/test. Get meta with it.'
66
69
  task :self, [:suite, :mode] do |_, args|
67
- args.with_defaults(:suite => "", :mode => "")
68
- puts ("Testing the multiverse testing framework...")
70
+ args.with_defaults(:suite => '', :mode => '')
71
+ puts ('Testing the multiverse testing framework...')
69
72
  test_files = FileList['test/multiverse/test/*_test.rb']
70
- ruby test_files.join(" ")
73
+ ruby test_files.join(' ')
71
74
  end
72
75
 
73
76
  task :prime, [:suite] => [:env] do |_, args|
74
77
  Multiverse::Runner.prime(args.suite, Multiverse::Runner.parse_args(args))
75
78
  end
79
+
80
+ task :gem_manifest => :env do
81
+ Multiverse::GemManifest.new.report
82
+ end
76
83
  end
77
84
  end
@@ -1,6 +1,7 @@
1
1
  # This file is distributed under New Relic's license terms.
2
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
3
  # frozen_string_literal: true
4
+
4
5
  #
5
6
  # If you are looking to instrument rake tasks in a Rails environment, but the
6
7
  # task doesn't depend on :environment, this task may be included to ensure that
data/lib/tasks/tests.rake CHANGED
@@ -13,19 +13,19 @@ end
13
13
  if defined? Rake::TestTask
14
14
  namespace :test do
15
15
  tasks = Rake.application.top_level_tasks
16
- ENV["TESTOPTS"] ||= ""
17
- if tasks.any? { |t| t.include?("verbose") }
18
- ENV["TESTOPTS"] += " -v"
16
+ ENV['TESTOPTS'] ||= ''
17
+ if tasks.any? { |t| t.include?('verbose') }
18
+ ENV['TESTOPTS'] += ' -v'
19
19
  end
20
20
  if seed = look_for_seed(tasks)
21
- ENV["TESTOPTS"] += " --" + seed
21
+ ENV['TESTOPTS'] += ' --' + seed
22
22
  end
23
23
 
24
24
  agent_home = File.expand_path(File.join(File.dirname(__FILE__), '..', '..'))
25
25
 
26
26
  Rake::TestTask.new(:newrelic) do |t|
27
- file_pattern = ENV["file"]
28
- file_pattern = file_pattern.split(",").map { |f| "#{agent_home}/#{f}".gsub("//", "/") } if file_pattern
27
+ file_pattern = ENV['file']
28
+ file_pattern = file_pattern.split(',').map { |f| "#{agent_home}/#{f}".gsub('//', '/') } if file_pattern
29
29
  file_pattern ||= "#{agent_home}/test/new_relic/**/*_test.rb"
30
30
 
31
31
  t.libs << "#{agent_home}/test"
data/newrelic.yml CHANGED
@@ -545,7 +545,7 @@ common: &default_settings
545
545
  # slow_sql.enabled: false
546
546
 
547
547
  # If true, the agent collects explain plans in slow SQL queries. If this setting
548
- # is omitted, the transaction_tracer.explain.enabled setting will be applied as
548
+ # is omitted, the transaction_tracer.explain_enabled setting will be applied as
549
549
  # the default setting for explain plans in slow SQL as well.
550
550
  # slow_sql.explain_enabled: false
551
551
 
@@ -639,13 +639,13 @@ common: &default_settings
639
639
  # transaction_tracer.enabled: true
640
640
 
641
641
  # Threshold (in seconds) above which the agent will collect explain plans.
642
- # Relevant only when explain.enabled is true.
642
+ # Relevant only when explain_enabled is true.
643
643
  # transaction_tracer.explain_threshold: 0.5
644
644
 
645
645
  # If true, enables the collection of explain plans in transaction traces.
646
646
  # This setting will also apply to explain plans in slow SQL traces if
647
647
  # slow_sql.explain enabled is not set separately.
648
- # transaction_tracer.explain.enabled: true
648
+ # transaction_tracer.explain_enabled: true
649
649
 
650
650
  # Maximum number of transaction trace nodes to record in a single transaction
651
651
  # trace.
data/newrelic_rpm.gemspec CHANGED
@@ -6,11 +6,11 @@ require 'new_relic/version'
6
6
  require 'new_relic/latest_changes'
7
7
 
8
8
  Gem::Specification.new do |s|
9
- s.name = "newrelic_rpm"
9
+ s.name = 'newrelic_rpm'
10
10
  s.version = NewRelic::VERSION::STRING
11
11
  s.required_ruby_version = '>= 2.4.0'
12
- s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to?(:required_rubygems_version=)
13
- s.authors = ["Tanna McClure", "Kayla Reopelle", "James Bunch", "Hannah Ramadan"]
12
+ s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to?(:required_rubygems_version=)
13
+ s.authors = ['Tanna McClure', 'Kayla Reopelle', 'James Bunch', 'Hannah Ramadan']
14
14
  s.licenses = ['Apache-2.0']
15
15
  s.description = <<~EOS
16
16
  New Relic is a performance management system, developed by New Relic,
@@ -20,14 +20,14 @@ Gem::Specification.new do |s|
20
20
  Gem or plugin, hosted on
21
21
  https://github.com/newrelic/newrelic-ruby-agent/
22
22
  EOS
23
- s.email = "support@newrelic.com"
23
+ s.email = 'support@newrelic.com'
24
24
  s.executables = %w[newrelic_cmd newrelic nrdebug]
25
25
  s.extra_rdoc_files = [
26
- "CHANGELOG.md",
27
- "LICENSE",
28
- "README.md",
29
- "CONTRIBUTING.md",
30
- "newrelic.yml"
26
+ 'CHANGELOG.md',
27
+ 'LICENSE',
28
+ 'README.md',
29
+ 'CONTRIBUTING.md',
30
+ 'newrelic.yml'
31
31
  ]
32
32
 
33
33
  s.metadata = {
@@ -35,7 +35,7 @@ Gem::Specification.new do |s|
35
35
  'changelog_uri' => 'https://github.com/newrelic/newrelic-ruby-agent/blob/main/CHANGELOG.md',
36
36
  'documentation_uri' => 'https://docs.newrelic.com/docs/agents/ruby-agent',
37
37
  'source_code_uri' => 'https://github.com/newrelic/newrelic-ruby-agent',
38
- "homepage_uri" => "https://newrelic.com/ruby"
38
+ 'homepage_uri' => 'https://newrelic.com/ruby'
39
39
  }
40
40
 
41
41
  file_list = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|infinite_tracing|\.github)/(?!agent_helper.rb)}) }
@@ -43,9 +43,9 @@ Gem::Specification.new do |s|
43
43
  file_list << build_file_path if File.exist?(build_file_path)
44
44
  s.files = file_list
45
45
 
46
- s.homepage = "https://github.com/newrelic/rpm"
47
- s.require_paths = ["lib"]
48
- s.summary = "New Relic Ruby Agent"
46
+ s.homepage = 'https://github.com/newrelic/rpm'
47
+ s.require_paths = ['lib']
48
+ s.summary = 'New Relic Ruby Agent'
49
49
  s.add_development_dependency 'bundler'
50
50
  s.add_development_dependency 'feedjira', '3.2.1' unless ENV['CI'] || RUBY_VERSION < '2.5' # for Gabby
51
51
  s.add_development_dependency 'httparty' unless ENV['CI'] # for perf tests and Gabby
data/test/agent_helper.rb CHANGED
@@ -111,7 +111,8 @@ end
111
111
  def assert_log_contains(log, message)
112
112
  lines = log.array
113
113
 
114
- assert (lines.any? { |line| line.match(message) })
114
+ assert (lines.any? { |line| line.match(message) }),
115
+ "Could not find message. Log contained: #{lines.join("\n")}"
115
116
  end
116
117
 
117
118
  def assert_audit_log_contains(audit_log_contents, needle)
@@ -147,7 +148,7 @@ def assert_audit_log_contains_object(audit_log_contents, o, format = :json)
147
148
  end
148
149
  when NilClass
149
150
 
150
- assert_audit_log_contains(audit_log_contents, format == :json ? "null" : "nil")
151
+ assert_audit_log_contains(audit_log_contents, format == :json ? 'null' : 'nil')
151
152
  else
152
153
  assert_audit_log_contains(audit_log_contents, o.inspect)
153
154
  end
@@ -182,7 +183,7 @@ def _normalize_metric_expectations(expectations)
182
183
  end
183
184
 
184
185
  def dump_stats(stats)
185
- str = String.new(" Call count: #{stats.call_count}\n")
186
+ str = +" Call count: #{stats.call_count}\n"
186
187
  str << " Total call time: #{stats.total_call_time}\n"
187
188
  str << " Total exclusive time: #{stats.total_exclusive_time}\n"
188
189
  str << " Min call time: #{stats.min_call_time}\n"
@@ -379,8 +380,8 @@ end
379
380
  # in_transaction('foobar', :category => :controller) { ... }
380
381
  #
381
382
  def in_transaction(*args, &blk)
382
- opts = args.last && args.last.is_a?(Hash) ? args.pop : {}
383
- category = (opts && opts.delete(:category)) || :other
383
+ opts = args.last&.is_a?(Hash) ? args.pop : {}
384
+ category = (opts&.delete(:category)) || :other
384
385
 
385
386
  # At least one test passes `:transaction_name => nil`, so handle it gently
386
387
  name = opts.key?(:transaction_name) ? opts.delete(:transaction_name) : args.first || 'dummy'
@@ -434,10 +435,10 @@ def capture_segment_with_error
434
435
  segment_with_error = nil
435
436
  with_segment do |segment|
436
437
  segment_with_error = segment
437
- raise "oops!"
438
+ raise 'oops!'
438
439
  end
439
440
  rescue Exception => exception
440
- assert segment_with_error, "expected to have a segment_with_error"
441
+ assert segment_with_error, 'expected to have a segment_with_error'
441
442
  build_deferred_error_attributes(segment_with_error)
442
443
  return segment_with_error, exception
443
444
  end
@@ -476,7 +477,7 @@ end
476
477
  def last_transaction_trace_request_params
477
478
  agent_attributes = attributes_for(last_transaction_trace, :agent)
478
479
  agent_attributes.inject({}) do |memo, (key, value)|
479
- memo[key] = value if key.to_s.start_with?("request.parameters.")
480
+ memo[key] = value if key.to_s.start_with?('request.parameters.')
480
481
  memo
481
482
  end
482
483
  end
@@ -671,7 +672,7 @@ def undefine_constant(constant_symbol)
671
672
  const_str = constant_symbol.to_s
672
673
  parent = get_parent(const_str)
673
674
  const_name = const_str.gsub(/.*::/, '')
674
- return yield unless parent && parent.constants.include?(const_name.to_sym)
675
+ return yield unless parent&.constants&.include?(const_name.to_sym)
675
676
 
676
677
  removed_constant = parent.send(:remove_const, const_name)
677
678
  yield
@@ -693,13 +694,13 @@ ensure
693
694
  end
694
695
 
695
696
  def create_agent_command(args = {})
696
- NewRelic::Agent::Commands::AgentCommand.new([-1, {"name" => "command_name", "arguments" => args}])
697
+ NewRelic::Agent::Commands::AgentCommand.new([-1, {'name' => 'command_name', 'arguments' => args}])
697
698
  end
698
699
 
699
700
  def wait_for_backtrace_service_poll(opts = {})
700
701
  defaults = {
701
702
  :timeout => 10.0,
702
- :service => NewRelic::Agent.agent.agent_command_router.backtrace_service,
703
+ :service => NewRelic::Agent.agent.instance_variable_get(:@agent_command_router).backtrace_service,
703
704
  :iterations => 1
704
705
  }
705
706
  opts = defaults.merge(opts)
@@ -729,7 +730,7 @@ def with_array_logger(level = :info)
729
730
  override_logger = Logger.new(logdev)
730
731
 
731
732
  with_config(config) do
732
- NewRelic::Agent.logger = NewRelic::Agent::AgentLogger.new("", override_logger)
733
+ NewRelic::Agent.logger = NewRelic::Agent::AgentLogger.new('', override_logger)
733
734
  yield
734
735
  end
735
736
 
@@ -876,7 +877,7 @@ def load_cross_agent_test(name)
876
877
  end
877
878
 
878
879
  def each_cross_agent_test(options)
879
- options = {:dir => nil, :pattern => "*"}.update(options)
880
+ options = {:dir => nil, :pattern => '*'}.update(options)
880
881
  path = File.join([cross_agent_tests_dir, options[:dir], options[:pattern]].compact)
881
882
  Dir.glob(path).each { |file| yield(file) }
882
883
  end
@@ -891,7 +892,7 @@ def assert_event_attributes(event, test_name, expected_attributes, non_expected_
891
892
  incorrect_attributes << name unless actual_value == expected_value
892
893
  end
893
894
 
894
- msg = String.new("Found missing or incorrect attribute values in #{test_name}:\n")
895
+ msg = +"Found missing or incorrect attribute values in #{test_name}:\n"
895
896
 
896
897
  incorrect_attributes.each do |name|
897
898
  msg << " #{name}: expected = #{expected_attributes[name].inspect}, actual = #{event_attrs[name].inspect}\n"
@@ -930,10 +931,10 @@ def message_for_status_code(code)
930
931
  end
931
932
 
932
933
  case code
933
- when 200 then "OK"
934
- when 404 then "Not Found"
935
- when 403 then "Forbidden"
936
- else "Unknown"
934
+ when 200 then 'OK'
935
+ when 404 then 'Not Found'
936
+ when 403 then 'Forbidden'
937
+ else 'Unknown'
937
938
  end
938
939
  end
939
940
 
@@ -942,7 +943,7 @@ end
942
943
  # a "status_code" may be passed in the headers to alter the HTTP Status Code
943
944
  # that is wrapped in the response.
944
945
  def mock_http_response(headers, wrap_it = true)
945
- status_code = (headers.delete("status_code") || 200).to_i
946
+ status_code = (headers.delete('status_code') || 200).to_i
946
947
  net_http_resp = Net::HTTPResponse.new(1.0, status_code, message_for_status_code(status_code))
947
948
  headers.each do |key, value|
948
949
  net_http_resp.add_field(key.to_s, value)
@@ -966,7 +967,7 @@ end
966
967
  def assert_segment_noticed_error(txn, segment_name, error_classes, error_message)
967
968
  error_segment = txn.segments.reverse.detect { |s| s.noticed_error }
968
969
 
969
- assert error_segment, "Expected at least one segment with a noticed_error"
970
+ assert error_segment, 'Expected at least one segment with a noticed_error'
970
971
 
971
972
  assert_match_or_equal segment_name, error_segment.name
972
973
 
@@ -977,15 +978,15 @@ def assert_segment_noticed_error(txn, segment_name, error_classes, error_message
977
978
  end
978
979
 
979
980
  def assert_transaction_noticed_error(txn, error_classes)
980
- refute_empty txn.exceptions, "Expected transaction to notice the error"
981
+ refute_empty txn.exceptions, 'Expected transaction to notice the error'
981
982
  assert_match_or_equal error_classes, txn.exceptions.keys.first.class.name
982
983
  end
983
984
 
984
985
  def refute_transaction_noticed_error(txn, error_class)
985
986
  error_segment = txn.segments.reverse.detect { |s| s.noticed_error }
986
987
 
987
- assert error_segment, "Expected at least one segment with a noticed_error"
988
- assert_empty txn.exceptions, "Expected transaction to NOT notice any segment errors"
988
+ assert error_segment, 'Expected at least one segment with a noticed_error'
989
+ assert_empty txn.exceptions, 'Expected transaction to NOT notice any segment errors'
989
990
  end
990
991
 
991
992
  def refute_raises(*exp)
@@ -1021,6 +1022,6 @@ def defer_testing_to_min_supported_rails(test_file, min_rails_version, supports_
1021
1022
 
1022
1023
  yield
1023
1024
  else
1024
- puts "Skipping tests in #{File.basename(test_file)} because Rails >= #{min_rails_version} is unavailable" if ENV["VERBOSE_TEST_OUTPUT"]
1025
+ puts "Skipping tests in #{File.basename(test_file)} because Rails >= #{min_rails_version} is unavailable" if ENV['VERBOSE_TEST_OUTPUT']
1025
1026
  end
1026
1027
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: newrelic_rpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.0.0
4
+ version: 9.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tanna McClure
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2023-02-21 00:00:00.000000000 Z
14
+ date: 2023-04-17 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -83,6 +83,76 @@ dependencies:
83
83
  - - '='
84
84
  - !ruby/object:Gem::Version
85
85
  version: 12.3.3
86
+ - !ruby/object:Gem::Dependency
87
+ name: rubocop
88
+ requirement: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - '='
91
+ - !ruby/object:Gem::Version
92
+ version: 1.44.1
93
+ type: :development
94
+ prerelease: false
95
+ version_requirements: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - '='
98
+ - !ruby/object:Gem::Version
99
+ version: 1.44.1
100
+ - !ruby/object:Gem::Dependency
101
+ name: rubocop-ast
102
+ requirement: !ruby/object:Gem::Requirement
103
+ requirements:
104
+ - - '='
105
+ - !ruby/object:Gem::Version
106
+ version: 1.24.1
107
+ type: :development
108
+ prerelease: false
109
+ version_requirements: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - '='
112
+ - !ruby/object:Gem::Version
113
+ version: 1.24.1
114
+ - !ruby/object:Gem::Dependency
115
+ name: rubocop-minitest
116
+ requirement: !ruby/object:Gem::Requirement
117
+ requirements:
118
+ - - '='
119
+ - !ruby/object:Gem::Version
120
+ version: 0.27.0
121
+ type: :development
122
+ prerelease: false
123
+ version_requirements: !ruby/object:Gem::Requirement
124
+ requirements:
125
+ - - '='
126
+ - !ruby/object:Gem::Version
127
+ version: 0.27.0
128
+ - !ruby/object:Gem::Dependency
129
+ name: rubocop-performance
130
+ requirement: !ruby/object:Gem::Requirement
131
+ requirements:
132
+ - - '='
133
+ - !ruby/object:Gem::Version
134
+ version: 1.16.0
135
+ type: :development
136
+ prerelease: false
137
+ version_requirements: !ruby/object:Gem::Requirement
138
+ requirements:
139
+ - - '='
140
+ - !ruby/object:Gem::Version
141
+ version: 1.16.0
142
+ - !ruby/object:Gem::Dependency
143
+ name: rubocop-rake
144
+ requirement: !ruby/object:Gem::Requirement
145
+ requirements:
146
+ - - '='
147
+ - !ruby/object:Gem::Version
148
+ version: 0.6.0
149
+ type: :development
150
+ prerelease: false
151
+ version_requirements: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - '='
154
+ - !ruby/object:Gem::Version
155
+ version: 0.6.0
86
156
  - !ruby/object:Gem::Dependency
87
157
  name: simplecov
88
158
  requirement: !ruby/object:Gem::Requirement
@@ -439,7 +509,6 @@ files:
439
509
  - lib/new_relic/agent/pipe_service.rb
440
510
  - lib/new_relic/agent/prepend_supportability.rb
441
511
  - lib/new_relic/agent/priority_sampled_buffer.rb
442
- - lib/new_relic/agent/range_extensions.rb
443
512
  - lib/new_relic/agent/rules_engine.rb
444
513
  - lib/new_relic/agent/rules_engine/replacement_rule.rb
445
514
  - lib/new_relic/agent/rules_engine/segment_terms_rule.rb
@@ -600,7 +669,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
600
669
  - !ruby/object:Gem::Version
601
670
  version: 1.3.1
602
671
  requirements: []
603
- rubygems_version: 3.1.6
672
+ rubygems_version: 3.4.10
604
673
  signing_key:
605
674
  specification_version: 4
606
675
  summary: New Relic Ruby Agent
@@ -1,27 +0,0 @@
1
- # This file is distributed under New Relic's license terms.
2
- # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
- # frozen_string_literal: true
4
-
5
- module NewRelic
6
- module Agent
7
- module RangeExtensions
8
- module_function
9
-
10
- def intersects?(r1, r2)
11
- r1.begin > r2.begin ? r2.cover?(r1.begin) : r1.cover?(r2.begin)
12
- end
13
-
14
- # Computes the amount of overlap between range and an array of ranges.
15
- # For efficiency, it assumes that range intersects with each of the
16
- # ranges in the ranges array.
17
- def compute_overlap(range, ranges)
18
- ranges.inject(0) do |memo, other|
19
- next memo unless intersects?(range, other)
20
-
21
- memo += ([range.end, other.end].min) -
22
- ([range.begin, other.begin].max)
23
- end
24
- end
25
- end
26
- end
27
- end