newrelic_rpm 8.16.0 → 9.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (243) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +3 -41
  4. data/.rubocop_todo.yml +13 -14
  5. data/.simplecov +1 -1
  6. data/CHANGELOG.md +184 -0
  7. data/CONTRIBUTING.md +1 -1
  8. data/Gemfile +1 -1
  9. data/Guardfile +7 -7
  10. data/README.md +3 -2
  11. data/Rakefile +8 -8
  12. data/Thorfile +1 -1
  13. data/bin/nrdebug +36 -36
  14. data/init.rb +1 -1
  15. data/lib/new_relic/agent/agent.rb +3 -16
  16. data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
  17. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  18. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  19. data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
  20. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  21. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  22. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  23. data/lib/new_relic/agent/agent_logger.rb +9 -9
  24. data/lib/new_relic/agent/attribute_filter.rb +2 -4
  25. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  26. data/lib/new_relic/agent/audit_logger.rb +5 -5
  27. data/lib/new_relic/agent/autostart.rb +1 -1
  28. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  29. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  30. data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
  31. data/lib/new_relic/agent/configuration/default_source.rb +155 -530
  32. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  33. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
  34. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  35. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
  36. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  37. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  38. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  39. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  40. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  41. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  42. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  43. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  44. data/lib/new_relic/agent/database.rb +4 -18
  45. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  46. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  47. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  48. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
  49. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  50. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  52. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  53. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  54. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  55. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  56. data/lib/new_relic/agent/error_collector.rb +36 -8
  57. data/lib/new_relic/agent/error_filter.rb +5 -5
  58. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  59. data/lib/new_relic/agent/event_loop.rb +3 -3
  60. data/lib/new_relic/agent/external.rb +1 -1
  61. data/lib/new_relic/agent/harvester.rb +1 -3
  62. data/lib/new_relic/agent/heap.rb +2 -1
  63. data/lib/new_relic/agent/hostname.rb +1 -1
  64. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  65. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  66. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  67. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  68. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  69. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  70. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  71. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  72. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  73. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  74. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  75. data/lib/new_relic/agent/instrumentation/active_job.rb +2 -2
  76. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  77. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  78. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  79. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  80. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  81. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  82. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +6 -4
  83. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  84. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  85. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  86. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  87. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  88. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  89. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +1 -1
  90. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +3 -3
  91. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +1 -1
  92. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  93. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  94. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +20 -0
  95. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +24 -0
  96. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +18 -0
  97. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  98. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  99. data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
  100. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +2 -1
  101. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +3 -3
  102. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  103. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  104. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  105. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  106. data/lib/new_relic/agent/instrumentation/memcache.rb +8 -8
  107. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  108. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  109. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +5 -5
  110. data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
  111. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  113. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  114. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  115. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  116. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  117. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +8 -15
  118. data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
  119. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  121. data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
  122. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  123. data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
  124. data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
  125. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  126. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  127. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  128. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  130. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -7
  132. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  133. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  134. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  135. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  136. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  137. data/lib/new_relic/agent/logging.rb +73 -33
  138. data/lib/new_relic/agent/messaging.rb +7 -5
  139. data/lib/new_relic/agent/method_tracer.rb +6 -6
  140. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  141. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
  142. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  143. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  144. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  145. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
  146. data/lib/new_relic/agent/new_relic_service.rb +15 -15
  147. data/lib/new_relic/agent/obfuscator.rb +1 -1
  148. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  149. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  150. data/lib/new_relic/agent/pipe_service.rb +5 -3
  151. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  152. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
  153. data/lib/new_relic/agent/sampler.rb +1 -1
  154. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  155. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  156. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  157. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  158. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  159. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  160. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  161. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  162. data/lib/new_relic/agent/stats.rb +1 -1
  163. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  164. data/lib/new_relic/agent/system_info.rb +10 -10
  165. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  166. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  167. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  168. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  169. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  170. data/lib/new_relic/agent/tracer.rb +18 -8
  171. data/lib/new_relic/agent/transaction/abstract_segment.rb +9 -9
  172. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  173. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  174. data/lib/new_relic/agent/transaction/distributed_tracing.rb +6 -6
  175. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  176. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  177. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  178. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  179. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  180. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  181. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  182. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  183. data/lib/new_relic/agent/transaction/tracing.rb +4 -4
  184. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  185. data/lib/new_relic/agent/transaction.rb +56 -52
  186. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  187. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  188. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  189. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  190. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  191. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  192. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  193. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  194. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  195. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  196. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  197. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  198. data/lib/new_relic/agent/worker_loop.rb +1 -1
  199. data/lib/new_relic/agent.rb +79 -35
  200. data/lib/new_relic/cli/command.rb +3 -3
  201. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  202. data/lib/new_relic/cli/commands/install.rb +23 -23
  203. data/lib/new_relic/collection_helper.rb +2 -2
  204. data/lib/new_relic/constants.rb +7 -8
  205. data/lib/new_relic/control/class_methods.rb +3 -3
  206. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  207. data/lib/new_relic/control/instance_methods.rb +6 -6
  208. data/lib/new_relic/control/instrumentation.rb +1 -1
  209. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  210. data/lib/new_relic/dependency_detection.rb +4 -17
  211. data/lib/new_relic/environment_report.rb +4 -4
  212. data/lib/new_relic/helper.rb +2 -1
  213. data/lib/new_relic/language_support.rb +1 -1
  214. data/lib/new_relic/latest_changes.rb +5 -5
  215. data/lib/new_relic/local_environment.rb +0 -10
  216. data/lib/new_relic/noticed_error.rb +20 -18
  217. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  218. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  219. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  220. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  221. data/lib/new_relic/supportability_helper.rb +2 -1
  222. data/lib/new_relic/version.rb +2 -2
  223. data/lib/newrelic_rpm.rb +4 -4
  224. data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +5 -5
  225. data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
  226. data/lib/tasks/config.rake +12 -12
  227. data/lib/tasks/coverage_report.rake +3 -3
  228. data/lib/tasks/helpers/format.rb +10 -10
  229. data/lib/tasks/helpers/removers.rb +5 -5
  230. data/lib/tasks/install.rake +4 -4
  231. data/lib/tasks/instrumentation_generator/instrumentation.thor +7 -10
  232. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
  233. data/lib/tasks/multiverse.rb +12 -6
  234. data/lib/tasks/tests.rake +6 -6
  235. data/newrelic.yml +5 -8
  236. data/newrelic_rpm.gemspec +29 -26
  237. data/test/agent_helper.rb +25 -24
  238. metadata +13 -14
  239. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
  240. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
  241. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
  242. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
  243. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
