newrelic_rpm 9.0.0 → 9.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (247) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/.rubocop.yml +7 -81
  4. data/.rubocop_todo.yml +4 -43
  5. data/.simplecov +2 -1
  6. data/Brewfile +1 -0
  7. data/CHANGELOG.md +74 -2
  8. data/Gemfile +1 -1
  9. data/Guardfile +8 -7
  10. data/README.md +1 -2
  11. data/Rakefile +8 -8
  12. data/Thorfile +1 -1
  13. data/bin/newrelic +1 -0
  14. data/bin/newrelic_cmd +1 -0
  15. data/bin/nrdebug +20 -20
  16. data/init.rb +1 -1
  17. data/lib/new_relic/agent/agent.rb +3 -16
  18. data/lib/new_relic/agent/agent_helpers/connect.rb +4 -9
  19. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  20. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  21. data/lib/new_relic/agent/agent_helpers/special_startup.rb +2 -2
  22. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  23. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  24. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  25. data/lib/new_relic/agent/agent_logger.rb +9 -9
  26. data/lib/new_relic/agent/attribute_filter.rb +2 -2
  27. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  28. data/lib/new_relic/agent/audit_logger.rb +5 -5
  29. data/lib/new_relic/agent/autostart.rb +1 -1
  30. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  31. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  32. data/lib/new_relic/agent/commands/thread_profiler_session.rb +5 -5
  33. data/lib/new_relic/agent/configuration/default_source.rb +57 -80
  34. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  35. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -3
  36. data/lib/new_relic/agent/configuration/manager.rb +2 -2
  37. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -10
  38. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  39. data/lib/new_relic/agent/configuration/yaml_source.rb +4 -4
  40. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  41. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  42. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  43. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  44. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  45. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  46. data/lib/new_relic/agent/database.rb +4 -4
  47. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  48. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  49. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  50. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +7 -8
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  52. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  53. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  54. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  55. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  56. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  57. data/lib/new_relic/agent/distributed_tracing.rb +5 -5
  58. data/lib/new_relic/agent/error_collector.rb +35 -7
  59. data/lib/new_relic/agent/error_filter.rb +2 -2
  60. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  61. data/lib/new_relic/agent/event_loop.rb +3 -3
  62. data/lib/new_relic/agent/external.rb +1 -1
  63. data/lib/new_relic/agent/harvester.rb +1 -3
  64. data/lib/new_relic/agent/heap.rb +2 -1
  65. data/lib/new_relic/agent/hostname.rb +1 -1
  66. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  67. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  68. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  69. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  70. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  71. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +5 -1
  72. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +8 -5
  73. data/lib/new_relic/agent/http_clients/uri_util.rb +2 -2
  74. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +5 -2
  75. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  76. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +3 -3
  77. data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
  78. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  79. data/lib/new_relic/agent/instrumentation/active_record.rb +3 -2
  80. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -35
  81. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +3 -3
  82. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  83. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  84. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
  85. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +3 -3
  86. data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
  87. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +5 -3
  88. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  89. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +5 -5
  90. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  91. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  92. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
  93. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +1 -1
  94. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  95. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
  96. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +4 -3
  97. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
  98. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +2 -1
  99. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  100. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +1 -1
  101. data/lib/new_relic/agent/instrumentation/fiber.rb +1 -1
  102. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +4 -4
  103. data/lib/new_relic/agent/instrumentation/grape.rb +3 -3
  104. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
  105. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +3 -2
  106. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
  107. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
  108. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +4 -4
  109. data/lib/new_relic/agent/instrumentation/grpc_client.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/grpc_server.rb +1 -1
  111. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  113. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  114. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
  115. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +2 -2
  116. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
  117. data/lib/new_relic/agent/instrumentation/memcache.rb +8 -8
  118. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  119. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  120. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -6
  121. data/lib/new_relic/agent/instrumentation/net_http.rb +1 -1
  122. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +1 -1
  123. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +3 -3
  124. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  125. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +1 -1
  126. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +3 -2
  127. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  128. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +7 -7
  129. data/lib/new_relic/agent/instrumentation/rake.rb +2 -2
  130. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +2 -1
  132. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  133. data/lib/new_relic/agent/instrumentation/sequel.rb +4 -4
  134. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  135. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  136. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +1 -1
  137. data/lib/new_relic/agent/instrumentation/sidekiq.rb +1 -0
  138. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  139. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +6 -5
  140. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +2 -1
  142. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +5 -5
  143. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  144. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  145. data/lib/new_relic/agent/log_event_aggregator.rb +15 -15
  146. data/lib/new_relic/agent/logging.rb +73 -33
  147. data/lib/new_relic/agent/messaging.rb +7 -5
  148. data/lib/new_relic/agent/method_tracer.rb +7 -7
  149. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  150. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -4
  151. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  152. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  153. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  154. data/lib/new_relic/agent/new_relic_service.rb +14 -15
  155. data/lib/new_relic/agent/obfuscator.rb +1 -1
  156. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  157. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  158. data/lib/new_relic/agent/pipe_service.rb +5 -3
  159. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  160. data/lib/new_relic/agent/sampler.rb +2 -1
  161. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  162. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  163. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  164. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  165. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  166. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  167. data/lib/new_relic/agent/span_event_primitive.rb +2 -2
  168. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  169. data/lib/new_relic/agent/stats.rb +1 -1
  170. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  171. data/lib/new_relic/agent/system_info.rb +10 -10
  172. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  173. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  174. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  175. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  176. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  177. data/lib/new_relic/agent/tracer.rb +8 -7
  178. data/lib/new_relic/agent/transaction/abstract_segment.rb +52 -46
  179. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  180. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  181. data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
  182. data/lib/new_relic/agent/transaction/external_request_segment.rb +11 -11
  183. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  184. data/lib/new_relic/agent/transaction/request_attributes.rb +2 -2
  185. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  186. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  187. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  188. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  189. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  190. data/lib/new_relic/agent/transaction/tracing.rb +2 -2
  191. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  192. data/lib/new_relic/agent/transaction.rb +39 -36
  193. data/lib/new_relic/agent/transaction_error_primitive.rb +5 -5
  194. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  195. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  196. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  197. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  198. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  199. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  200. data/lib/new_relic/agent/utilization/gcp.rb +3 -3
  201. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  202. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  203. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  204. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  205. data/lib/new_relic/agent/worker_loop.rb +1 -1
  206. data/lib/new_relic/agent.rb +78 -16
  207. data/lib/new_relic/cli/command.rb +3 -3
  208. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  209. data/lib/new_relic/cli/commands/install.rb +14 -14
  210. data/lib/new_relic/collection_helper.rb +2 -2
  211. data/lib/new_relic/constants.rb +7 -8
  212. data/lib/new_relic/control/class_methods.rb +3 -3
  213. data/lib/new_relic/control/frameworks/rails.rb +30 -18
  214. data/lib/new_relic/control/instance_methods.rb +5 -5
  215. data/lib/new_relic/control/instrumentation.rb +1 -1
  216. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  217. data/lib/new_relic/dependency_detection.rb +4 -17
  218. data/lib/new_relic/environment_report.rb +4 -4
  219. data/lib/new_relic/helper.rb +2 -1
  220. data/lib/new_relic/language_support.rb +1 -1
  221. data/lib/new_relic/latest_changes.rb +5 -5
  222. data/lib/new_relic/noticed_error.rb +20 -18
  223. data/lib/new_relic/rack/browser_monitoring.rb +20 -16
  224. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  225. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  226. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  227. data/lib/new_relic/supportability_helper.rb +2 -0
  228. data/lib/new_relic/version.rb +1 -1
  229. data/lib/newrelic_rpm.rb +3 -3
  230. data/lib/sequel/extensions/new_relic_instrumentation.rb +3 -3
  231. data/lib/sequel/plugins/new_relic_instrumentation.rb +1 -1
  232. data/lib/tasks/config.rake +12 -12
  233. data/lib/tasks/coverage_report.rake +4 -4
  234. data/lib/tasks/helpers/format.rb +9 -9
  235. data/lib/tasks/helpers/removers.rb +5 -5
  236. data/lib/tasks/install.rake +4 -4
  237. data/lib/tasks/instrumentation_generator/instrumentation.thor +8 -8
  238. data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
  239. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
  240. data/lib/tasks/multiverse.rb +13 -6
  241. data/lib/tasks/newrelic.rb +1 -0
  242. data/lib/tasks/tests.rake +6 -6
  243. data/newrelic.yml +3 -3
  244. data/newrelic_rpm.gemspec +13 -13
  245. data/test/agent_helper.rb +25 -24
  246. metadata +73 -4
  247. data/lib/new_relic/agent/range_extensions.rb +0 -27
