newrelic_rpm 9.0.0 → 9.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (224) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +6 -16
  4. data/.rubocop_todo.yml +4 -43
  5. data/.simplecov +1 -1
  6. data/CHANGELOG.md +60 -2
  7. data/Gemfile +1 -1
  8. data/Guardfile +7 -7
  9. data/README.md +1 -2
  10. data/Rakefile +8 -8
  11. data/Thorfile +1 -1
  12. data/bin/nrdebug +20 -20
  13. data/init.rb +1 -1
  14. data/lib/new_relic/agent/agent.rb +3 -16
  15. data/lib/new_relic/agent/agent_helpers/connect.rb +4 -9
  16. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  17. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  18. data/lib/new_relic/agent/agent_helpers/special_startup.rb +2 -2
  19. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  20. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  21. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  22. data/lib/new_relic/agent/agent_logger.rb +9 -9
  23. data/lib/new_relic/agent/attribute_filter.rb +2 -2
  24. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  25. data/lib/new_relic/agent/audit_logger.rb +5 -5
  26. data/lib/new_relic/agent/autostart.rb +1 -1
  27. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  28. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  29. data/lib/new_relic/agent/commands/thread_profiler_session.rb +5 -5
  30. data/lib/new_relic/agent/configuration/default_source.rb +57 -56
  31. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  32. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -3
  33. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  34. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -10
  35. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  36. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  37. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  38. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  39. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  40. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  41. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  42. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  43. data/lib/new_relic/agent/database.rb +4 -4
  44. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  45. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  46. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  47. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +7 -8
  48. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  49. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  50. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  52. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  53. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  54. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  55. data/lib/new_relic/agent/error_collector.rb +35 -7
  56. data/lib/new_relic/agent/error_filter.rb +2 -2
  57. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  58. data/lib/new_relic/agent/event_loop.rb +3 -3
  59. data/lib/new_relic/agent/external.rb +1 -1
  60. data/lib/new_relic/agent/harvester.rb +1 -3
  61. data/lib/new_relic/agent/heap.rb +2 -1
  62. data/lib/new_relic/agent/hostname.rb +1 -1
  63. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  64. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  65. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  66. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  67. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  68. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  69. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  70. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  71. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  72. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  73. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  74. data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
  75. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  76. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  77. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  78. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  79. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  80. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  81. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +5 -3
  82. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  83. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  84. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  85. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  86. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  87. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  88. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +1 -1
  89. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +3 -3
  90. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +1 -1
  91. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  92. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  93. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  94. data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
  95. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +2 -1
  96. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +3 -3
  97. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  98. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  99. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  100. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  101. data/lib/new_relic/agent/instrumentation/memcache.rb +6 -6
  102. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  103. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  104. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +5 -5
  105. data/lib/new_relic/agent/instrumentation/net_http.rb +1 -1
  106. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  107. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  108. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  109. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  111. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +7 -7
  113. data/lib/new_relic/agent/instrumentation/rake.rb +2 -2
  114. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  116. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  117. data/lib/new_relic/agent/instrumentation/sequel.rb +4 -4
  118. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  119. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  121. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  122. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  123. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  124. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  125. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  126. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  127. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  128. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  129. data/lib/new_relic/agent/logging.rb +73 -33
  130. data/lib/new_relic/agent/messaging.rb +7 -5
  131. data/lib/new_relic/agent/method_tracer.rb +6 -6
  132. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  133. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
  134. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  135. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  136. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  137. data/lib/new_relic/agent/new_relic_service.rb +14 -14
  138. data/lib/new_relic/agent/obfuscator.rb +1 -1
  139. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  140. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  141. data/lib/new_relic/agent/pipe_service.rb +5 -3
  142. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  143. data/lib/new_relic/agent/sampler.rb +1 -1
  144. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  145. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  146. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  147. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  148. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  149. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  150. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  151. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  152. data/lib/new_relic/agent/stats.rb +1 -1
  153. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  154. data/lib/new_relic/agent/system_info.rb +10 -10
  155. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  156. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  157. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  158. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  159. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  160. data/lib/new_relic/agent/tracer.rb +8 -7
  161. data/lib/new_relic/agent/transaction/abstract_segment.rb +7 -7
  162. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  163. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  164. data/lib/new_relic/agent/transaction/distributed_tracing.rb +6 -6
  165. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  166. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  167. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  168. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  169. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  170. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  171. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  172. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  173. data/lib/new_relic/agent/transaction/tracing.rb +2 -2
  174. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  175. data/lib/new_relic/agent/transaction.rb +39 -36
  176. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  177. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  178. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  179. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  180. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  181. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  182. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  183. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  184. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  185. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  186. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  187. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  188. data/lib/new_relic/agent/worker_loop.rb +1 -1
  189. data/lib/new_relic/agent.rb +78 -16
  190. data/lib/new_relic/cli/command.rb +3 -3
  191. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  192. data/lib/new_relic/cli/commands/install.rb +14 -14
  193. data/lib/new_relic/collection_helper.rb +2 -2
  194. data/lib/new_relic/constants.rb +7 -8
  195. data/lib/new_relic/control/class_methods.rb +3 -3
  196. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  197. data/lib/new_relic/control/instance_methods.rb +5 -5
  198. data/lib/new_relic/control/instrumentation.rb +1 -1
  199. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  200. data/lib/new_relic/dependency_detection.rb +4 -17
  201. data/lib/new_relic/environment_report.rb +4 -4
  202. data/lib/new_relic/helper.rb +2 -1
  203. data/lib/new_relic/language_support.rb +1 -1
  204. data/lib/new_relic/latest_changes.rb +5 -5
  205. data/lib/new_relic/noticed_error.rb +20 -18
  206. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  207. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  208. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  209. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  210. data/lib/new_relic/supportability_helper.rb +2 -0
  211. data/lib/new_relic/version.rb +1 -1
  212. data/lib/newrelic_rpm.rb +3 -3
  213. data/lib/sequel/extensions/new_relic_instrumentation.rb +3 -3
  214. data/lib/sequel/plugins/new_relic_instrumentation.rb +1 -1
  215. data/lib/tasks/config.rake +12 -12
  216. data/lib/tasks/coverage_report.rake +3 -3
  217. data/lib/tasks/helpers/format.rb +9 -9
  218. data/lib/tasks/helpers/removers.rb +5 -5
  219. data/lib/tasks/install.rake +4 -4
  220. data/lib/tasks/multiverse.rb +12 -6
  221. data/lib/tasks/tests.rake +6 -6
  222. data/newrelic_rpm.gemspec +13 -13
  223. data/test/agent_helper.rb +25 -24
  224. metadata +2 -2