@@ -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,7 +96,7 @@ class Instrumentation < Thor
96
96
  end
97
97
 
98
98
  def config_block(name)
99
- <<-CONFIG
99
+ <<~CONFIG
100
100
  :'instrumentation.#{name.downcase}' => {
101
101
  :default => 'auto',
102
102
  :public => true,
@@ -108,16 +108,13 @@ class Instrumentation < Thor
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
@@ -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.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
@@ -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].
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
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: 8.16.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-06 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
@@ -115,16 +115,16 @@ dependencies:
115
115
  name: yard
116
116
  requirement: !ruby/object:Gem::Requirement
117
117
  requirements:
118
- - - ">"
118
+ - - ">="
119
119
  - !ruby/object:Gem::Version
120
- version: 0.9.26
120
+ version: '0'
121
121
  type: :development
122
122
  prerelease: false
123
123
  version_requirements: !ruby/object:Gem::Requirement
124
124
  requirements:
125
- - - ">"
125
+ - - ">="
126
126
  - !ruby/object:Gem::Version
127
- version: 0.9.26
127
+ version: '0'
128
128
  description: |
129
129
  New Relic is a performance management system, developed by New Relic,
130
130
  Inc (http://www.newrelic.com). New Relic provides you with deep
@@ -280,8 +280,6 @@ files:
280
280
  - lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb
281
281
  - lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb
282
282
  - lib/new_relic/agent/instrumentation/active_support_subscriber.rb
283
- - lib/new_relic/agent/instrumentation/acts_as_solr.rb
284
- - lib/new_relic/agent/instrumentation/authlogic.rb
285
283
  - lib/new_relic/agent/instrumentation/bunny.rb
286
284
  - lib/new_relic/agent/instrumentation/bunny/chain.rb
287
285
  - lib/new_relic/agent/instrumentation/bunny/instrumentation.rb
@@ -297,7 +295,6 @@ files:
297
295
  - lib/new_relic/agent/instrumentation/curb/prepend.rb
298
296
  - lib/new_relic/agent/instrumentation/custom_events.rb
299
297
  - lib/new_relic/agent/instrumentation/custom_events_subscriber.rb
300
- - lib/new_relic/agent/instrumentation/data_mapper.rb
301
298
  - lib/new_relic/agent/instrumentation/delayed_job/chain.rb
302
299
  - lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb
303
300
  - lib/new_relic/agent/instrumentation/delayed_job/prepend.rb
@@ -308,6 +305,10 @@ files:
308
305
  - lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb
309
306
  - lib/new_relic/agent/instrumentation/excon.rb
310
307
  - lib/new_relic/agent/instrumentation/excon/middleware.rb
308
+ - lib/new_relic/agent/instrumentation/fiber.rb
309
+ - lib/new_relic/agent/instrumentation/fiber/chain.rb
310
+ - lib/new_relic/agent/instrumentation/fiber/instrumentation.rb
311
+ - lib/new_relic/agent/instrumentation/fiber/prepend.rb
311
312
  - lib/new_relic/agent/instrumentation/grape.rb
312
313
  - lib/new_relic/agent/instrumentation/grape/chain.rb
313
314
  - lib/new_relic/agent/instrumentation/grape/instrumentation.rb
@@ -368,7 +369,6 @@ files:
368
369
  - lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb
369
370
  - lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb
370
371
  - lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb
371
- - lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb
372
372
  - lib/new_relic/agent/instrumentation/rake.rb
373
373
  - lib/new_relic/agent/instrumentation/rake/chain.rb
374
374
  - lib/new_relic/agent/instrumentation/rake/instrumentation.rb
@@ -396,7 +396,6 @@ files:
396
396
  - lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb
397
397
  - lib/new_relic/agent/instrumentation/sinatra/prepend.rb
398
398
  - lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb
399
- - lib/new_relic/agent/instrumentation/sunspot.rb
400
399
  - lib/new_relic/agent/instrumentation/thread.rb
401
400
  - lib/new_relic/agent/instrumentation/thread/chain.rb
402
401
  - lib/new_relic/agent/instrumentation/thread/instrumentation.rb
@@ -544,8 +543,8 @@ files:
544
543
  - lib/new_relic/traced_thread.rb
545
544
  - lib/new_relic/version.rb
546
545
  - lib/newrelic_rpm.rb
547
- - lib/sequel/extensions/newrelic_instrumentation.rb
548
- - lib/sequel/plugins/newrelic_instrumentation.rb
546
+ - lib/sequel/extensions/new_relic_instrumentation.rb
547
+ - lib/sequel/plugins/new_relic_instrumentation.rb
549
548
  - lib/tasks/all.rb
550
549
  - lib/tasks/config.rake
551
550
  - lib/tasks/coverage_report.rake
@@ -594,7 +593,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
594
593
  requirements:
595
594
  - - ">="
596
595
  - !ruby/object:Gem::Version
597
- version: 2.2.0
596
+ version: 2.4.0
598
597
  required_rubygems_version: !ruby/object:Gem::Requirement
599
598
  requirements:
600
599
  - - ">"