@@ -97,7 +97,7 @@ module NewRelic
97
97
  obfuscator.obfuscate(::JSON.dump(rmd))
98
98
  end
99
99
  rescue => e
100
- NewRelic::Agent.logger.error("error during get_response_metadata", e)
100
+ NewRelic::Agent.logger.error('error during get_response_metadata', e)
101
101
  end
102
102
 
103
103
  private
@@ -14,9 +14,7 @@ module NewRelic
14
14
  @starting_pid = nil
15
15
  @after_forker = after_forker
16
16
 
17
- if events
18
- events.subscribe(:start_transaction, &method(:on_transaction))
19
- end
17
+ events&.subscribe(:start_transaction, &method(:on_transaction))
20
18
  end
21
19
 
22
20
  def on_transaction(*_)
@@ -26,7 +26,8 @@ module NewRelic
26
26
  def initialize(items = nil, &priority_fn)
27
27
  @items = []
28
28
  @priority_fn = priority_fn || ->(x) { x }
29
- items.each { |item| push(item) } if items
29
+ # the following line needs else branch coverage
30
+ items.each { |item| push(item) } if items # rubocop:disable Style/SafeNavigation
30
31
  end
31
32
 
32
33
  def [](index)
@@ -39,7 +39,7 @@ module NewRelic
39
39
 