@@ -4,7 +4,7 @@
4
4
 
5
5
  if ENV['CI']
6
6
  namespace :coverage do
7
- desc "Collates all result sets generated by the different test runners"
7
+ desc 'Collates all result sets generated by the different test runners'
8
8
  task :report do
9
9
  require 'simplecov'
10
10
  require 'fileutils'
@@ -19,10 +19,10 @@ if ENV['CI']
19
19
  Dir['lib/coverage_{[!r][!e][!s][!u][!l][!t][!s]}*'].each { |dir| FileUtils.rm_rf(dir) }
20
20
  end
21
21
 
22
- desc "Removes all coverage_* directories"
22
+ desc 'Removes all coverage_* directories'
23
23
  task :clear do
24
24
  require 'fileutils'
25
- Dir["lib/coverage_*"].each { |dir| FileUtils.rm_rf(dir) }
25
+ Dir['lib/coverage_*'].each { |dir| FileUtils.rm_rf(dir) }
26
26
  end
27
27
  end
28
28
  end
@@ -66,24 +66,24 @@ module Format
66
66
 
67
67
  def format_description(value)
68
68
  description = ''
69
- description += "<b>DEPRECATED</b> " if value[:deprecated]
69
+ description += '<b>DEPRECATED</b> ' if value[:deprecated]
70
70
  description += value[:description]
71
71
  description
72
72
  end
73
73
 
74
74
  def format_env_var(key)
75
- return "None" if NON_ENV_CONFIGS.include?(key)
75
+ return 'None' if NON_ENV_CONFIGS.include?(key)
76
76
 
77
- "NEW_RELIC_#{key.tr(".", "_").upcase}"
77
+ "NEW_RELIC_#{key.tr('.', '_').upcase}"
78
78
  end
79
79
 
80
80
  def format_name(key)
81
81
  name = NAME_OVERRIDES[key]
82
82
  return name if name
83
83
 
84
- key.split("_")
84
+ key.split('_')
85
85
  .each { |fragment| fragment[0] = fragment[0].upcase }
86
- .join(" ")
86
+ .join(' ')
87
87
  end
88
88
 
89
89
  def format_sections(key, value)
@@ -98,7 +98,7 @@ module Format
98
98
 
99
99
  def format_type(type)
100
100
  if type == NewRelic::Agent::Configuration::Boolean
101
- "Boolean"
101
+ 'Boolean'
102
102
  else
103
103
  type
104
104
  end
@@ -110,11 +110,11 @@ module Format
110
110
  end
111
111
 
112
112
  def section_key(key, components)
113
- if key =~ /^disable_/ # "disable_httpclient"
113
+ if /^disable_/.match?(key) # "disable_httpclient"
114
114
  DISABLING
115
- elsif components.length >= 2 && !(components[1] == "attributes") # "analytics_events.enabled"
115
+ elsif components.length >= 2 && !(components[1] == 'attributes') # "analytics_events.enabled"
116
116
  components.first
