newrelic_rpm 8.15.0 → 9.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (342) hide show
  1. checksums.yaml +4 -4
  2. data/.build_ignore +26 -0
  3. data/CHANGELOG.md +538 -44
  4. data/CONTRIBUTING.md +1 -1
  5. data/Gemfile +1 -1
  6. data/README.md +11 -6
  7. data/Rakefile +9 -9
  8. data/Thorfile +1 -1
  9. data/bin/newrelic +1 -0
  10. data/bin/newrelic_cmd +1 -0
  11. data/bin/nrdebug +36 -36
  12. data/init.rb +1 -1
  13. data/lib/new_relic/agent/agent.rb +3 -16
  14. data/lib/new_relic/agent/agent_helpers/connect.rb +5 -10
  15. data/lib/new_relic/agent/agent_helpers/harvest.rb +4 -4
  16. data/lib/new_relic/agent/agent_helpers/shutdown.rb +5 -5
  17. data/lib/new_relic/agent/agent_helpers/special_startup.rb +3 -4
  18. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +47 -39
  19. data/lib/new_relic/agent/agent_helpers/startup.rb +13 -13
  20. data/lib/new_relic/agent/agent_helpers/transmit.rb +6 -6
  21. data/lib/new_relic/agent/agent_logger.rb +9 -9
  22. data/lib/new_relic/agent/attribute_filter.rb +2 -4
  23. data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
  24. data/lib/new_relic/agent/attribute_processing.rb +2 -2
  25. data/lib/new_relic/agent/audit_logger.rb +5 -5
  26. data/lib/new_relic/agent/autostart.rb +1 -1
  27. data/lib/new_relic/agent/commands/agent_command.rb +2 -2
  28. data/lib/new_relic/agent/commands/agent_command_router.rb +5 -4
  29. data/lib/new_relic/agent/commands/thread_profiler_session.rb +8 -8
  30. data/lib/new_relic/agent/configuration/default_source.rb +428 -586
  31. data/lib/new_relic/agent/configuration/environment_source.rb +2 -2
  32. data/lib/new_relic/agent/configuration/high_security_source.rb +3 -5
  33. data/lib/new_relic/agent/configuration/manager.rb +16 -2
  34. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -26
  35. data/lib/new_relic/agent/configuration/server_source.rb +24 -24
  36. data/lib/new_relic/agent/configuration/yaml_source.rb +17 -4
  37. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  38. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  39. data/lib/new_relic/agent/custom_event_aggregator.rb +4 -4
  40. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  41. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  42. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  43. data/lib/new_relic/agent/database.rb +4 -18
  44. data/lib/new_relic/agent/datastores/metric_helper.rb +5 -5
  45. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +11 -11
  46. data/lib/new_relic/agent/datastores/redis.rb +6 -6
  47. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +8 -10
  48. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +10 -10
  49. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +7 -7
  50. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  51. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +6 -6
  52. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +7 -7
  53. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +4 -4
  54. data/lib/new_relic/agent/distributed_tracing.rb +6 -6
  55. data/lib/new_relic/agent/error_collector.rb +36 -8
  56. data/lib/new_relic/agent/error_filter.rb +5 -5
  57. data/lib/new_relic/agent/error_trace_aggregator.rb +5 -4
  58. data/lib/new_relic/agent/event_loop.rb +3 -3
  59. data/lib/new_relic/agent/external.rb +1 -1
  60. data/lib/new_relic/agent/harvester.rb +1 -3
  61. data/lib/new_relic/agent/heap.rb +2 -1
  62. data/lib/new_relic/agent/hostname.rb +1 -1
  63. data/lib/new_relic/agent/http_clients/abstract.rb +9 -21
  64. data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +83 -0
  65. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +7 -3
  66. data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +111 -0
  67. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +7 -5
  68. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -0
  69. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +6 -2
  70. data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +93 -0
  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_cable_subscriber.rb +6 -19
  75. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
  76. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +3 -2
  77. data/lib/new_relic/agent/instrumentation/action_dispatch.rb +31 -0
  78. data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +64 -0
  79. data/lib/new_relic/agent/instrumentation/action_mailbox.rb +30 -0
  80. data/lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb +33 -0
  81. data/lib/new_relic/agent/instrumentation/action_mailer.rb +30 -0
  82. data/lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb +85 -0
  83. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +10 -10
  84. data/lib/new_relic/agent/instrumentation/active_job.rb +16 -3
  85. data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
  86. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -3
  87. data/lib/new_relic/agent/instrumentation/active_record.rb +4 -3
  88. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +38 -36
  89. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +5 -4
  90. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +2 -2
  91. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +3 -2
  92. data/lib/new_relic/agent/instrumentation/active_storage.rb +4 -0
  93. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +2 -30
  94. data/lib/new_relic/agent/instrumentation/active_support.rb +21 -6
  95. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
  96. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +13 -0
  97. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
  98. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
  99. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +4 -0
  100. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +3 -1
  101. data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
  102. data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
  103. data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
  104. data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
  105. data/lib/new_relic/agent/instrumentation/async_http.rb +26 -0
  106. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +1 -1
  107. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +12 -3
  108. data/lib/new_relic/agent/instrumentation/bunny.rb +1 -1
  109. data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +3 -4
  111. data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +7 -6
  113. data/lib/new_relic/agent/instrumentation/curb/chain.rb +1 -1
  114. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +9 -5
  115. data/lib/new_relic/agent/instrumentation/curb.rb +1 -1
  116. data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
  117. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +2 -1
  118. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +1 -0
  119. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +4 -1
  120. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +2 -1
  121. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +2 -2
  122. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +8 -4
  123. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +2 -2
  124. data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
  125. data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
  126. data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
  127. data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
  128. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +5 -1
  129. data/lib/new_relic/agent/instrumentation/excon.rb +3 -3
  130. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
  131. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +23 -0
  132. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
  133. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  134. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +8 -4
  135. data/lib/new_relic/agent/instrumentation/grape.rb +4 -4
  136. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +1 -1
  137. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +7 -2
  138. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +1 -1
  139. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +1 -1
  140. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +8 -4
  141. data/lib/new_relic/agent/instrumentation/grpc_client.rb +2 -2
  142. data/lib/new_relic/agent/instrumentation/grpc_server.rb +2 -2
  143. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +4 -0
  144. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +4 -0
  145. data/lib/new_relic/agent/instrumentation/httprb.rb +1 -1
  146. data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
  147. data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
  148. data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
  149. data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
  150. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  151. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +3 -0
  152. data/lib/new_relic/agent/instrumentation/logger.rb +1 -1
  153. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +3 -1
  154. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +14 -5
  155. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +3 -1
  156. data/lib/new_relic/agent/instrumentation/memcache.rb +12 -12
  157. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +3 -3
  158. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +1 -1
  159. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +6 -8
  160. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +5 -1
  161. data/lib/new_relic/agent/instrumentation/net_http.rb +2 -2
  162. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +46 -1
  163. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +7 -3
  164. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +2 -2
  165. data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
  166. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +7 -1
  167. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +7 -2
  168. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  169. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +4 -4
  170. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +14 -1
  171. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +12 -15
  172. data/lib/new_relic/agent/instrumentation/rake.rb +3 -3
  173. data/lib/new_relic/agent/instrumentation/redis/constants.rb +1 -1
  174. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +6 -1
  175. data/lib/new_relic/agent/instrumentation/redis.rb +1 -1
  176. data/lib/new_relic/agent/instrumentation/resque/helper.rb +1 -1
  177. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +4 -0
  178. data/lib/new_relic/agent/instrumentation/resque.rb +1 -1
  179. data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
  180. data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
  181. data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
  182. data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
  183. data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
  184. data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
  185. data/lib/new_relic/agent/instrumentation/sequel.rb +8 -9
  186. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +10 -10
  187. data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +4 -0
  188. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +1 -1
  189. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +26 -3
  190. data/lib/new_relic/agent/instrumentation/sidekiq.rb +6 -3
  191. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  192. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +10 -5
  193. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -4
  194. data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
  195. data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
  196. data/lib/new_relic/agent/instrumentation/thread/chain.rb +1 -1
  197. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +3 -8
  198. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +1 -1
  199. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +6 -1
  200. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +10 -6
  201. data/lib/new_relic/agent/javascript_instrumentor.rb +29 -24
  202. data/lib/new_relic/agent/linking_metadata.rb +2 -2
  203. data/lib/new_relic/agent/log_event_aggregator.rb +64 -17
  204. data/lib/new_relic/agent/log_event_attributes.rb +115 -0
  205. data/lib/new_relic/agent/logging.rb +77 -37
  206. data/lib/new_relic/agent/messaging.rb +9 -7
  207. data/lib/new_relic/agent/method_tracer.rb +7 -7
  208. data/lib/new_relic/agent/method_tracer_helpers.rb +27 -6
  209. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +4 -5
  210. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  211. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +12 -1
  212. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  213. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +2 -2
  214. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
  215. data/lib/new_relic/agent/new_relic_service.rb +47 -32
  216. data/lib/new_relic/agent/obfuscator.rb +1 -1
  217. data/lib/new_relic/agent/parameter_filtering.rb +6 -6
  218. data/lib/new_relic/agent/pipe_channel_manager.rb +7 -6
  219. data/lib/new_relic/agent/pipe_service.rb +5 -3
  220. data/lib/new_relic/agent/priority_sampled_buffer.rb +1 -1
  221. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
  222. data/lib/new_relic/agent/rules_engine.rb +1 -1
  223. data/lib/new_relic/agent/sampler.rb +2 -1
  224. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  225. data/lib/new_relic/agent/samplers/cpu_sampler.rb +5 -5
  226. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +9 -9
  227. data/lib/new_relic/agent/samplers/memory_sampler.rb +9 -9
  228. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  229. data/lib/new_relic/agent/span_event_aggregator.rb +4 -4
  230. data/lib/new_relic/agent/span_event_primitive.rb +18 -6
  231. data/lib/new_relic/agent/sql_sampler.rb +2 -2
  232. data/lib/new_relic/agent/stats.rb +1 -1
  233. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  234. data/lib/new_relic/agent/system_info.rb +36 -10
  235. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  236. data/lib/new_relic/agent/threading/backtrace_node.rb +3 -3
  237. data/lib/new_relic/agent/threading/backtrace_service.rb +3 -7
  238. data/lib/new_relic/agent/threading/thread_profile.rb +5 -5
  239. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  240. data/lib/new_relic/agent/tracer.rb +25 -16
  241. data/lib/new_relic/agent/transaction/abstract_segment.rb +109 -48
  242. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  243. data/lib/new_relic/agent/transaction/distributed_tracer.rb +7 -6
  244. data/lib/new_relic/agent/transaction/distributed_tracing.rb +13 -14
  245. data/lib/new_relic/agent/transaction/external_request_segment.rb +16 -13
  246. data/lib/new_relic/agent/transaction/message_broker_segment.rb +2 -3
  247. data/lib/new_relic/agent/transaction/request_attributes.rb +47 -11
  248. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  249. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  250. data/lib/new_relic/agent/transaction/trace.rb +1 -1
  251. data/lib/new_relic/agent/transaction/trace_context.rb +4 -4
  252. data/lib/new_relic/agent/transaction/trace_node.rb +8 -7
  253. data/lib/new_relic/agent/transaction/tracing.rb +10 -4
  254. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  255. data/lib/new_relic/agent/transaction.rb +90 -58
  256. data/lib/new_relic/agent/transaction_error_primitive.rb +21 -5
  257. data/lib/new_relic/agent/transaction_event_aggregator.rb +4 -4
  258. data/lib/new_relic/agent/transaction_event_primitive.rb +22 -3
  259. data/lib/new_relic/agent/transaction_sampler.rb +3 -3
  260. data/lib/new_relic/agent/transaction_time_aggregator.rb +7 -3
  261. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  262. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  263. data/lib/new_relic/agent/utilization/gcp.rb +4 -6
  264. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  265. data/lib/new_relic/agent/utilization/vendor.rb +6 -8
  266. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  267. data/lib/new_relic/agent/vm/mri_vm.rb +9 -8
  268. data/lib/new_relic/agent/worker_loop.rb +1 -1
  269. data/lib/new_relic/agent.rb +133 -36
  270. data/lib/new_relic/cli/command.rb +4 -3
  271. data/lib/new_relic/cli/commands/deployments.rb +26 -25
  272. data/lib/new_relic/cli/commands/install.rb +23 -23
  273. data/lib/new_relic/collection_helper.rb +2 -2
  274. data/lib/new_relic/constants.rb +10 -8
  275. data/lib/new_relic/control/class_methods.rb +4 -10
  276. data/lib/new_relic/control/frameworks/rails.rb +44 -20
  277. data/lib/new_relic/control/frameworks/roda.rb +20 -0
  278. data/lib/new_relic/control/instance_methods.rb +6 -6
  279. data/lib/new_relic/control/instrumentation.rb +1 -15
  280. data/lib/new_relic/control/private_instance_methods.rb +1 -1
  281. data/lib/new_relic/dependency_detection.rb +20 -18
  282. data/lib/new_relic/environment_report.rb +4 -4
  283. data/lib/new_relic/helper.rb +2 -1
  284. data/lib/new_relic/language_support.rb +10 -1
  285. data/lib/new_relic/latest_changes.rb +6 -6
  286. data/lib/new_relic/local_environment.rb +0 -10
  287. data/lib/new_relic/noticed_error.rb +25 -20
  288. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  289. data/lib/new_relic/rack/agent_middleware.rb +0 -16
  290. data/lib/new_relic/rack/browser_monitoring.rb +21 -17
  291. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  292. data/lib/new_relic/recipes/capistrano_legacy.rb +6 -6
  293. data/lib/new_relic/recipes/helpers/send_deployment.rb +5 -5
  294. data/lib/new_relic/supportability_helper.rb +4 -1
  295. data/lib/new_relic/traced_thread.rb +2 -3
  296. data/lib/new_relic/version.rb +2 -2
  297. data/lib/newrelic_rpm.rb +4 -4
  298. data/lib/sequel/extensions/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +6 -6
  299. data/lib/sequel/plugins/{newrelic_instrumentation.rb → new_relic_instrumentation.rb} +4 -4
  300. data/lib/tasks/bump_version.rake +21 -0
  301. data/lib/tasks/config.rake +13 -12
  302. data/lib/tasks/coverage_report.rake +4 -4
  303. data/lib/tasks/helpers/config.html.erb +93 -0
  304. data/lib/tasks/helpers/format.rb +19 -15
  305. data/lib/tasks/helpers/newrelicyml.rb +144 -0
  306. data/lib/tasks/helpers/version_bump.rb +62 -0
  307. data/lib/tasks/install.rake +4 -4
  308. data/lib/tasks/instrumentation_generator/instrumentation.thor +16 -19
  309. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +1 -1
  310. data/lib/tasks/instrumentation_generator/templates/chain.tt +1 -1
  311. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +1 -1
  312. data/lib/tasks/newrelic.rb +1 -0
  313. data/lib/tasks/newrelicyml.rake +13 -0
  314. data/lib/tasks/tests.rake +77 -6
  315. data/newrelic.yml +393 -274
  316. data/newrelic_rpm.gemspec +41 -30
  317. data/test/agent_helper.rb +25 -24
  318. metadata +172 -35
  319. data/.gitignore +0 -42
  320. data/.project +0 -23
  321. data/.rubocop.yml +0 -1946
  322. data/.rubocop_todo.yml +0 -62
  323. data/.simplecov +0 -15
  324. data/.snyk +0 -11
  325. data/.yardopts +0 -27
  326. data/Brewfile +0 -12
  327. data/DOCKER.md +0 -167
  328. data/Dockerfile +0 -10
  329. data/Guardfile +0 -26
  330. data/config/database.yml +0 -5
  331. data/config.dot +0 -278
  332. data/docker-compose.yml +0 -107
  333. data/lefthook.yml +0 -9
  334. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -83
  335. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -33
  336. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -215
  337. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -36
  338. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -41
  339. data/lib/new_relic/agent/range_extensions.rb +0 -27
  340. data/lib/tasks/helpers/removers.rb +0 -33
  341. data/lib/tasks/multiverse.rake +0 -6
  342. data/lib/tasks/multiverse.rb +0 -77
@@ -3,7 +3,6 @@
3
3
  # frozen_string_literal: true
4
4
 
5
5
  require 'zlib'
6
- require 'timeout'
7
6
  require 'new_relic/agent/audit_logger'
8
7
  require 'new_relic/agent/new_relic_service/encoders'
9
8
  require 'new_relic/agent/new_relic_service/marshaller'
@@ -19,7 +18,13 @@ module NewRelic
19
18
 
20
19
  # These include Errno connection errors, and all indicate that the
21
20
  # underlying TCP connection may be in a bad state.
22
- CONNECTION_ERRORS = [Timeout::Error, EOFError, SystemCallError, SocketError].freeze
21
+ CONNECTION_ERRORS = [Net::OpenTimeout, Net::ReadTimeout, EOFError, SystemCallError, SocketError]
22
+ # TODO: MAJOR VERSION - Net::WriteTimeout wasn't defined until Ruby 2.6.
23
+ # Once support for Ruby 2.5 is dropped, we should simply include
24
+ # Net::WriteTimeout in the connection errors array directly instead
25
+ # of with a conditional
26
+ CONNECTION_ERRORS << Net::WriteTimeout if defined?(Net::WriteTimeout)
27
+ CONNECTION_ERRORS.freeze
23
28
 
24
29
  # The maximum number of times to attempt an HTTP request
25
30
  MAX_ATTEMPTS = 2
@@ -65,7 +70,7 @@ module NewRelic
65
70
  Agent.config.register_callback(:marshaller) do |marshaller|
66
71
  if marshaller != 'json'
67
72
  ::NewRelic::Agent.logger.warn("Non-JSON marshaller '#{marshaller}' requested but not supported, using " \
68
- "JSON marshaller instead. pruby marshalling has been removed as of version 3.14.0.")
73
+ 'JSON marshaller instead. pruby marshalling has been removed as of version 3.14.0.')
69
74
  end
70
75
 
71
76
  @marshaller = JsonMarshaller.new
@@ -195,16 +200,16 @@ module NewRelic
195
200
  def error_event_data(data)
196
201
  metadata, items = data
197
202
  response = invoke_remote(:error_event_data, [@agent_id, *data], :item_count => items.size)
198
- NewRelic::Agent.record_metric("Supportability/Events/TransactionError/Sent", :count => items.size)
199
- NewRelic::Agent.record_metric("Supportability/Events/TransactionError/Seen", :count => metadata[:events_seen])
203
+ NewRelic::Agent.record_metric('Supportability/Events/TransactionError/Sent', :count => items.size)
204
+ NewRelic::Agent.record_metric('Supportability/Events/TransactionError/Seen', :count => metadata[:events_seen])
200
205
  response
201
206
  end
202
207
 
203
208
  def span_event_data(data)
204
209
  metadata, items = data
205
210
  response = invoke_remote(:span_event_data, [@agent_id, *data], :item_count => items.size)
206
- NewRelic::Agent.record_metric("Supportability/Events/SpanEvents/Sent", :count => items.size)
207
- NewRelic::Agent.record_metric("Supportability/Events/SpanEvents/Seen", :count => metadata[:events_seen])
211
+ NewRelic::Agent.record_metric('Supportability/Events/SpanEvents/Sent', :count => items.size)
212
+ NewRelic::Agent.record_metric('Supportability/Events/SpanEvents/Seen', :count => metadata[:events_seen])
208
213
  response
209
214
  end
210
215
 
@@ -305,7 +310,7 @@ module NewRelic
305
310
  conn.verify_mode = OpenSSL::SSL::VERIFY_PEER
306
311
  set_cert_store(conn)
307
312
  rescue StandardError, LoadError
308
- msg = "SSL is not available in the environment; please install SSL support."
313
+ msg = 'SSL is not available in the environment; please install SSL support.'
309
314
  raise UnrecoverableAgentException.new(msg)
310
315
  end
311
316
 
@@ -313,19 +318,21 @@ module NewRelic
313
318
  if NewRelic::Agent.config[:ca_bundle_path]
314
319
  conn.cert_store = ssl_cert_store
315
320
  else
316
- ::NewRelic::Agent.logger.debug("Using default security certificates")
321
+ ::NewRelic::Agent.logger.debug('Using default security certificates')
317
322
  end
318
323
  end
319
324
 
320
325
  def start_connection(conn)
321
326
  NewRelic::Agent.logger.debug("Opening TCP connection to #{conn.address}:#{conn.port}")
322
- Timeout.timeout(@request_timeout) { conn.start }
323
- conn
327
+ conn.start
324
328
  end
325
329
 
326
330
  def setup_connection_timeouts(conn)
327
- # We use Timeout explicitly instead of this
328
- conn.read_timeout = nil
331
+ conn.open_timeout = @request_timeout
332
+ conn.read_timeout = @request_timeout
333
+ # TODO: MAJOR VERSION - #write_timeout= requires Ruby 2.6+, so remove
334
+ # the conditional check once support for Ruby 2.5 is dropped
335
+ conn.write_timeout = @request_timeout if conn.respond_to?(:write_timeout=)
329
336
 
330
337
  if conn.respond_to?(:keep_alive_timeout) && NewRelic::Agent.config[:aggressive_keepalive]
331
338
  conn.keep_alive_timeout = NewRelic::Agent.config[:keep_alive_timeout]
@@ -362,8 +369,8 @@ module NewRelic
362
369
  conn = create_http_connection
363
370
  start_connection(conn)
364
371
  conn
365
- rescue Timeout::Error
366
- ::NewRelic::Agent.logger.info("Timeout while attempting to connect. You may need to install system-level CA Certificates, as the ruby agent no longer includes these.")
372
+ rescue Net::OpenTimeout
373
+ ::NewRelic::Agent.logger.info('Timed out while attempting to connect. For SSL issues, you may need to install system-level CA Certificates to be used by Net::HTTP.')
367
374
  raise
368
375
  end
369
376
 
@@ -380,7 +387,7 @@ module NewRelic
380
387
  @marshaller.dump(data)
381
388
  true
382
389
  rescue StandardError, SystemStackError => e
383
- NewRelic::Agent.logger.warn("Unable to marshal environment report on connect.", e)
390
+ NewRelic::Agent.logger.warn('Unable to marshal environment report on connect.', e)
384
391
  false
385
392
  end
386
393
 
@@ -409,7 +416,7 @@ module NewRelic
409
416
  end
410
417
  @audit_logger.log_request_headers(opts[:uri], headers)
411
418
  request['user-agent'] = user_agent
412
- request.content_type = "application/octet-stream"
419
+ request.content_type = 'application/octet-stream'
413
420
  request.body = opts[:data]
414
421
  request
415
422
  end
@@ -436,13 +443,9 @@ module NewRelic
436
443
  end
437
444
 
438
445
  def attempt_request(request, opts)
439
- response = nil
440
446
  conn = http_connection
441
447
  ::NewRelic::Agent.logger.debug("Sending request to #{opts[:collector]}#{opts[:uri]} with #{request.method}")
442
- Timeout.timeout(@request_timeout) do
443
- response = conn.request(request)
444
- end
445
- response
448
+ conn.request(request)
446
449
  end
447
450
 
448
451
  def handle_error_response(response, endpoint)
@@ -450,7 +453,9 @@ module NewRelic
450
453
  when Net::HTTPRequestTimeOut,
451
454
  Net::HTTPTooManyRequests,
452
455
  Net::HTTPInternalServerError,
453
- Net::HTTPServiceUnavailable
456
+ Net::HTTPServiceUnavailable,
457
+ Net::OpenTimeout,
458
+ Net::ReadTimeout
454
459
  handle_server_connection_exception(response, endpoint)
455
460
  when Net::HTTPBadRequest,
456
461
  Net::HTTPForbidden,
@@ -462,7 +467,6 @@ module NewRelic
462
467
  Net::HTTPRequestURITooLong,
463
468
  Net::HTTPUnsupportedMediaType,
464
469
  Net::HTTPExpectationFailed,
465
- Net::HTTPUnsupportedMediaType,
466
470
  Net::HTTPRequestHeaderFieldsTooLarge
467
471
  handle_unrecoverable_server_exception(response, endpoint)
468
472
  when Net::HTTPConflict,
@@ -472,9 +476,20 @@ module NewRelic
472
476
  when Net::HTTPGone
473
477
  handle_gone_response(response, endpoint)
474
478
  else
475
- record_endpoint_attempts_supportability_metrics(endpoint)
476
- record_error_response_supportability_metrics(response.code)
477
- raise UnrecoverableServerException, "#{response.code}: #{response.message}"
479
+ # TODO: MAJOR VERSION - Net::WriteTimeout wasn't defined until
480
+ # Ruby 2.6, so it can't be included in the case statement
481
+ # as a constant and instead needs to be found here. Once
482
+ # support for Ruby 2.5 is dropped, we should have
483
+ # Net::WriteTimeout sit in the 'when' clause above alongside
484
+ # Net::OpenTimeout and Net::ReadTimeout and this entire if/else
485
+ # conditional can be removed.
486
+ if response.respond_to?(:name) && response.name == 'Net::WriteTimeout'
487
+ handle_server_connection_exception(response, endpoint)
488
+ else
489
+ record_endpoint_attempts_supportability_metrics(endpoint)
490
+ record_error_response_supportability_metrics(response.code)
491
+ raise UnrecoverableServerException, "#{response.code}: #{response.message}"
492
+ end
478
493
  end
479
494
  response
480
495
  end
@@ -521,7 +536,7 @@ module NewRelic
521
536
  # ruled out; see the initializer
522
537
  }
523
538
 
524
- uri = String.new('/agent_listener/invoke_raw_method?')
539
+ uri = +'/agent_listener/invoke_raw_method?'
525
540
  uri << params.map do |k, v|
526
541
  next unless v
527
542
 
@@ -551,7 +566,7 @@ module NewRelic
551
566
  end
552
567
 
553
568
  def handle_serialization_error(method, e)
554
- NewRelic::Agent.increment_metric("Supportability/serialization_failure")
569
+ NewRelic::Agent.increment_metric('Supportability/serialization_failure')
555
570
  NewRelic::Agent.increment_metric("Supportability/serialization_failure/#{method}")
556
571
  msg = "Failed to serialize #{method} data using #{@marshaller.class}: #{e.inspect}"
557
572
  error = SerializationError.new(msg)
@@ -566,7 +581,7 @@ module NewRelic
566
581
  NewRelic::Agent.record_metric("Supportability/Agent/Collector/#{method}/Duration", request_duration)
567
582
  end
568
583
  if serialize_time
569
- NewRelic::Agent.record_metric("Supportability/invoke_remote_serialize", serialize_time)
584
+ NewRelic::Agent.record_metric('Supportability/invoke_remote_serialize', serialize_time)
570
585
  NewRelic::Agent.record_metric("Supportability/invoke_remote_serialize/#{method}", serialize_time)
571
586
  end
572
587
  end
@@ -581,7 +596,7 @@ module NewRelic
581
596
  # of items as arguments.
582
597
  def record_size_supportability_metrics(method, size_bytes, item_count)
583
598
  metrics = [
584
- "Supportability/Ruby/Collector/Output/Bytes",
599
+ 'Supportability/Ruby/Collector/Output/Bytes',
585
600
  "Supportability/Ruby/Collector/#{method}/Output/Bytes"
586
601
  ]
587
602
  # we may not have an item count, in which case, just record 0 for the exclusive time
@@ -595,7 +610,7 @@ module NewRelic
595
610
  return if post_string.size < Agent.config[:max_payload_size_in_bytes]
596
611
 
597
612
  ::NewRelic::Agent.logger.debug("Tried to send too much data: #{post_string.size} bytes")
598
- NewRelic::Agent.increment_metric("Supportability/Agent/Collector/#{endpoint}/MaxPayloadSizeLimit")
613
+ NewRelic::Agent.increment_metric("Supportability/Ruby/Collector/#{endpoint}/MaxPayloadSizeLimit")
599
614
  raise UnrecoverableServerException.new('413 Request Entity Too Large')
600
615
  end
601
616
 
@@ -33,7 +33,7 @@ module NewRelic
33
33
  def encode(text)
34
34
  return text unless key_bytes
35
35
 
36
- encoded = String.new('')
36
+ encoded = +''
37
37
  encoded.force_encoding('binary') if encoded.respond_to?(:force_encoding)
38
38
  index = 0
39
39
  text.each_byte do |byte|
@@ -7,7 +7,7 @@ module NewRelic
7
7
  module ParameterFiltering
8
8
  extend self
9
9
 
10
- ACTION_DISPATCH_PARAMETER_FILTER ||= "action_dispatch.parameter_filter".freeze
10
+ ACTION_DISPATCH_PARAMETER_FILTER ||= 'action_dispatch.parameter_filter'.freeze
11
11
 
12
12
  if defined?(Rails) && Gem::Version.new(::Rails::VERSION::STRING) >= Gem::Version.new('5.0.0')
13
13
  Rails.application.config.to_prepare do
@@ -41,12 +41,12 @@ module NewRelic
41
41
  end
42
42
 
43
43
  def filter_rack_file_data(env, params)
44
- content_type = env["CONTENT_TYPE"]
45
- multipart = content_type && content_type.start_with?("multipart")
44
+ content_type = env['CONTENT_TYPE']
45
+ multipart = content_type&.start_with?('multipart')
46
46
 
47
47
  params.inject({}) do |memo, (k, v)|
48
48
  if multipart && v.is_a?(Hash) && v[:tempfile]
49
- memo[k] = "[FILE]"
49
+ memo[k] = '[FILE]'
50
50
  else
51
51
  memo[k] = v
52
52
  end
@@ -56,8 +56,8 @@ module NewRelic
56
56
 
57
57
  def filter_rails_request_parameters(params)
58
58
  result = params.dup
59
- result.delete("controller")
60
- result.delete("action")
59
+ result.delete('controller')
60
+ result.delete('action')
61
61
  result
62
62
  end
63
63
 
@@ -55,7 +55,7 @@ module NewRelic
55
55
  # 4 GB - much larger than we'd ever need or want for this application.
56
56
  #
57
57
  class Pipe
58
- READY_MARKER = "READY"
58
+ READY_MARKER = 'READY'
59
59
  NUM_LENGTH_BYTES = 4
60
60
 
61
61
  attr_accessor :in, :out
@@ -76,11 +76,11 @@ module NewRelic
76
76
  end
77
77
 
78
78
  def serialize_message_length(data)
79
- [data.bytesize].pack("L>")
79
+ [data.bytesize].pack('L>')
80
80
  end
81
81
 
82
82
  def deserialize_message_length(data)
83
- data.unpack("L>").first
83
+ data.unpack('L>').first
84
84
  end
85
85
 
86
86
  def write(data)
@@ -103,7 +103,7 @@ module NewRelic
103
103
  nil
104
104
  end
105
105
  else
106
- NewRelic::Agent.logger.error("Failed to read bytes for length from pipe.")
106
+ NewRelic::Agent.logger.error('Failed to read bytes for length from pipe.')
107
107
  nil
108
108
  end
109
109
  end
@@ -218,7 +218,8 @@ module NewRelic
218
218
  def close_all_pipes
219
219
  @pipes_lock.synchronize do
220
220
  @pipes.each do |id, pipe|
221
- pipe.close if pipe
221
+ # Needs else branch coverage
222
+ pipe.close if pipe # rubocop:disable Style/SafeNavigation
222
223
  end
223
224
  @pipes = {}
224
225
  end
@@ -255,7 +256,7 @@ module NewRelic
255
256
  def unmarshal(data)
256
257
  Marshal.load(data)
257
258
  rescue StandardError => e
258
- ::NewRelic::Agent.logger.error("Failure unmarshalling message from Resque child process", e)
259
+ ::NewRelic::Agent.logger.error('Failure unmarshalling message from Resque child process', e)
259
260
  ::NewRelic::Agent.logger.debug(Base64.encode64(data))
260
261
  nil
261
262
  end
@@ -15,7 +15,7 @@ module NewRelic
15
15
  if @pipe && @pipe.parent_pid != $$
16
16
  @pipe.after_fork_in_child
17
17
  else
18
- NewRelic::Agent.logger.error("No communication channel to parent process, please see https://newrelic.com/docs/ruby/resque-instrumentation for more information.")
18
+ NewRelic::Agent.logger.error('No communication channel to parent process, please see https://docs.newrelic.com/docs/apm/agents/ruby-agent/background-jobs/resque-instrumentation/ for more information.')
19
19
  end
20
20
  end
21
21
 
@@ -65,7 +65,8 @@ module NewRelic
65
65
  end
66
66
 
67
67
  def shutdown
68
- @pipe.close if @pipe
68
+ # no else branch coverage
69
+ @pipe.close if @pipe # rubocop:disable Style/SafeNavigation
69
70
  end
70
71
 
71
72
  # Invokes the block it is passed. This is used to implement HTTP
@@ -82,7 +83,8 @@ module NewRelic
82
83
  end
83
84
 
84
85
  def write_to_pipe(endpoint, data)
85
- @pipe.write(marshal_payload([endpoint, data])) if @pipe
86
+ # the following line needs else branch coverage
87
+ @pipe.write(marshal_payload([endpoint, data])) if @pipe # rubocop:disable Style/SafeNavigation
86
88
  end
87
89
  end
88
90
  end
@@ -8,7 +8,7 @@ require 'new_relic/agent/event_buffer'
8
8
  module NewRelic
9
9
  module Agent
10
10
  class PrioritySampledBuffer < EventBuffer
11
- PRIORITY_KEY = "priority".freeze
11
+ PRIORITY_KEY = 'priority'.freeze
12
12
 
13
13
  attr_reader :seen_lifetime, :captured_lifetime
14
14
 
@@ -11,7 +11,6 @@ module NewRelic
11
11
  SEGMENT_PLACEHOLDER = '*'.freeze
12
12
  ADJACENT_PLACEHOLDERS_REGEX = %r{((?:^|/)\*)(?:/\*)*}.freeze
13
13
  ADJACENT_PLACEHOLDERS_REPLACEMENT = '\1'.freeze
14
- VALID_PREFIX_SEGMENT_COUNT = 2
15
14
 
16
15
  attr_reader :prefix, :terms
17
16
 
@@ -9,7 +9,7 @@ require 'new_relic/language_support'
9
9
  module NewRelic
10
10
  module Agent
11
11
  class RulesEngine
12
- SEGMENT_SEPARATOR = '/'.freeze
12
+ SEGMENT_SEPARATOR = NewRelic::SLASH
13
13
  LEADING_SLASH_REGEX = %r{^/}.freeze
14
14
 
15
15
  include Enumerable
@@ -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
  # A Sampler is used to capture meaningful metrics in a background thread
6
7
  # periodically. They will be invoked about once a minute, each time the agent
@@ -56,7 +57,7 @@ module NewRelic
56
57
  end
57
58
 
58
59
  def poll
59
- raise "Implement in the subclass"
60
+ raise 'Implement in the subclass'
60
61
  end
61
62
  end
62
63
  end
@@ -64,7 +64,7 @@ module NewRelic
64
64
  rescue NewRelic::Agent::Sampler::Unsupported => e
65
65
  ::NewRelic::Agent.logger.info("#{sampler_class.name} not available: #{e}")
66
66
  rescue => e
67
- ::NewRelic::Agent.logger.error("Error registering sampler:", e)
67
+ ::NewRelic::Agent.logger.error('Error registering sampler:', e)
68
68
  end
69
69
  end
70
70
  end
@@ -16,26 +16,26 @@ module NewRelic
16
16
  @last_time = nil
17
17
  @processor_count = NewRelic::Agent::SystemInfo.num_logical_processors
18
18
  if @processor_count.nil?
19
- NewRelic::Agent.logger.warn("Failed to determine processor count, assuming 1")
19
+ NewRelic::Agent.logger.warn('Failed to determine processor count, assuming 1')
20
20
  @processor_count = 1
21
21
  end
22
22
  poll
23
23
  end
24
24
 
25
25
  def record_user_util(value)
26
- NewRelic::Agent.record_metric("CPU/User/Utilization", value)
26
+ NewRelic::Agent.record_metric('CPU/User/Utilization', value)
27
27
  end
28
28
 
29
29
  def record_system_util(value)
30
- NewRelic::Agent.record_metric("CPU/System/Utilization", value)
30
+ NewRelic::Agent.record_metric('CPU/System/Utilization', value)
31
31
  end
32
32
 
33
33
  def record_usertime(value)
34
- NewRelic::Agent.record_metric("CPU/User Time", value)
34
+ NewRelic::Agent.record_metric('CPU/User Time', value)
35
35
  end
36
36
 
37
37
  def record_systemtime(value)
38
- NewRelic::Agent.record_metric("CPU/System Time", value)
38
+ NewRelic::Agent.record_metric('CPU/System Time', value)
39
39
  end
40
40
 
41
41
  def self.supported_on_this_platform?
@@ -21,21 +21,21 @@ module NewRelic
21
21
  # DelayedJob supports multiple backends, only some of which we can
22
22
  # handle. Check whether we think we've got what we need here.
23
23
  def self.supported_backend?
24
- ::Delayed::Worker.backend.to_s == "Delayed::Backend::ActiveRecord::Job"
24
+ ::Delayed::Worker.backend.to_s == 'Delayed::Backend::ActiveRecord::Job'
25
25
  end
26
26
 
27
27
  def initialize
28
- raise Unsupported, "DJ queue sampler disabled" if Agent.config[:disable_dj]
28
+ raise Unsupported, 'DJ queue sampler disabled' if Agent.config[:'instrumentation.delayed_job'] == 'disabled'
29
29
  raise Unsupported, "DJ queue sampling unsupported with backend '#{::Delayed::Worker.backend}'" unless self.class.supported_backend?
30
- raise Unsupported, "No DJ worker present. Skipping DJ queue sampler" unless NewRelic::DelayedJobInjection.worker_name
30
+ raise Unsupported, 'No DJ worker present. Skipping DJ queue sampler' unless NewRelic::DelayedJobInjection.worker_name
31
31
  end
32
32
 
33
33
  def record_failed_jobs(value)
34
- NewRelic::Agent.record_metric("Workers/DelayedJob/failed_jobs", value)
34
+ NewRelic::Agent.record_metric('Workers/DelayedJob/failed_jobs', value)
35
35
  end
36
36
 
37
37
  def record_locked_jobs(value)
38
- NewRelic::Agent.record_metric("Workers/DelayedJob/locked_jobs", value)
38
+ NewRelic::Agent.record_metric('Workers/DelayedJob/locked_jobs', value)
39
39
  end
40
40
 
41
41
  FAILED_QUERY = 'failed_at is not NULL'.freeze
@@ -74,10 +74,10 @@ module NewRelic
74
74
 
75
75
  def record_queue_length_metrics
76
76
  counts = []
77
- counts << record_counts_by("queue", "name") if ::Delayed::Job.instance_methods.include?(:queue)
78
- counts << record_counts_by("priority")
77
+ counts << record_counts_by('queue', 'name') if ::Delayed::Job.instance_methods.include?(:queue)
78
+ counts << record_counts_by('priority')
79
79
 
80
- all_metric = "Workers/DelayedJob/queue_length/all"
80
+ all_metric = 'Workers/DelayedJob/queue_length/all'
81
81
  NewRelic::Agent.record_metric(all_metric, counts.max)
82
82
  end
83
83
 
@@ -87,7 +87,7 @@ module NewRelic
87
87
  all_count = 0
88
88
  queue_counts(column_name).each do |column_val, count|
89
89
  all_count += count
90
- column_val = "default" if column_val.nil? || column_val == NewRelic::EMPTY_STR
90
+ column_val = 'default' if column_val.nil? || column_val == NewRelic::EMPTY_STR
91
91
  metric = "Workers/DelayedJob/queue_length/#{metric_node}/#{column_val}"
92
92
  NewRelic::Agent.record_metric(metric, count)
93
93
  end
@@ -23,18 +23,18 @@ module NewRelic
23
23
  @sampler = ProcStatus.new
24
24
  if !@sampler.can_run?
25
25
  ::NewRelic::Agent.logger.debug("Error attempting to use /proc/#{$$}/status file for reading memory. Using ps command instead.")
26
- @sampler = ShellPS.new("ps -o rsz")
26
+ @sampler = ShellPS.new('ps -o rsz')
27
27
  else
28
28
  ::NewRelic::Agent.logger.debug("Using /proc/#{$$}/status for reading process memory.")
29
29
  end
30
30
  elsif platform.include?('darwin9') # 10.5
31
- @sampler = ShellPS.new("ps -o rsz")
32
- elsif platform =~ /darwin(1|2)\d+/ # >= 10.6
33
- @sampler = ShellPS.new("ps -o rss")
31
+ @sampler = ShellPS.new('ps -o rsz')
32
+ elsif /darwin(1|2)\d+/.match?(platform) # >= 10.6
33
+ @sampler = ShellPS.new('ps -o rss')
34
34
  elsif platform.include?('freebsd')
35
- @sampler = ShellPS.new("ps -o rss")
35
+ @sampler = ShellPS.new('ps -o rss')
36
36
  elsif platform.include?('solaris')
37
- @sampler = ShellPS.new("/usr/bin/ps -o rss -p")
37
+ @sampler = ShellPS.new('/usr/bin/ps -o rss -p')
38
38
  end
39
39
 
40
40
  raise Unsupported, "Unsupported platform for getting memory: #{platform}" if @sampler.nil?
@@ -64,7 +64,7 @@ module NewRelic
64
64
  def poll
65
65
  sample = @sampler.get_sample
66
66
  if sample
67
- NewRelic::Agent.record_metric("Memory/Physical", sample)
67
+ NewRelic::Agent.record_metric('Memory/Physical', sample)
68
68
  end
69
69
  end
70
70
 
@@ -106,7 +106,7 @@ module NewRelic
106
106
  end
107
107
 
108
108
  def to_s
109
- "JRuby Java heap sampler"
109
+ 'JRuby Java heap sampler'
110
110
  end
111
111
  end
112
112
 
@@ -140,7 +140,7 @@ module NewRelic
140
140
  class ProcStatus < Base
141
141
  # Returns the amount of resident memory this process is using in MB
142
142
  def get_memory
143
- proc_status = File.open(proc_status_file, "r") { |f| f.read_nonblock(4096).strip }
143
+ proc_status = File.open(proc_status_file, 'r') { |f| f.read_nonblock(4096).strip }
144
144
  if proc_status =~ /RSS:\s*(\d+) kB/i
145
145
  return $1.to_f / 1024.0
146
146
  end
@@ -16,7 +16,7 @@ module NewRelic
16
16
 
17
17
  def poll
18
18
  live_objects = ObjectSpace.live_objects
19
- NewRelic::Agent.record_metric("GC/objects", live_objects)
19
+ NewRelic::Agent.record_metric('GC/objects', live_objects)
20
20
  end
21
21
  end
22
22
  end
@@ -18,7 +18,7 @@ module NewRelic
18
18
 
19
19
  def record(priority: nil, event: nil, &blk)
20
20
  unless event || priority && blk
21
- raise ArgumentError, "Expected priority and block, or event"
21
+ raise ArgumentError, 'Expected priority and block, or event'
22
22
  end
23
23
 
24
24
  return unless enabled?
@@ -29,9 +29,9 @@ module NewRelic
29
29
  end
30
30
  end
31
31
 
32
- SUPPORTABILITY_TOTAL_SEEN = "Supportability/SpanEvent/TotalEventsSeen".freeze
33
- SUPPORTABILITY_TOTAL_SENT = "Supportability/SpanEvent/TotalEventsSent".freeze
34
- SUPPORTABILITY_DISCARDED = "Supportability/SpanEvent/Discarded".freeze
32
+ SUPPORTABILITY_TOTAL_SEEN = 'Supportability/SpanEvent/TotalEventsSeen'.freeze
33
+ SUPPORTABILITY_TOTAL_SENT = 'Supportability/SpanEvent/TotalEventsSent'.freeze
34
+ SUPPORTABILITY_DISCARDED = 'Supportability/SpanEvent/Discarded'.freeze
35
35
 
36
36
  def after_harvest(metadata)
37
37
  seen = metadata[:seen]
@@ -29,16 +29,20 @@ module NewRelic
29
29
  CATEGORY_KEY = 'category'
30
30
  HTTP_URL_KEY = 'http.url'
31
31
  HTTP_METHOD_KEY = 'http.method'
32
+ HTTP_REQUEST_METHOD_KEY = 'http.request.method'
32
33
  HTTP_STATUS_CODE_KEY = 'http.statusCode'
33
34
  COMPONENT_KEY = 'component'
34
35
  DB_INSTANCE_KEY = 'db.instance'
35
36
  DB_STATEMENT_KEY = 'db.statement'
37
+ DB_SYSTEM_KEY = 'db.system'
36
38
  PEER_ADDRESS_KEY = 'peer.address'
37
39
  PEER_HOSTNAME_KEY = 'peer.hostname'
40
+ SERVER_ADDRESS_KEY = 'server.address'
41
+ SERVER_PORT_KEY = 'server.port'
38
42
  SPAN_KIND_KEY = 'span.kind'
39
43
  ENTRY_POINT_KEY = 'nr.entryPoint'
40
- TRUSTED_PARENT_KEY = "trustedParentId"
41
- TRACING_VENDORS_KEY = "tracingVendors"
44
+ TRUSTED_PARENT_KEY = 'trustedParentId'
45
+ TRACING_VENDORS_KEY = 'tracingVendors'
42
46
  TRANSACTION_NAME_KEY = 'transaction.name'
43
47
 
44
48
  # Strings for static values of the event structure
@@ -69,10 +73,12 @@ module NewRelic
69
73
 
70
74
  intrinsics[COMPONENT_KEY] = segment.library
71
75
  intrinsics[HTTP_METHOD_KEY] = segment.procedure
76
+ intrinsics[HTTP_REQUEST_METHOD_KEY] = segment.procedure
72
77
  intrinsics[HTTP_STATUS_CODE_KEY] = segment.http_status_code if segment.http_status_code
73
78
  intrinsics[CATEGORY_KEY] = HTTP_CATEGORY
74
79
  intrinsics[SPAN_KIND_KEY] = CLIENT
75
-
80
+ intrinsics[SERVER_ADDRESS_KEY] = segment.uri.host
81
+ intrinsics[SERVER_PORT_KEY] = segment.uri.port
76
82
  agent_attributes = error_attributes(segment) || {}
77
83
 
78
84
  if allowed?(HTTP_URL_KEY)
@@ -86,7 +92,7 @@ module NewRelic
86
92
  [intrinsics, custom_attributes(segment), agent_attributes]
87
93
  end
88
94
 
89
- def for_datastore_segment(segment)
95
+ def for_datastore_segment(segment) # rubocop:disable Metrics/AbcSize
90
96
  intrinsics = intrinsics_for(segment)
91
97
 
92
98
  intrinsics[COMPONENT_KEY] = segment.product
@@ -101,9 +107,15 @@ module NewRelic
101
107
  if segment.host && segment.port_path_or_id && allowed?(PEER_ADDRESS_KEY)
102
108
  agent_attributes[PEER_ADDRESS_KEY] = truncate("#{segment.host}:#{segment.port_path_or_id}")
103
109
  end
104
- if segment.host && allowed?(PEER_HOSTNAME_KEY)
105
- agent_attributes[PEER_HOSTNAME_KEY] = truncate(segment.host)
110
+ if segment.host
111
+ [PEER_HOSTNAME_KEY, SERVER_ADDRESS_KEY].each do |key|
112
+ agent_attributes[key] = truncate(segment.host) if allowed?(key)
113
+ end
114
+ end
115
+ if segment.port_path_or_id&.match?(/^\d+$/) && allowed?(SERVER_PORT_KEY)
116
+ agent_attributes[SERVER_PORT_KEY] = segment.port_path_or_id
106
117
  end
118
+ agent_attributes[DB_SYSTEM_KEY] = segment.product if allowed?(DB_SYSTEM_KEY)
107
119
 
108
120
  if segment.sql_statement && allowed?(DB_STATEMENT_KEY)
109
121
  agent_attributes[DB_STATEMENT_KEY] = truncate(segment.sql_statement.safe_sql, 2000)
@@ -154,12 +154,12 @@ module NewRelic
154
154
  end
155
155
  end
156
156
 
157
- PRIORITY = "priority".freeze
157
+ PRIORITY = 'priority'.freeze
158
158
 
159
159
  def distributed_trace_attributes(state)
160
160
  transaction = state.current_transaction
161
161
  params = nil
162
- if transaction && transaction.distributed_tracer.distributed_trace_payload
162
+ if transaction&.distributed_tracer&.distributed_trace_payload
163
163
  params = {}
164
164
  payload = transaction.distributed_tracer.distributed_trace_payload
165
165
  DistributedTraceAttributes.copy_from_transaction(transaction, payload, params)