40
40
  def self.heroku_dyno_name_prefix(dyno_name)
41
41
  get_dyno_prefixes.find do |dyno_prefix|
42
- dyno_name.start_with?(dyno_prefix + ".")
42
+ dyno_name.start_with?(dyno_prefix + '.')
43
43
  end
44
44
  end
45
45
 
@@ -5,8 +5,8 @@
5
5
  module NewRelic
6
6
  module Agent
7
7
  module HTTPClients
8
- MUST_IMPLEMENT_ERROR = "Subclasses of %s must implement a :%s method"
9
- WHINY_NIL_ERROR = "%s cannot initialize with a nil wrapped_response object."
8
+ MUST_IMPLEMENT_ERROR = 'Subclasses of %s must implement a :%s method'
9
+ WHINY_NIL_ERROR = '%s cannot initialize with a nil wrapped_response object.'
10
10
 
11
11
  # This class provides a public interface for wrapping HTTP requests. This
12
12
  # may be used to create wrappers that are compatible with New Relic's
@@ -14,28 +14,16 @@ module NewRelic
14
14
  #
15
15
  # @api public
16
16
  class AbstractRequest
17
- def []
18
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
19
- end
20
-
21
- def []=
22
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
23
- end
24
-
25
- def type
26
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
27
- end
28
-
29
- def host_from_header
30
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
17
+ %i[[] []= type host_from_header host method headers uri].each do |name|
18
+ define_method(name) do
19
+ not_implemented(name)
20
+ end
31
21
  end
32
22
 
33
- def host
34
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
35
- end
23
+ private
36
24
 
37
- def method
38
- raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, __method__]
25
+ def not_implemented(method_name)
26
+ raise NotImplementedError, MUST_IMPLEMENT_ERROR % [self.class, method_name]
39
27
  end
40
28
  end
41
29
 
@@ -33,16 +33,20 @@ module NewRelic
33
33
  end
34
34
 
35
35
  def [](key)
36
- @curlobj.headers[key]
36
+ headers[key]
37
37
  end
38
38
 
39
39
  def []=(key, value)
40
- @curlobj.headers[key] = value
40
+ headers[key] = value
41
41
  end
42
42
 
43
43
  def uri
44
44
  @uri ||= URIUtil.parse_and_normalize_url(@curlobj.url)
45
45
  end
46
+
47
+ def headers
48
+ @curlobj.headers
49
+ end
46
50
  end
47
51
 
48
52
  class CurbResponse < AbstractResponse
@@ -62,7 +66,7 @@ module NewRelic
62
66
  def append_header_data(data)
63
67
  key, value = data.split(/:\s*/, 2)
64
68
  @headers[key.downcase] = value
65
- @wrapped_response._nr_header_str ||= String.new
69
+ @wrapped_response._nr_header_str ||= +''
66
70
  @wrapped_response._nr_header_str << data
67
71
  end
68
72
 
@@ -46,7 +46,7 @@ module NewRelic
46
46
  class ExconHTTPRequest < AbstractRequest
47
47
  attr_reader :method
48
48
 
49
- EXCON = "Excon"
49
+ EXCON = 'Excon'
50
50
  LHOST = 'host'
51
51
  UHOST = 'Host'
52
52
  COLON = ':'
@@ -65,7 +65,6 @@ module NewRelic
65
65
  end
66
66
 
67
67
  def host_from_header
68
- headers = @datum[:headers]
69
68
  if hostname = (headers[LHOST] || headers[UHOST])
70
69
  hostname.split(COLON).first
71
70
  end
@@ -76,18 +75,21 @@ module NewRelic
76
75
  end
77
76
 
78
77
  def [](key)
79
- @datum[:headers][key]
78
+ headers[key]
80
79
  end
81
80
 
82
81
  def []=(key, value)
83
- @datum[:headers] ||= {}
84
- @datum[:headers][key] = value
82
+ headers[key] = value
85
83
  end
86
84
 
87
85
  def uri
88
86
  url = "#{@scheme}://#{host}:#{@port}#{@path}"
89
87
  URIUtil.parse_and_normalize_url(url)
90
88
  end
89
+
90
+ def headers
91
+ @datum[:headers]
92
+ end
91
93
  end
92
94
  end
93
95
  end
@@ -56,6 +56,10 @@ module NewRelic
56
56
  def []=(key, value)
57
57
  @wrapped_request.headers[key] = value
58
58
  end
59
+
60
+ def headers
61
+ @wrapped_request.headers.to_hash
62
+ end
59
63
  end
60
64
  end
61
65
  end
@@ -25,7 +25,7 @@ module NewRelic
25
25
  class HTTPClientRequest < AbstractRequest
26
26
  attr_reader :request
27
27
 
28
- HTTP_CLIENT = "HTTPClient".freeze
28
+ HTTP_CLIENT = 'HTTPClient'.freeze
29
29
  LHOST = 'host'.freeze
30
30
  UHOST = 'Host'.freeze
31
31
  COLON = ':'.freeze
@@ -57,12 +57,16 @@ module NewRelic
57
57
  end
58
58
 
59
59
  def [](key)
60
- request.headers[key]
60
+ headers[key]
61
61
  end
62
62
 
63
63
  def []=(key, value)
64
64
  request.http_header[key] = value
65
65
  end
66
+
67
+ def headers
68
+ request.headers
69
+ end
66
70
  end
67
71
  end
68
72
  end
@@ -61,7 +61,7 @@ module NewRelic
61
61
  ::NewRelic::Agent::HTTPClients::URIUtil.parse_and_normalize_url(@request.path)
62
62
  else
63
63
  connection_address = @connection.address
64
- if connection_address =~ Resolv::IPv6::Regex
64
+ if Resolv::IPv6::Regex.match?(connection_address)
65
65
  connection_address = "[#{connection_address}]"
66
66
  end
67
67
 
@@ -71,6 +71,10 @@ module NewRelic
71
71
  )
72
72
  end
73
73
  end
74
+
75
+ def headers
76
+ @request.instance_variable_get(:@header)
77
+ end
74
78
  end
75
79
  end
76
80
  end
@@ -42,7 +42,7 @@ module NewRelic
42
42
  end
43
43
  end
44
44
 
45
- TYPHOEUS = "Typhoeus".freeze
45
+ TYPHOEUS = 'Typhoeus'.freeze
46
46
 
47
47
  def type
48
48
  TYPHOEUS
@@ -66,14 +66,17 @@ module NewRelic
66
66
  end
67
67
 
68
68
  def [](key)
69
- return nil unless @request.options && @request.options[:headers]
69
+ return nil unless @request.options && headers
70
70
 
71
- @request.options[:headers][key]
71
+ headers[key]
72
72
  end
73
73
 
74
74
  def []=(key, value)
75
- @request.options[:headers] ||= {}
76
- @request.options[:headers][key] = value
75
+ headers[key] = value
76
+ end
77
+
78
+ def headers
79
+ @request.options[:headers] || {}
77
80
  end
78
81
 
79
82
  def uri
@@ -36,11 +36,11 @@ module NewRelic
36
36
  uri = ::URI.parse(url)
37
37
  end
38
38
  end
39
- uri.host.downcase! unless uri.host.nil?
39
+ uri.host&.downcase!
40
40
  uri
41
41
  end
42
42
 
43
- QUESTION_MARK = "?"
43
+ QUESTION_MARK = '?'
44
44
 
45
45
  def self.strip_query_string(fragment)
46
46
  if fragment.include?(QUESTION_MARK)
@@ -27,11 +27,14 @@ module NewRelic
27
27
  end
28
28
 
29
29
  def controller_name_for_metric(payload)
30
+ return unless payload
30
31
  # redirect_to
31
- return payload[:request].controller_class.controller_path if payload[:request] && payload[:request].controller_class
32
+ return payload[:request].controller_class.controller_path if payload[:request].respond_to?(:controller_class) && payload[:request].controller_class&.respond_to?(:controller_path)
32
33
 
33
34
  # unpermitted_parameters
34
- ::NewRelic::LanguageSupport.constantize(payload[:context][:controller]).controller_path if payload[:context] && payload[:context][:controller]
35
+ if payload[:context]&.[](:controller) && constantized_class = ::NewRelic::LanguageSupport.constantize(payload[:context][:controller])
36
+ constantized_class.respond_to?(:controller_path) ? constantized_class.controller_path : nil
37
+ end
35
38
  end
36
39
  end
37
40
  end
@@ -19,7 +19,7 @@ module NewRelic
19
19
  else
20
20
  # if this transaction is ignored, make sure child
21
21
  # transaction are also ignored
22
- state.current_transaction.ignore! if state.current_transaction
22
+ state.current_transaction&.ignore!
23
23
  NewRelic::Agent.instance.push_trace_execution_flag(false)
24
24
  end
25
25
  rescue => e
@@ -90,7 +90,8 @@ module NewRelic
90
90
  end
91
91
 
92
92
  def queue_start(request)
93
- if request && request.respond_to?(:env)
93
+ # the following line needs else branch coverage
94
+ if request && request.respond_to?(:env) # rubocop:disable Style/SafeNavigation
94
95
  QueueTime.parse_frontend_timestamp(request.env, Process.clock_gettime(Process::CLOCK_REALTIME))
95
96
  end
96
97
  end
@@ -75,7 +75,7 @@ module NewRelic
75
75
  # so do not mistake rendering a collection for rendering a file.
76
76
  if identifier.nil? && name != RENDER_COLLECTION_EVENT_NAME
77
77
  'file'
78
- elsif identifier =~ /template$/
78
+ elsif /template$/.match?(identifier)
79
79
  identifier
80
80
  elsif identifier && (parts = identifier.split('/')).size > 1
81
81
  parts[-2..-1].join('/')
@@ -99,11 +99,11 @@ module NewRelic
99
99
  end
100
100
 
101
101
  def finish
102
- @finishable.finish if @finishable
102
+ @finishable&.finish
103
103
  end
104
104
 
105
105
  def notice_error(error)
106
- @finishable.notice_error(error) if @finishable
106
+ @finishable&.notice_error(error)
107
107
  end
108
108
  end
109
109
  end
@@ -57,7 +57,7 @@ module NewRelic
57
57
 
58
58
  # Don't nest transactions if we're already in a web transaction.
59
59
  # Probably inline processing the job if that happens, so just trace.
60
- if txn && txn.recording_web_transaction?
60
+ if txn&.recording_web_transaction?
61
61
  run_in_trace(job, block, :Consume)
62
62
  elsif txn && !txn.recording_web_transaction?