117
- elsif components[1] == "attributes" # "transaction_tracer.attributes.enabled"
117
+ elsif components[1] == 'attributes' # "transaction_tracer.attributes.enabled"
118
118
  ATTRIBUTES
119
119
  else
120
120
  GENERAL
@@ -11,21 +11,21 @@ module Removers
11
11
  `echo "drop database #{database}" | mysql -u root`
12
12
  end
13
13
  rescue => error
14
- puts "ERROR: Cannot get MySQL databases..."
14
+ puts 'ERROR: Cannot get MySQL databases...'
15
15
  puts error.message
16
16
  end
17
17
 
18
18
  def remove_generated_gemfiles
19
- file_path = File.expand_path("test/multiverse/suites")
20
- Dir.glob(File.join(file_path, "**", "Gemfile*")).each do |fn|
19
+ file_path = File.expand_path('test/multiverse/suites')
20
+ Dir.glob(File.join(file_path, '**', 'Gemfile*')).each do |fn|
21
21
  puts "Removing #{fn.gsub(file_path, '.../suites')}"
22
22
  FileUtils.rm(fn)
23
23
  end
24
24
  end
25
25
 
26
26
  def remove_generated_gemfile_lockfiles
27
- file_path = File.expand_path("test/environments")
28
- Dir.glob(File.join(file_path, "**", "Gemfile.lock")).each do |fn|
27
+ file_path = File.expand_path('test/environments')
28
+ Dir.glob(File.join(file_path, '**', 'Gemfile.lock')).each do |fn|
29
29
  puts "Removing #{fn.gsub(file_path, '.../environments')}"
30
30
  FileUtils.rm(fn)
31
31
  end
@@ -3,13 +3,13 @@
3
3
  # frozen_string_literal: true
4
4
 
5
5
  namespace :newrelic do
6
- desc "Install a default config/newrelic.yml file"
6
+ desc 'Install a default config/newrelic.yml file'
7
7
  task :install do
8
- load File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "install.rb"))
8
+ load File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'install.rb'))
9
9
  end
10
10
 
11
- desc "Gratefulness is always appreciated"
11
+ desc 'Gratefulness is always appreciated'
12
12
  task :thanks do
13
- puts "The Ruby agent team is grateful to Jim Weirich for his kindness and his code. He will be missed."
13
+ puts 'The Ruby agent team is grateful to Jim Weirich for his kindness and his code. He will be missed.'
14
14
  end
15
15
  end
@@ -39,12 +39,14 @@ require_relative 'helpers/removers'
39
39
  include Removers
40
40
 
41
41
  namespace :test do
42
- desc "Run functional test suite for New Relic"
42
+ desc 'Run functional test suite for New Relic'
43
43
  task :multiverse, [:suite, :param1, :param2, :param3, :param4] => ['multiverse:env'] do |_, args|
44
44
  Multiverse::Runner.run(args.suite, Multiverse::Runner.parse_args(args))
45
45
  end
46
46
 
47
47
  namespace :multiverse do
48
+ # task :prerequisites
49
+
48
50
  task :env do
49
51
  # ENV['SUITES_DIRECTORY'] = File.expand_path('../../test/multiverse/suites', __FILE__)
50
52
  require File.expand_path('../../../test/multiverse/lib/multiverse', __FILE__)
@@ -56,22 +58,26 @@ namespace :test do
56
58
  remove_generated_gemfile_lockfiles
57
59
  end
58
60
 
59
- desc "Clean cached gemfiles from Bundler.bundle_path"
61
+ desc 'Clean cached gemfiles from Bundler.bundle_path'
60
62
  task :clean_gemfile_cache do
61
63
  glob = File.expand_path('multiverse-cache/Gemfile.*.lock', Bundler.bundle_path)
62
64
  File.delete(*Dir[glob])
63
65
  end
64
66
 
65
- desc "Test the multiverse testing framework by executing tests in test/multiverse/test. Get meta with it."
67
+ desc 'Test the multiverse testing framework by executing tests in test/multiverse/test. Get meta with it.'
66
68
  task :self, [:suite, :mode] do |_, args|
67
- args.with_defaults(:suite => "", :mode => "")
68
- puts ("Testing the multiverse testing framework...")
69
+ args.with_defaults(:suite => '', :mode => '')
70
+ puts ('Testing the multiverse testing framework...')
69
71
  test_files = FileList['test/multiverse/test/*_test.rb']
70
- ruby test_files.join(" ")
72
+ ruby test_files.join(' ')
71
73
  end
72
74
 
73
75
  task :prime, [:suite] => [:env] do |_, args|
74
76
  Multiverse::Runner.prime(args.suite, Multiverse::Runner.parse_args(args))
75
77
  end
78
+
79
+ task :gem_manifest => :env do
80
+ Multiverse::GemManifest.new.report
81
+ end
76
82
  end
77
83
  end
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_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.1.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-03-30 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler