newrelic_rpm 8.16.0 → 9.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (262) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +4 -106
  4. data/.rubocop_todo.yml +13 -14
  5. data/.simplecov +2 -1
  6. data/Brewfile +1 -0
  7. data/CHANGELOG.md +225 -0
  8. data/CONTRIBUTING.md +1 -1
  9. data/Gemfile +1 -1
  10. data/Guardfile +8 -7
  11. data/README.md +3 -2
  12. data/Rakefile +8 -8
  13. data/Thorfile +1 -1
  14. data/bin/newrelic +1 -0
  15. data/bin/newrelic_cmd +1 -0
  16. data/bin/nrdebug +36 -36
  17. data/init.rb +1 -1
  18. data/lib/new_relic/agent/agent.rb +3 -16
  19. data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
  20. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  21. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  22. data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
  23. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  24. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  25. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  26. data/lib/new_relic/agent/agent_logger.rb +9 -9
  27. data/lib/new_relic/agent/attribute_filter.rb +2 -4
  28. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  29. data/lib/new_relic/agent/audit_logger.rb +5 -5
  30. data/lib/new_relic/agent/autostart.rb +1 -1
  31. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  32. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  33. data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
  34. data/lib/new_relic/agent/configuration/default_source.rb +200 -588
  35. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  36. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
  37. data/lib/new_relic/agent/configuration/manager.rb +15 -2
  38. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
  39. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  40. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  41. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  42. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  43. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  44. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  45. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  46. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  47. data/lib/new_relic/agent/database.rb +4 -18
  48. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  49. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  50. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  51. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
  52. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  53. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  54. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  55. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  56. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  57. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  58. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  59. data/lib/new_relic/agent/error_collector.rb +36 -8
  60. data/lib/new_relic/agent/error_filter.rb +5 -5
  61. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  62. data/lib/new_relic/agent/event_loop.rb +3 -3
  63. data/lib/new_relic/agent/external.rb +1 -1
  64. data/lib/new_relic/agent/harvester.rb +1 -3
  65. data/lib/new_relic/agent/heap.rb +2 -1
  66. data/lib/new_relic/agent/hostname.rb +1 -1
  67. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  68. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  69. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  70. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  71. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  72. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  73. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  74. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  75. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  76. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  77. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  78. data/lib/new_relic/agent/instrumentation/active_job.rb +2 -2
  79. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  80. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  81. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  82. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  83. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  84. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  85. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
  86. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  87. data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
  88. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +6 -4
  89. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  90. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  91. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  92. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  93. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
  94. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  95. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  96. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
  97. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +4 -3
  98. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
  99. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  100. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  101. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +20 -0
  102. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
  103. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
  104. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  105. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  106. data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
  107. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
  108. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +3 -2
  109. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
  111. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +4 -4
  112. data/lib/new_relic/agent/instrumentation/grpc_client.rb +1 -1
  113. data/lib/new_relic/agent/instrumentation/grpc_server.rb +1 -1
  114. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  116. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  117. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
  118. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  119. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
  120. data/lib/new_relic/agent/instrumentation/memcache.rb +10 -10
  121. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  122. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  123. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -6
  124. data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
  125. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  126. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  127. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  128. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  130. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +8 -15
  132. data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
  133. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  134. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  135. data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
  136. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  137. data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
  138. data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
  139. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  140. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  142. data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -0
  143. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  144. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  145. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  146. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -7
  147. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  148. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  149. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  150. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  151. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  152. data/lib/new_relic/agent/logging.rb +73 -33
  153. data/lib/new_relic/agent/messaging.rb +7 -5
  154. data/lib/new_relic/agent/method_tracer.rb +7 -7
  155. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  156. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
  157. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  158. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  159. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  160. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
  161. data/lib/new_relic/agent/new_relic_service.rb +15 -16
  162. data/lib/new_relic/agent/obfuscator.rb +1 -1
  163. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  164. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  165. data/lib/new_relic/agent/pipe_service.rb +5 -3
  166. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  167. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
  168. data/lib/new_relic/agent/sampler.rb +2 -1
  169. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  170. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  171. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  172. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  173. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  174. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  175. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  176. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  177. data/lib/new_relic/agent/stats.rb +1 -1
  178. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  179. data/lib/new_relic/agent/system_info.rb +10 -10
  180. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  181. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  182. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  183. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  184. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  185. data/lib/new_relic/agent/tracer.rb +19 -9
  186. data/lib/new_relic/agent/transaction/abstract_segment.rb +54 -48
  187. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  188. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  189. data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
  190. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  191. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  192. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  193. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  194. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  195. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  196. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  197. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  198. data/lib/new_relic/agent/transaction/tracing.rb +10 -4
  199. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  200. data/lib/new_relic/agent/transaction.rb +60 -52
  201. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  202. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  203. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  204. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  205. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  206. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  207. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  208. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  209. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  210. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  211. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  212. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  213. data/lib/new_relic/agent/worker_loop.rb +1 -1
  214. data/lib/new_relic/agent.rb +79 -35
  215. data/lib/new_relic/cli/command.rb +3 -3
  216. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  217. data/lib/new_relic/cli/commands/install.rb +23 -23
  218. data/lib/new_relic/collection_helper.rb +2 -2
  219. data/lib/new_relic/constants.rb +7 -8
  220. data/lib/new_relic/control/class_methods.rb +3 -3
  221. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  222. data/lib/new_relic/control/instance_methods.rb +6 -6
  223. data/lib/new_relic/control/instrumentation.rb +1 -15
  224. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  225. data/lib/new_relic/dependency_detection.rb +14 -18
  226. data/lib/new_relic/environment_report.rb +4 -4
  227. data/lib/new_relic/helper.rb +2 -1
  228. data/lib/new_relic/language_support.rb +1 -1
  229. data/lib/new_relic/latest_changes.rb +5 -5
  230. data/lib/new_relic/local_environment.rb +0 -10
  231. data/lib/new_relic/noticed_error.rb +20 -18
  232. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  233. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  234. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  235. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  236. data/lib/new_relic/supportability_helper.rb +2 -1
  237. data/lib/new_relic/version.rb +3 -3
  238. data/lib/newrelic_rpm.rb +4 -4
  239. data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +5 -5
  240. data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
  241. data/lib/tasks/config.rake +12 -12
  242. data/lib/tasks/coverage_report.rake +4 -4
  243. data/lib/tasks/helpers/format.rb +10 -10
  244. data/lib/tasks/helpers/removers.rb +5 -5
  245. data/lib/tasks/install.rake +4 -4
  246. data/lib/tasks/instrumentation_generator/instrumentation.thor +15 -18
  247. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
  248. data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
  249. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
  250. data/lib/tasks/multiverse.rb +13 -6
  251. data/lib/tasks/newrelic.rb +1 -0
  252. data/lib/tasks/tests.rake +6 -6
  253. data/newrelic.yml +10 -13
  254. data/newrelic_rpm.gemspec +29 -26
  255. data/test/agent_helper.rb +25 -24
  256. metadata +84 -16
  257. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
  258. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
  259. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
  260. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
  261. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
  262. data/lib/new_relic/agent/range_extensions.rb +0 -27
@@ -1,10 +1,10 @@
1
- # frozen_string_literal: true
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
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
@@ -43,7 +43,7 @@ module Format
43
43
  def flatten_config_hash(config_hash)
44
44
  sections = []
45
45
  config = [GENERAL, 'transaction_tracer', 'error_collector',
46
- 'browser_monitoring', 'analytics_events', 'transaction_events',
46
+ 'browser_monitoring', 'transaction_events',
47
47
  'application_logging']
48
48
 
49
49
  config.each { |config| sections << pluck(config, config_hash) }
@@ -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
@@ -14,7 +14,7 @@ class Instrumentation < Thor
14
14
  NEWRELIC_YML_LOCATION = 'newrelic.yml'
15
15
 
16
16
  desc('scaffold NAME', 'Scaffold the required files for adding new instrumentation')
17
- long_desc <<-LONGDESC
17
+ long_desc <<~LONGDESC
18
18
  `instrumentation scaffold` requires one parameter by default: the name of the
19
19
  library or class you are instrumenting. This task generates the basic
20
20
  file structure needed to add new instrumentation to the Ruby agent.
@@ -96,28 +96,25 @@ class Instrumentation < Thor
96
96
  end
97
97
 
98
98
  def config_block(name)
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
- },
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
+ },
108
108
  CONFIG
109
109
  end
110
110
 
111
- # TODO: OLD RUBIES - RUBY_VERSION 2.2
112
- # When we only support 2.3+ this can be changed to a sqiggle heredoc (<<~)
113
- # and use standard indentation
114
111
  def yaml_block(name)
115
- <<HEREDOC # rubocop:disable Layout/IndentationWidth
112
+ <<~HEREDOC
116
113
 
117
- # Controls auto-instrumentation of #{name} at start up.
118
- # May be one of [auto|prepend|chain|disabled]
119
- # instrumentation.#{name.downcase}: auto
120
- HEREDOC
114
+ # Controls auto-instrumentation of #{name} at start up.
115
+ # May be one of [auto|prepend|chain|disabled]
116
+ # instrumentation.#{name.downcase}: auto
117
+ HEREDOC
121
118
  end
122
119
  end
123
120
 
@@ -4,6 +4,6 @@
4
4
 
5
5
  instrumentation_methods :chain, :prepend
6
6
 
7
- gemfile <<-RB
7
+ gemfile <<~RB
8
8
  gem '<%= @name.downcase %>'
9
9
  RB
@@ -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
@@ -162,10 +162,6 @@ common: &default_settings
162
162
  # or port_path_or_id parameters to transaction or slow SQL traces.
163
163
  # datastore_tracer.instance_reporting.enabled: true
164
164
 
165
- # If true, when the agent is in an application using Ruby on Rails, it will start after
166
- # config/initializers have run.
167
- # defer_rails_initialization: false
168
-
169
165
  # If true, disables Action Cable instrumentation.
170
166
  # disable_action_cable_instrumentation: false
171
167
 
@@ -196,9 +192,6 @@ common: &default_settings
196
192
  # If true, disables ActiveSupport custom events instrumentation.
197
193
  # disable_custom_events_instrumentation: false
198
194
 
199
- # If true, disables DataMapper instrumentation.
200
- # disable_data_mapper: false
201
-
202
195
  # If true, the agent won't measure the depth of Delayed Job queues.
203
196
  # disable_delayed_job_sampler: false
204
197
 
@@ -337,6 +330,10 @@ common: &default_settings
337
330
  # May be one of [auto|prepend|chain|disabled].
338
331
  # instrumentation.bunny: auto
339
332
 
333
+ # Controls auto-instrumentation of Fiber at start up.
334
+ # May be one of [auto|prepend|chain|disabled]
335
+ # instrumentation.fiber: auto
336
+
340
337
  # Controls auto-instrumentation of concurrent_ruby at start up.
341
338
  # May be one of [auto|prepend|chain|disabled]
342
339
  # instrumentation.concurrent_ruby: auto
@@ -355,7 +352,7 @@ common: &default_settings
355
352
 
356
353
  # Controls auto-instrumentation of Excon at start up.
357
354
  # May be one of [enabled|disabled].
358
- # instrumentation.excon: auto
355
+ # instrumentation.excon: enabled
359
356
 
360
357
  # Controls auto-instrumentation of Grape at start up.
361
358
  # May be one of [auto|prepend|chain|disabled].
@@ -391,7 +388,7 @@ common: &default_settings
391
388
 
392
389
  # Controls auto-instrumentation of Mongo at start up.
393
390
  # May be one of [enabled|disabled].
394
- # instrumentation.mongo: auto
391
+ # instrumentation.mongo: enabled
395
392
 
396
393
  # Controls auto-instrumentation of Net::HTTP at start up.
397
394
  # May be one of [auto|prepend|chain|disabled].
@@ -444,7 +441,7 @@ common: &default_settings
444
441
  # instrumentation.thread: auto
445
442
 
446
443
  # Controls auto-instrumentation of the Thread class at start up to automatically add tracing to all Threads created in the application.
447
- # instrumentation.thread.tracing: false
444
+ # instrumentation.thread.tracing: true
448
445
 
449
446
  # Controls auto-instrumentation of gRPC clients at start up.
450
447
  # May be one of [auto|prepend|chain|disabled].
@@ -548,7 +545,7 @@ common: &default_settings
548
545
  # slow_sql.enabled: false
549
546
 
550
547
  # If true, the agent collects explain plans in slow SQL queries. If this setting
551
- # 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
552
549
  # the default setting for explain plans in slow SQL as well.
553
550
  # slow_sql.explain_enabled: false
554
551
 
@@ -642,13 +639,13 @@ common: &default_settings
642
639
  # transaction_tracer.enabled: true
643
640
 
644
641
  # Threshold (in seconds) above which the agent will collect explain plans.
645
- # Relevant only when explain.enabled is true.
642
+ # Relevant only when explain_enabled is true.
646
643
  # transaction_tracer.explain_threshold: 0.5
647
644
 
648
645
  # If true, enables the collection of explain plans in transaction traces.
649
646
  # This setting will also apply to explain plans in slow SQL traces if
650
647
  # slow_sql.explain enabled is not set separately.
651
- # transaction_tracer.explain.enabled: true
648
+ # transaction_tracer.explain_enabled: true
652
649
 
653
650
  # Maximum number of transaction trace nodes to record in a single transaction
654
651
  # trace.
data/newrelic_rpm.gemspec CHANGED
@@ -6,28 +6,28 @@ 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
- s.required_ruby_version = '>= 2.2.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"]
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']
14
14
  s.licenses = ['Apache-2.0']
15
- s.description = <<-EOS
16
- New Relic is a performance management system, developed by New Relic,
17
- Inc (http://www.newrelic.com). New Relic provides you with deep
18
- information about the performance of your web application as it runs
19
- in production. The New Relic Ruby agent is dual-purposed as a either a
20
- Gem or plugin, hosted on
21
- https://github.com/newrelic/newrelic-ruby-agent/
15
+ s.description = <<~EOS
16
+ New Relic is a performance management system, developed by New Relic,
17
+ Inc (http://www.newrelic.com). New Relic provides you with deep
18
+ information about the performance of your web application as it runs
19
+ in production. The New Relic Ruby agent is dual-purposed as a either a
20
+ Gem or plugin, hosted on
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 @@ https://github.com/newrelic/newrelic-ruby-agent/
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 @@ https://github.com/newrelic/newrelic-ruby-agent/
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
@@ -54,12 +54,15 @@ https://github.com/newrelic/newrelic-ruby-agent/
54
54
  s.add_development_dependency 'mocha', '~> 1.16'
55
55
  s.add_development_dependency 'pry' unless ENV['CI']
56
56
  s.add_development_dependency 'rake', '12.3.3'
57
- s.add_development_dependency 'rubocop' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
58
- s.add_development_dependency 'rubocop-minitest' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
59
- s.add_development_dependency 'rubocop-performance' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
60
- s.add_development_dependency 'rubocop-rake' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
57
+
58
+ s.add_development_dependency 'rubocop', '1.44.1' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
59
+ s.add_development_dependency 'rubocop-ast', '1.24.1' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
60
+ s.add_development_dependency 'rubocop-minitest', '0.27.0' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
61
+ s.add_development_dependency 'rubocop-performance', '1.16.0' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
62
+ s.add_development_dependency 'rubocop-rake', '0.6.0' unless ENV['CI'] && RUBY_VERSION < '3.0.0'
63
+
61
64
  s.add_development_dependency 'simplecov' if RUBY_VERSION >= '2.7.0'
62
65
  s.add_development_dependency 'thor' unless ENV['CI']
63
66
  s.add_development_dependency 'warning' if RUBY_VERSION >= '2.4.0'
64
- s.add_development_dependency 'yard', "#{RUBY_VERSION < '2.3.0' ? '0.9.26' : '> 0.9.26'}"
67
+ s.add_development_dependency 'yard'
65
68
  end
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