63
63
  ::NewRelic::Agent::Transaction.set_default_transaction_name(
@@ -27,9 +27,9 @@ DependencyDetection.defer do
27
27
  actions = [:authorize, :purchase, :credit, :void, :capture, :recurring, :store, :unstore, :update]
28
28
  actions.each do |operation|
29
29
  if implemented_methods.include?(operation)
30
- add_method_tracer operation, [-> (*) { "ActiveMerchant/gateway/#{gateway_name}/#{operation}" },
31
- -> (*) { "ActiveMerchant/gateway/#{gateway_name}" },
32
- -> (*) { "ActiveMerchant/operation/#{operation}" }]
30
+ add_method_tracer operation, [->(*) { "ActiveMerchant/gateway/#{gateway_name}/#{operation}" },
31
+ ->(*) { "ActiveMerchant/gateway/#{gateway_name}" },
32
+ ->(*) { "ActiveMerchant/operation/#{operation}" }]
33
33
  end
34
34
  end
35
35
  end
@@ -13,7 +13,8 @@ module NewRelic
13
13
  ::ActiveRecord::Base.send("#{statement.config[:adapter]}_connection",
14
14
  statement.config)
15
15
  end
16
- if connection && connection.respond_to?(:execute)
16
+ # the following line needs else branch coverage
17
+ if connection && connection.respond_to?(:execute) # rubocop:disable Style/SafeNavigation
17
18
  return connection.execute("EXPLAIN #{statement.sql}")
18
19
  end
19
20
  end
@@ -43,7 +44,7 @@ module NewRelic
43
44
  end
44
45
  end
45
46
 
46
- if RUBY_VERSION < "2.7.0"
47
+ if RUBY_VERSION < '2.7.0'
47
48
  def log_with_newrelic_instrumentation(*args, &block)
48
49
  state = NewRelic::Agent::Tracer.state
49
50
 
@@ -49,7 +49,7 @@ module NewRelic
49
49
 
50
50
  alias_method(:delete_all_without_newrelic, :delete_all)
51
51
 
52
- if RUBY_VERSION < "2.7.0"
52
+ if RUBY_VERSION < '2.7.0'
53
53
  def delete_all(*args, &blk)
54
54
  ::NewRelic::Agent.with_database_metric_name(self.name, nil, ACTIVE_RECORD) do
55
55
  delete_all_without_newrelic(*args, &blk)
@@ -92,9 +92,9 @@ module NewRelic
92
92
  end
93
93
  end
94
94
 
95
- ACTIVE_RECORD = "ActiveRecord".freeze
96
- OTHER = "other".freeze
97
- MAKARA_SUFFIX = "_makara".freeze
95
+ ACTIVE_RECORD = 'ActiveRecord'.freeze
96
+ OTHER = 'other'.freeze
97
+ MAKARA_SUFFIX = '_makara'.freeze
98
98
 
99
99
  # convert vendor (makara, etc.) wrapper names to their bare names
100
100
  # ex: postgresql_makara -> postgresql
@@ -102,7 +102,7 @@ module NewRelic
102
102
  # TODO: OLD RUBIES - RUBY_VERSION < 2.5
103
103
  # With Ruby 2.5+ we could use #delete_suffix instead of #chomp for a
104
104
  # potential speed boost
105
- return adapter_name.chomp(MAKARA_SUFFIX) if adapter_name && adapter_name.end_with?(MAKARA_SUFFIX)
105
+ return adapter_name.chomp(MAKARA_SUFFIX) if adapter_name&.end_with?(MAKARA_SUFFIX)
106
106
 
107
107
  adapter_name
108
108
  end
@@ -118,7 +118,7 @@ module NewRelic
118
118
  SPACE = ' '.freeze
119
119
 
120
120
  def split_name(name)
121
- if name && name.respond_to?(:split)
121
+ if name&.respond_to?(:split)
122
122
  name.split(SPACE)
123
123
  else
124
124
  NewRelic::EMPTY_ARRAY
@@ -163,47 +163,50 @@ module NewRelic
163
163
  end
164
164
 
165
165
  PRODUCT_NAMES = {
166
- "mysql" => "MySQL",
167
- "mysql2" => "MySQL",
166
+ 'mysql' => 'MySQL',
167
+ 'mysql2' => 'MySQL',
168
168
 
169
- "postgresql" => "Postgres",
169
+ 'postgresql' => 'Postgres',
170
170
 
171
- "sqlite3" => "SQLite",
171
+ 'sqlite3' => 'SQLite',
172
172
 
173
173
  # https://rubygems.org/gems/activerecord-jdbcpostgresql-adapter
174
- "jdbcmysql" => "MySQL",
174
+ 'jdbcmysql' => 'MySQL',
175
175
 
176
176
  # https://rubygems.org/gems/activerecord-jdbcpostgresql-adapter
177
- "jdbcpostgresql" => "Postgres",
177
+ 'jdbcpostgresql' => 'Postgres',
178
178
 
179
179
  # https://rubygems.org/gems/activerecord-postgis-adapter
180
- "postgis" => "Postgres",
180
+ 'postgis' => 'Postgres',
181
181
 
182
182
  # https://rubygems.org/gems/activerecord-jdbcsqlite3-adapter
183
- "jdbcsqlite3" => "SQLite",
183
+ 'jdbcsqlite3' => 'SQLite',
184
184
 
185
185
  # https://rubygems.org/gems/activerecord-jdbcderby-adapter
186
- "derby" => "Derby",
187
- "jdbcderby" => "Derby",
186
+ 'derby' => 'Derby',
187
+ 'jdbcderby' => 'Derby',
188
188
 
189
189
  # https://rubygems.org/gems/activerecord-jdbc-adapter
190
- "jdbc" => "JDBC",
190
+ 'jdbc' => 'JDBC',
191
191
 
192
192
  # https://rubygems.org/gems/activerecord-jdbcmssql-adapter
193
- "jdbcmssql" => "MSSQL",
194
- "mssql" => "MSSQL",
193
+ 'jdbcmssql' => 'MSSQL',
194
+ 'mssql' => 'MSSQL',
195
195
 
196
196
  # https://rubygems.org/gems/activerecord-sqlserver-adapter
197
- "sqlserver" => "MSSQL",
197
+ 'sqlserver' => 'MSSQL',
198
198
 
199
199
  # https://rubygems.org/gems/activerecord-odbc-adapter
200
- "odbc" => "ODBC",
200
+ 'odbc' => 'ODBC',
201
201
 
202
202
  # https://rubygems.org/gems/activerecord-oracle_enhanced-adapter
203
- "oracle_enhanced" => "Oracle"
203
+ 'oracle_enhanced' => 'Oracle',
204
+
205
+ # https://rubygems.org/gems/activerecord-amazon-timestream-adapter
206
+ 'amazon_timestream' => 'Timestream'
204
207
  }.freeze
205
208
 
206
- ACTIVE_RECORD_DEFAULT_PRODUCT_NAME = "ActiveRecord".freeze
209
+ ACTIVE_RECORD_DEFAULT_PRODUCT_NAME = 'ActiveRecord'.freeze
207
210
 
208
211
  def map_product(adapter_name)
209
212
  PRODUCT_NAMES.fetch(adapter_name, ACTIVE_RECORD_DEFAULT_PRODUCT_NAME)
@@ -213,24 +216,24 @@ module NewRelic
213
216
  extend self
214
217
 
215
218
  PRODUCT_SYMBOLS = {
216
- "mysql" => :mysql,
217
- "mysql2" => :mysql,
218
- "jdbcmysql" => :mysql,
219
+ 'mysql' => :mysql,
220
+ 'mysql2' => :mysql,
221
+ 'jdbcmysql' => :mysql,
219
222
 
220
- "postgresql" => :postgres,
221
- "jdbcpostgresql" => :postgres,
222
- "postgis" => :postgres
223
+ 'postgresql' => :postgres,
224
+ 'jdbcpostgresql' => :postgres,
225
+ 'postgis' => :postgres
223
226
  }.freeze
224
227
 
225
228
  DATASTORE_DEFAULT_PORTS = {
226
- :mysql => "3306",
227
- :postgres => "5432"
229
+ :mysql => '3306',
230
+ :postgres => '5432'
228
231
  }.freeze
229
232
 
230
- DEFAULT = "default".freeze
231
- UNKNOWN = "unknown".freeze
232
- SLASH = "/".freeze
233
- LOCALHOST = "localhost".freeze
233
+ DEFAULT = 'default'.freeze
234
+ UNKNOWN = 'unknown'.freeze
235
+ SLASH = '/'.freeze
236
+ LOCALHOST = 'localhost'.freeze
234
237
 
235
238
  def adapter_from_config(config)
236
239
  bare_name = NewRelic::Agent::Instrumentation::ActiveRecordHelper.bare_adapter_name(config[:adapter])
@@ -16,7 +16,7 @@ module NewRelic
16
16
 
17
17
  module BaseExtensions4x
18
18
  # https://github.com/rails/rails/blob/4-1-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L371
19
- def log(sql, name = "SQL", binds = [], statement_name = nil)
19
+ def log(sql, name = 'SQL', binds = [], statement_name = nil)
20
20
  @instrumenter.instrument(
21
21
  SQL_ACTIVE_RECORD,
22
22
  :sql => sql,
@@ -38,7 +38,7 @@ module NewRelic
38
38
 
39
39
  module BaseExtensions50
40
40
  # https://github.com/rails/rails/blob/5-0-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L582
41
- def log(sql, name = "SQL", binds = [], type_casted_binds = [], statement_name = nil)
41
+ def log(sql, name = 'SQL', binds = [], type_casted_binds = [], statement_name = nil)
42
42
  @instrumenter.instrument(
43
43
  SQL_ACTIVE_RECORD,
44
44
  sql: sql,
@@ -56,7 +56,7 @@ module NewRelic
56
56
 
57
57
  module BaseExtensions51
58
58
  # https://github.com/rails/rails/blob/5-1-stable/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb#L603
59
- def log(sql, name = "SQL", binds = [], type_casted_binds = [], statement_name = nil) # :doc:
59
+ def log(sql, name = 'SQL', binds = [], type_casted_binds = [], statement_name = nil) # :doc:
60
60
  @instrumenter.instrument(
61
61
  SQL_ACTIVE_RECORD,
62
62
  sql: sql,
@@ -11,7 +11,7 @@ module NewRelic
11
11
  ACTIVE_RECORD = 'ActiveRecord'.freeze
12
12
 
13
13
  module BaseExtensions
14
- if RUBY_VERSION < "2.7.0"
14
+ if RUBY_VERSION < '2.7.0'
15
15
  def save(*args, &blk)
16
16
  ::NewRelic::Agent.with_database_metric_name(self.class.name, nil, ACTIVE_RECORD) do
17
17
  super
@@ -46,7 +46,7 @@ module NewRelic
46
46
  # Starting in v5.1.6, this call no longer happens. We'll
47
47
  # have to set the database metrics explicitly now.
48
48
  #
49
- if RUBY_VERSION < "2.7.0"
49
+ if RUBY_VERSION < '2.7.0'
50
50
  def touch(*args, **kwargs, &blk)
51
51
  ::NewRelic::Agent.with_database_metric_name(self.class.name, nil, ACTIVE_RECORD) do
52
52
  super
@@ -33,7 +33,7 @@ module NewRelic
33
33
  # defensive.
34
34
  return if defined?(cached?)
35
35
 
36
- if defined?(::ActiveRecord) && ::ActiveRecord::VERSION::STRING >= "5.1.0"
36
+ if defined?(::ActiveRecord) && ::ActiveRecord::VERSION::STRING >= '5.1.0'
37
37
  def cached?(payload)
38
38
  payload.fetch(:cached, false)
39
39
  end
@@ -74,7 +74,8 @@ module NewRelic
74
74
  ::ActiveRecord::Base.send("#{statement.config[:adapter]}_connection",
75
75
  statement.config)
76
76
  end
77
- if connection && connection.respond_to?(:exec_query)
77
+ # the following line needs else branch coverage
78
+ if connection && connection.respond_to?(:exec_query) # rubocop:disable Style/SafeNavigation
78
79
  return connection.exec_query("EXPLAIN #{statement.sql}",
79
80
  "Explain #{statement.name}",
80
81
  statement.binds)
@@ -3,7 +3,7 @@
3
3
  # frozen_string_literal: true
4
4
 
5
5
  module NewRelic::Agent::Instrumentation
6
- module Bunny
6
+ module Bunny::Chain
7
7
  def self.instrument!
8
8
  ::Bunny::Exchange.class_eval do
9
9
  include NewRelic::Agent::Instrumentation::Bunny::Exchange
@@ -46,7 +46,7 @@ module NewRelic
46
46
  exchange_type: type
47
47
  )
48
48
  rescue => e
49
- NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Exchange#publish", e)
49
+ NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Exchange#publish', e)
50
50
  yield
51
51
  else
52
52
  NewRelic::Agent::Tracer.capture_segment_error(segment) do
@@ -90,7 +90,7 @@ module NewRelic
90
90
  start_time: t0
91
91
  )
92
92
  rescue => e
93
- NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Queue#pop", e)
93
+ NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Queue#pop', e)
94
94
  else
95
95
  if bunny_error
96
96
  segment.notice_error(bunny_error)
@@ -113,7 +113,7 @@ module NewRelic
113
113
  destination_name: name
114
114
  )
115
115
  rescue => e
116
- NewRelic::Agent.logger.error("Error starting message broker segment in Bunny::Queue#purge", e)
116
+ NewRelic::Agent.logger.error('Error starting message broker segment in Bunny::Queue#purge', e)
117
117
  yield
118
118
  else
119
119
  NewRelic::Agent::Tracer.capture_segment_error(segment) do
@@ -26,7 +26,7 @@ DependencyDetection.defer do
26
26
  prepend_instrument Bunny::Queue, NewRelic::Agent::Instrumentation::Bunny::Prepend::Queue
27
27
  prepend_instrument Bunny::Consumer, NewRelic::Agent::Instrumentation::Bunny::Prepend::Consumer
28
28
  else
29
- chain_instrument NewRelic::Agent::Instrumentation::Bunny
29
+ chain_instrument NewRelic::Agent::Instrumentation::Bunny::Chain
30
30
  end
31
31
  end
32
32
  end