newrelic_rpm 8.10.1 → 8.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (395) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.rubocop.yml +20 -190
  4. data/.rubocop_todo.yml +11 -202
  5. data/.simplecov +6 -4
  6. data/Brewfile +1 -0
  7. data/CHANGELOG.md +113 -41
  8. data/Gemfile +0 -1
  9. data/README.md +1 -1
  10. data/Rakefile +3 -20
  11. data/Thorfile +0 -1
  12. data/bin/nrdebug +65 -43
  13. data/config.dot +5 -5
  14. data/docker-compose.yml +22 -0
  15. data/init.rb +1 -2
  16. data/install.rb +1 -2
  17. data/lib/new_relic/agent/adaptive_sampler.rb +0 -1
  18. data/lib/new_relic/agent/agent/shutdown.rb +1 -1
  19. data/lib/new_relic/agent/agent/special_startup.rb +2 -1
  20. data/lib/new_relic/agent/agent/start_worker_thread.rb +0 -1
  21. data/lib/new_relic/agent/agent/startup.rb +1 -1
  22. data/lib/new_relic/agent/agent.rb +100 -73
  23. data/lib/new_relic/agent/agent_logger.rb +4 -5
  24. data/lib/new_relic/agent/attribute_filter.rb +39 -21
  25. data/lib/new_relic/agent/attribute_processing.rb +3 -4
  26. data/lib/new_relic/agent/attributes.rb +1 -1
  27. data/lib/new_relic/agent/audit_logger.rb +3 -3
  28. data/lib/new_relic/agent/autostart.rb +0 -1
  29. data/lib/new_relic/agent/chained_call.rb +0 -1
  30. data/lib/new_relic/agent/commands/agent_command.rb +0 -1
  31. data/lib/new_relic/agent/commands/agent_command_router.rb +3 -4
  32. data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
  33. data/lib/new_relic/agent/configuration/default_source.rb +82 -31
  34. data/lib/new_relic/agent/configuration/dotted_hash.rb +2 -2
  35. data/lib/new_relic/agent/configuration/environment_source.rb +4 -4
  36. data/lib/new_relic/agent/configuration/event_harvest_config.rb +0 -1
  37. data/lib/new_relic/agent/configuration/high_security_source.rb +1 -1
  38. data/lib/new_relic/agent/configuration/manager.rb +4 -2
  39. data/lib/new_relic/agent/configuration/manual_source.rb +0 -1
  40. data/lib/new_relic/agent/configuration/mask_defaults.rb +2 -3
  41. data/lib/new_relic/agent/configuration/security_policy_source.rb +10 -1
  42. data/lib/new_relic/agent/configuration/server_source.rb +0 -1
  43. data/lib/new_relic/agent/configuration/yaml_source.rb +3 -3
  44. data/lib/new_relic/agent/configuration.rb +0 -1
  45. data/lib/new_relic/agent/connect/request_builder.rb +2 -2
  46. data/lib/new_relic/agent/connect/response_handler.rb +1 -2
  47. data/lib/new_relic/agent/custom_event_aggregator.rb +0 -1
  48. data/lib/new_relic/agent/database/explain_plan_helpers.rb +0 -1
  49. data/lib/new_relic/agent/database/obfuscation_helpers.rb +1 -1
  50. data/lib/new_relic/agent/database/obfuscator.rb +0 -1
  51. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +0 -1
  52. data/lib/new_relic/agent/database.rb +20 -14
  53. data/lib/new_relic/agent/database_adapter.rb +2 -1
  54. data/lib/new_relic/agent/datastores/metric_helper.rb +0 -4
  55. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +5 -5
  56. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +2 -5
  57. data/lib/new_relic/agent/datastores/mongo.rb +0 -1
  58. data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
  59. data/lib/new_relic/agent/datastores/redis.rb +0 -1
  60. data/lib/new_relic/agent/datastores.rb +0 -1
  61. data/lib/new_relic/agent/deprecator.rb +0 -1
  62. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +0 -1
  63. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +3 -1
  64. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +3 -1
  65. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +1 -1
  66. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -2
  67. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +0 -1
  68. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +1 -1
  69. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +0 -1
  70. data/lib/new_relic/agent/distributed_tracing.rb +0 -1
  71. data/lib/new_relic/agent/encoding_normalizer.rb +2 -1
  72. data/lib/new_relic/agent/error_collector.rb +3 -1
  73. data/lib/new_relic/agent/error_event_aggregator.rb +0 -1
  74. data/lib/new_relic/agent/error_filter.rb +5 -5
  75. data/lib/new_relic/agent/error_trace_aggregator.rb +2 -2
  76. data/lib/new_relic/agent/event_aggregator.rb +1 -1
  77. data/lib/new_relic/agent/event_buffer.rb +0 -1
  78. data/lib/new_relic/agent/event_listener.rb +0 -1
  79. data/lib/new_relic/agent/event_loop.rb +4 -3
  80. data/lib/new_relic/agent/external.rb +1 -2
  81. data/lib/new_relic/agent/guid_generator.rb +0 -1
  82. data/lib/new_relic/agent/harvester.rb +0 -1
  83. data/lib/new_relic/agent/heap.rb +2 -3
  84. data/lib/new_relic/agent/hostname.rb +0 -1
  85. data/lib/new_relic/agent/http_clients/abstract.rb +2 -1
  86. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +0 -1
  87. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +0 -1
  88. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +1 -2
  89. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -2
  90. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +0 -1
  91. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +2 -2
  92. data/lib/new_relic/agent/http_clients/uri_util.rb +0 -1
  93. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +0 -1
  94. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +0 -1
  95. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +1 -2
  96. data/lib/new_relic/agent/instrumentation/active_job.rb +0 -1
  97. data/lib/new_relic/agent/instrumentation/active_merchant.rb +3 -2
  98. data/lib/new_relic/agent/instrumentation/active_record.rb +0 -1
  99. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +0 -1
  100. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +0 -1
  101. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +0 -1
  102. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +0 -1
  103. data/lib/new_relic/agent/instrumentation/active_storage.rb +0 -1
  104. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +2 -1
  105. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +0 -1
  106. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +0 -1
  107. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +0 -1
  108. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +0 -1
  109. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -1
  111. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +0 -1
  112. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +0 -1
  113. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +0 -1
  114. data/lib/new_relic/agent/instrumentation/bunny.rb +0 -1
  115. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +3 -3
  116. data/lib/new_relic/agent/instrumentation/curb/chain.rb +0 -1
  117. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +14 -11
  118. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +0 -1
  119. data/lib/new_relic/agent/instrumentation/curb.rb +0 -1
  120. data/lib/new_relic/agent/instrumentation/data_mapper.rb +1 -2
  121. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +0 -1
  122. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +0 -1
  123. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +0 -1
  124. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +1 -1
  125. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
  126. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +66 -0
  127. data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
  128. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
  129. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +0 -1
  130. data/lib/new_relic/agent/instrumentation/excon.rb +0 -1
  131. data/lib/new_relic/agent/instrumentation/grape/chain.rb +0 -1
  132. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +1 -1
  133. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +0 -1
  134. data/lib/new_relic/agent/instrumentation/grape.rb +0 -1
  135. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +0 -1
  136. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +0 -1
  137. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +0 -1
  138. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +0 -1
  139. data/lib/new_relic/agent/instrumentation/grpc/helper.rb +0 -1
  140. data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +0 -1
  141. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +0 -1
  142. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +0 -1
  143. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +0 -1
  144. data/lib/new_relic/agent/instrumentation/grpc_client.rb +0 -1
  145. data/lib/new_relic/agent/instrumentation/grpc_server.rb +0 -1
  146. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +0 -1
  147. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +0 -1
  148. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +0 -1
  149. data/lib/new_relic/agent/instrumentation/httpclient.rb +0 -1
  150. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +0 -1
  151. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +0 -1
  152. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +0 -1
  153. data/lib/new_relic/agent/instrumentation/httprb.rb +0 -1
  154. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +0 -1
  155. data/lib/new_relic/agent/instrumentation/logger/chain.rb +0 -1
  156. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +4 -1
  157. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +0 -1
  158. data/lib/new_relic/agent/instrumentation/logger.rb +0 -1
  159. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +0 -1
  160. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +1 -2
  161. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +0 -1
  162. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +0 -1
  163. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +1 -2
  164. data/lib/new_relic/agent/instrumentation/memcache.rb +4 -5
  165. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +1 -2
  166. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +0 -1
  167. data/lib/new_relic/agent/instrumentation/mongo.rb +0 -1
  168. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +3 -2
  169. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +0 -1
  170. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +0 -1
  171. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +0 -1
  172. data/lib/new_relic/agent/instrumentation/net_http.rb +0 -1
  173. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +4 -3
  174. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +0 -1
  175. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +0 -1
  176. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +0 -1
  177. data/lib/new_relic/agent/instrumentation/padrino.rb +0 -1
  178. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +0 -1
  179. data/lib/new_relic/agent/instrumentation/queue_time.rb +0 -2
  180. data/lib/new_relic/agent/instrumentation/rack/chain.rb +0 -1
  181. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +0 -1
  182. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +3 -1
  183. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +0 -1
  184. data/lib/new_relic/agent/instrumentation/rack.rb +0 -1
  185. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +0 -1
  186. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +0 -1
  187. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +0 -1
  188. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +0 -1
  189. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +0 -1
  190. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -1
  191. data/lib/new_relic/agent/instrumentation/rake/chain.rb +0 -1
  192. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +6 -1
  193. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +0 -1
  194. data/lib/new_relic/agent/instrumentation/rake.rb +0 -1
  195. data/lib/new_relic/agent/instrumentation/redis/chain.rb +0 -1
  196. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +0 -1
  197. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +0 -1
  198. data/lib/new_relic/agent/instrumentation/redis.rb +0 -1
  199. data/lib/new_relic/agent/instrumentation/resque/chain.rb +0 -1
  200. data/lib/new_relic/agent/instrumentation/resque/helper.rb +0 -1
  201. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +0 -1
  202. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +0 -1
  203. data/lib/new_relic/agent/instrumentation/resque.rb +0 -1
  204. data/lib/new_relic/agent/instrumentation/sequel.rb +0 -1
  205. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +0 -1
  206. data/lib/new_relic/agent/instrumentation/sidekiq.rb +2 -2
  207. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +0 -1
  208. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +0 -1
  209. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +0 -1
  210. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +0 -1
  211. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +0 -1
  212. data/lib/new_relic/agent/instrumentation/sinatra.rb +1 -1
  213. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -1
  214. data/lib/new_relic/agent/instrumentation/thread/chain.rb +0 -1
  215. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +1 -1
  216. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +0 -1
  217. data/lib/new_relic/agent/instrumentation/thread.rb +0 -1
  218. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +0 -1
  219. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +1 -1
  220. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +0 -1
  221. data/lib/new_relic/agent/instrumentation/tilt.rb +0 -1
  222. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +0 -1
  223. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +3 -4
  224. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +0 -1
  225. data/lib/new_relic/agent/instrumentation/typhoeus.rb +0 -1
  226. data/lib/new_relic/agent/instrumentation.rb +0 -1
  227. data/lib/new_relic/agent/internal_agent_error.rb +0 -1
  228. data/lib/new_relic/agent/javascript_instrumentor.rb +2 -2
  229. data/lib/new_relic/agent/linking_metadata.rb +0 -1
  230. data/lib/new_relic/agent/local_log_decorator.rb +1 -1
  231. data/lib/new_relic/agent/log_event_aggregator.rb +1 -1
  232. data/lib/new_relic/agent/log_once.rb +0 -1
  233. data/lib/new_relic/agent/log_priority.rb +0 -1
  234. data/lib/new_relic/agent/logging.rb +0 -1
  235. data/lib/new_relic/agent/memory_logger.rb +0 -1
  236. data/lib/new_relic/agent/messaging.rb +2 -2
  237. data/lib/new_relic/agent/method_tracer.rb +4 -1
  238. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -2
  239. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +0 -1
  240. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  241. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +0 -1
  242. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +0 -1
  243. data/lib/new_relic/agent/monitors.rb +0 -1
  244. data/lib/new_relic/agent/new_relic_service/encoders.rb +0 -1
  245. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +0 -1
  246. data/lib/new_relic/agent/new_relic_service/marshaller.rb +0 -1
  247. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +0 -1
  248. data/lib/new_relic/agent/new_relic_service.rb +195 -142
  249. data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +1 -2
  250. data/lib/new_relic/agent/null_logger.rb +0 -1
  251. data/lib/new_relic/agent/obfuscator.rb +1 -2
  252. data/lib/new_relic/agent/parameter_filtering.rb +0 -1
  253. data/lib/new_relic/agent/payload_metric_mapping.rb +0 -1
  254. data/lib/new_relic/agent/pipe_channel_manager.rb +2 -1
  255. data/lib/new_relic/agent/pipe_service.rb +0 -1
  256. data/lib/new_relic/agent/prepend_supportability.rb +0 -1
  257. data/lib/new_relic/agent/priority_sampled_buffer.rb +2 -3
  258. data/lib/new_relic/agent/range_extensions.rb +0 -1
  259. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +0 -1
  260. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +0 -1
  261. data/lib/new_relic/agent/rules_engine.rb +1 -1
  262. data/lib/new_relic/agent/sampler.rb +0 -1
  263. data/lib/new_relic/agent/sampler_collection.rb +0 -1
  264. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  265. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +0 -1
  266. data/lib/new_relic/agent/samplers/memory_sampler.rb +10 -6
  267. data/lib/new_relic/agent/samplers/object_sampler.rb +0 -1
  268. data/lib/new_relic/agent/samplers/vm_sampler.rb +2 -1
  269. data/lib/new_relic/agent/span_event_aggregator.rb +0 -1
  270. data/lib/new_relic/agent/span_event_primitive.rb +1 -2
  271. data/lib/new_relic/agent/sql_sampler.rb +0 -1
  272. data/lib/new_relic/agent/stats.rb +13 -3
  273. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +1 -2
  274. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -2
  275. data/lib/new_relic/agent/stats_engine.rb +0 -1
  276. data/lib/new_relic/agent/synthetics_event_aggregator.rb +0 -1
  277. data/lib/new_relic/agent/system_info.rb +4 -2
  278. data/lib/new_relic/agent/threading/agent_thread.rb +3 -3
  279. data/lib/new_relic/agent/threading/backtrace_node.rb +0 -1
  280. data/lib/new_relic/agent/threading/backtrace_service.rb +1 -1
  281. data/lib/new_relic/agent/threading/thread_profile.rb +4 -2
  282. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +0 -1
  283. data/lib/new_relic/agent/tracer.rb +6 -3
  284. data/lib/new_relic/agent/transaction/abstract_segment.rb +5 -3
  285. data/lib/new_relic/agent/transaction/datastore_segment.rb +3 -1
  286. data/lib/new_relic/agent/transaction/distributed_tracer.rb +4 -1
  287. data/lib/new_relic/agent/transaction/distributed_tracing.rb +1 -1
  288. data/lib/new_relic/agent/transaction/external_request_segment.rb +2 -2
  289. data/lib/new_relic/agent/transaction/message_broker_segment.rb +1 -1
  290. data/lib/new_relic/agent/transaction/request_attributes.rb +0 -1
  291. data/lib/new_relic/agent/transaction/segment.rb +1 -1
  292. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +0 -1
  293. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +0 -1
  294. data/lib/new_relic/agent/transaction/trace.rb +4 -1
  295. data/lib/new_relic/agent/transaction/trace_builder.rb +0 -1
  296. data/lib/new_relic/agent/transaction/trace_context.rb +0 -1
  297. data/lib/new_relic/agent/transaction/trace_node.rb +3 -3
  298. data/lib/new_relic/agent/transaction/tracing.rb +0 -1
  299. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +2 -2
  300. data/lib/new_relic/agent/transaction.rb +13 -5
  301. data/lib/new_relic/agent/transaction_error_primitive.rb +0 -1
  302. data/lib/new_relic/agent/transaction_event_aggregator.rb +1 -1
  303. data/lib/new_relic/agent/transaction_event_primitive.rb +0 -1
  304. data/lib/new_relic/agent/transaction_event_recorder.rb +1 -2
  305. data/lib/new_relic/agent/transaction_metrics.rb +1 -2
  306. data/lib/new_relic/agent/transaction_sampler.rb +0 -1
  307. data/lib/new_relic/agent/transaction_time_aggregator.rb +2 -2
  308. data/lib/new_relic/agent/utilization/aws.rb +0 -1
  309. data/lib/new_relic/agent/utilization/azure.rb +1 -2
  310. data/lib/new_relic/agent/utilization/gcp.rb +1 -2
  311. data/lib/new_relic/agent/utilization/pcf.rb +2 -2
  312. data/lib/new_relic/agent/utilization/vendor.rb +3 -2
  313. data/lib/new_relic/agent/utilization_data.rb +3 -1
  314. data/lib/new_relic/agent/vm/jruby_vm.rb +0 -1
  315. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +0 -1
  316. data/lib/new_relic/agent/vm/mri_vm.rb +35 -23
  317. data/lib/new_relic/agent/vm/snapshot.rb +1 -2
  318. data/lib/new_relic/agent/vm.rb +0 -1
  319. data/lib/new_relic/agent/worker_loop.rb +0 -1
  320. data/lib/new_relic/agent.rb +17 -18
  321. data/lib/new_relic/cli/command.rb +1 -2
  322. data/lib/new_relic/cli/commands/deployments.rb +72 -21
  323. data/lib/new_relic/cli/commands/install.rb +1 -1
  324. data/lib/new_relic/coerce.rb +6 -1
  325. data/lib/new_relic/collection_helper.rb +2 -2
  326. data/lib/new_relic/constants.rb +0 -1
  327. data/lib/new_relic/control/class_methods.rb +0 -1
  328. data/lib/new_relic/control/frameworks/external.rb +0 -1
  329. data/lib/new_relic/control/frameworks/rails.rb +5 -1
  330. data/lib/new_relic/control/frameworks/rails3.rb +0 -1
  331. data/lib/new_relic/control/frameworks/rails4.rb +0 -1
  332. data/lib/new_relic/control/frameworks/rails_notifications.rb +0 -1
  333. data/lib/new_relic/control/frameworks/ruby.rb +0 -1
  334. data/lib/new_relic/control/frameworks/sinatra.rb +0 -1
  335. data/lib/new_relic/control/frameworks.rb +0 -1
  336. data/lib/new_relic/control/instance_methods.rb +17 -40
  337. data/lib/new_relic/control/instrumentation.rb +2 -1
  338. data/lib/new_relic/control/private_instance_methods.rb +48 -0
  339. data/lib/new_relic/control/server_methods.rb +0 -1
  340. data/lib/new_relic/control.rb +0 -1
  341. data/lib/new_relic/delayed_job_injection.rb +0 -1
  342. data/lib/new_relic/dependency_detection.rb +5 -4
  343. data/lib/new_relic/environment_report.rb +23 -14
  344. data/lib/new_relic/helper.rb +2 -2
  345. data/lib/new_relic/language_support.rb +3 -3
  346. data/lib/new_relic/latest_changes.rb +4 -4
  347. data/lib/new_relic/local_environment.rb +9 -4
  348. data/lib/new_relic/metric_data.rb +27 -22
  349. data/lib/new_relic/metric_spec.rb +2 -1
  350. data/lib/new_relic/noticed_error.rb +3 -6
  351. data/lib/new_relic/rack/agent_hooks.rb +0 -1
  352. data/lib/new_relic/rack/agent_middleware.rb +2 -1
  353. data/lib/new_relic/rack/browser_monitoring.rb +131 -123
  354. data/lib/new_relic/rack.rb +0 -1
  355. data/lib/new_relic/recipes/capistrano3.rb +2 -59
  356. data/lib/new_relic/recipes/capistrano_legacy.rb +1 -2
  357. data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
  358. data/lib/new_relic/recipes.rb +0 -1
  359. data/lib/new_relic/supportability_helper.rb +1 -2
  360. data/lib/new_relic/traced_thread.rb +1 -1
  361. data/lib/new_relic/version.rb +2 -3
  362. data/lib/newrelic_rpm.rb +0 -1
  363. data/lib/sequel/extensions/newrelic_instrumentation.rb +2 -3
  364. data/lib/sequel/plugins/newrelic_instrumentation.rb +0 -1
  365. data/lib/tasks/all.rb +0 -1
  366. data/lib/tasks/config.rake +4 -113
  367. data/lib/tasks/coverage_report.rake +14 -19
  368. data/lib/tasks/{config.html.erb → helpers/config.html.erb} +0 -0
  369. data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
  370. data/lib/tasks/helpers/format.rb +123 -0
  371. data/lib/tasks/helpers/matches.rb +12 -0
  372. data/lib/tasks/helpers/prompt.rb +24 -0
  373. data/lib/tasks/helpers/removers.rb +33 -0
  374. data/lib/tasks/install.rake +0 -1
  375. data/lib/tasks/instrumentation_generator/README.md +1 -1
  376. data/lib/tasks/instrumentation_generator/instrumentation.thor +45 -17
  377. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +0 -1
  378. data/lib/tasks/instrumentation_generator/templates/chain.tt +2 -2
  379. data/lib/tasks/instrumentation_generator/templates/chain_method.tt +3 -2
  380. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +0 -1
  381. data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +2 -2
  382. data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +1 -1
  383. data/lib/tasks/instrumentation_generator/templates/prepend.tt +1 -2
  384. data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +1 -1
  385. data/lib/tasks/instrumentation_generator/templates/test.tt +1 -2
  386. data/lib/tasks/multiverse.rake +0 -1
  387. data/lib/tasks/multiverse.rb +3 -29
  388. data/lib/tasks/newrelic.rb +0 -1
  389. data/lib/tasks/tests.rake +3 -8
  390. data/newrelic.yml +23 -4
  391. data/newrelic_rpm.gemspec +8 -9
  392. data/recipes/newrelic.rb +0 -1
  393. data/test/agent_helper.rb +23 -35
  394. metadata +20 -80
  395. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -10,9 +9,10 @@ module NewRelic::Agent::Instrumentation
10
9
  include NewRelic::Agent::Instrumentation::<%= @class_name %>
11
10
 
12
11
  alias_method(:<%= @method.downcase %>_without_new_relic, :<%= @method.downcase %>)
12
+ alias_method(:<%= @method.downcase %>, :<%= @method.downcase %>_with_new_relic)
13
13
 
14
14
  def <%= @method.downcase %><%= "(#{@args})" unless @args.empty? %>
15
- <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %> do
15
+ <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> do
16
16
  <%= @method.downcase %>_without_new_relic<%= "(#{@args})" unless @args.empty? %>
17
17
  end
18
18
  end
@@ -1,7 +1,8 @@
1
- alias_method :<%= @method.downcase %>_without_new_relic, :<%= @method.downcase %>
1
+ alias_method(:<%= @method.downcase %>_without_new_relic, :<%= @method.downcase %>)
2
+ alias_method(:<%= @method.downcase %>, :<%= @method.downcase %>_with_new_relic)
2
3
 
3
4
  def <%= @method.downcase %><%= "(#{@args})" unless @args.empty? %>
4
- <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %> do
5
+ <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> do
5
6
  <%= @method.downcase %>_without_new_relic<%= "(#{@args})" unless @args.empty? %>
6
7
  end
7
8
  end
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -6,8 +5,9 @@
6
5
  module NewRelic::Agent::Instrumentation
7
6
  module <%= @class_name %>
8
7
 
9
- def <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %>
8
+ def <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %>
10
9
  # add instrumentation content here
10
+ yield
11
11
  end
12
12
  end
13
13
  end
@@ -1,3 +1,3 @@
1
- def <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %>
1
+ def <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %>
2
2
  # add instrumentation content here
3
3
  end
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -8,7 +7,7 @@ module NewRelic::Agent::Instrumentation
8
7
  include NewRelic::Agent::Instrumentation::<%= @class_name %>
9
8
 
10
9
  def <%= @method.downcase %><%= "(#{@args})" unless @args.empty? %>
11
- <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %> { super }
10
+ <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> { super }
12
11
  end
13
12
  end
14
13
  end
@@ -1,3 +1,3 @@
1
1
  def <%= @method.downcase %><%= "(#{@args})" unless @args.empty? %>
2
- <%= @method.downcase %>_with_tracing<%= "(#{@args})" unless @args.empty? %> { super }
2
+ <%= @method.downcase %>_with_new_relic<%= "(#{@args})" unless @args.empty? %> { super }
3
3
  end
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -12,5 +11,5 @@ class <%= @class_name %>InstrumentationTest < Minitest::Test
12
11
  NewRelic::Agent.instance.stats_engine.clear_stats
13
12
  end
14
13
 
15
- # Add tests Here
14
+ # Add tests here
16
15
  end
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -36,6 +35,9 @@
36
35
  # # Runs with a specific test seed
37
36
  # bundle exec rake test:multiverse[my_gem,seed=1337]
38
37
 
38
+ require_relative 'helpers/removers'
39
+ include Removers
40
+
39
41
  namespace :test do
40
42
  desc "Run functional test suite for New Relic"
41
43
  task :multiverse, [:suite, :param1, :param2, :param3, :param4] => ['multiverse:env'] do |_, args|
@@ -43,34 +45,6 @@ namespace :test do
43
45
  end
44
46
 
45
47
  namespace :multiverse do
46
- def remove_local_multiverse_databases
47
- list_databases_command = %(echo "show databases" | mysql -u root)
48
- databases = `#{list_databases_command}`.chomp!.split("\n").select { |s| s =~ /multiverse/ }
49
- databases.each do |database|
50
- puts "Dropping #{database}"
51
- `echo "drop database #{database}" | mysql -u root`
52
- end
53
- rescue => error
54
- puts "ERROR: Cannot get MySQL databases..."
55
- puts error.message
56
- end
57
-
58
- def remove_generated_gemfiles
59
- file_path = File.expand_path("test/multiverse/suites")
60
- Dir.glob(File.join(file_path, "**", "Gemfile*")).each do |fn|
61
- puts "Removing #{fn.gsub(file_path, '.../suites')}"
62
- FileUtils.rm(fn)
63
- end
64
- end
65
-
66
- def remove_generated_gemfile_lockfiles
67
- file_path = File.expand_path("test/environments")
68
- Dir.glob(File.join(file_path, "**", "Gemfile.lock")).each do |fn|
69
- puts "Removing #{fn.gsub(file_path, '.../environments')}"
70
- FileUtils.rm(fn)
71
- end
72
- end
73
-
74
48
  task :env do
75
49
  # ENV['SUITES_DIRECTORY'] = File.expand_path('../../test/multiverse/suites', __FILE__)
76
50
  require File.expand_path('../../../test/multiverse/lib/multiverse', __FILE__)
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
data/lib/tasks/tests.rake CHANGED
@@ -1,8 +1,10 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
5
4
 
5
+ require_relative 'helpers/matches'
6
+ include Matches
7
+
6
8
  begin
7
9
  require 'rake/testtask'
8
10
  rescue LoadError
@@ -10,13 +12,6 @@ end
10
12
 
11
13
  if defined? Rake::TestTask
12
14
  namespace :test do
13
- def look_for_seed(tasks)
14
- matches = tasks.map { |t| /(seed=.*?)[,\]]/.match(t) }.compact
15
- if matches.any?
16
- matches.first[1]
17
- end
18
- end
19
-
20
15
  tasks = Rake.application.top_level_tasks
21
16
  ENV["TESTOPTS"] ||= ""
22
17
  if tasks.any? { |t| t.include?("verbose") }
data/newrelic.yml CHANGED
@@ -145,7 +145,7 @@ common: &default_settings
145
145
 
146
146
  # Specify a maximum number of custom Insights events to buffer in memory at a
147
147
  # time.
148
- # custom_insights_events.max_samples_stored: 1000
148
+ # custom_insights_events.max_samples_stored: 3000
149
149
 
150
150
  # If false, the agent will not add database_name parameter to transaction or #
151
151
  # slow sql traces.
@@ -271,7 +271,7 @@ common: &default_settings
271
271
 
272
272
  # Forces the exit handler that sends all cached data to collector before
273
273
  # shutting down to be installed regardless of detecting scenarios where it
274
- # generally should bot be. Known use-case for this option is where Sinatra is
274
+ # generally should not be. Known use-case for this option is where Sinatra is
275
275
  # running as an embedded service within another framework and the agent is
276
276
  # detecting the Sinatra app and skipping the at_exit handler as a result.
277
277
  # Sinatra classically runs the entire application in an at_exit block and would
@@ -301,6 +301,15 @@ common: &default_settings
301
301
  # Configures the TCP/IP port for the Trace Observer Host
302
302
  # infinite_tracing.trace_observer.port: 443
303
303
 
304
+ # Configure the compression level for data sent to the Trace Observer
305
+ # May be one of [none|low|medium|high]
306
+ # By default, compression is not used (level = none)
307
+ # infinite_tracing.compression_level: none
308
+
309
+ # If true, data sent to the Trace Observer will be batched instead of
310
+ # the default of each span being sent individually
311
+ # infinite_tracing.batching: false
312
+
304
313
  # Controls auto-instrumentation of bunny at start up.
305
314
  # May be one of [auto|prepend|chain|disabled].
306
315
  # instrumentation.bunny: auto
@@ -313,6 +322,10 @@ common: &default_settings
313
322
  # May be one of [auto|prepend|chain|disabled].
314
323
  # instrumentation.delayed_job: auto
315
324
 
325
+ # Controls auto-instrumentation of the elasticsearch library at start up.
326
+ # May be one of [auto|prepend|chain|disabled].
327
+ # instrumentation.elasticsearch: auto
328
+
316
329
  # Controls auto-instrumentation of Excon at start up.
317
330
  # May be one of [enabled|disabled].
318
331
  # instrumentation.excon: auto
@@ -399,7 +412,7 @@ common: &default_settings
399
412
  # May be one of [auto|prepend|chain|disabled].
400
413
  # instrumentation.typhoeus: auto
401
414
 
402
- # Controls auto-instrumentation of the Thread class at start up to allow the agent to correctly nest spans inside of an asyncronous transaction.
415
+ # Controls auto-instrumentation of the Thread class at start up to allow the agent to correctly nest spans inside of an asynchronous transaction.
403
416
  # May be one of [auto|prepend|chain|disabled].
404
417
  # instrumentation.thread: auto
405
418
 
@@ -425,7 +438,7 @@ common: &default_settings
425
438
  # instrumentation.grpc.host_denylist: ""
426
439
 
427
440
  # A dictionary of label names and values that will be applied to the data sent
428
- # from this agent. May also be expressed asa semicolon-delimited ; string of
441
+ # from this agent. May also be expressed as a semicolon-delimited ; string of
429
442
  # colon-separated : pairs.
430
443
  # For example,<var>Server</var>:<var>One</var>;<var>Data Center</var>:<var>Primary</var>.
431
444
  # labels: ""
@@ -450,6 +463,12 @@ common: &default_settings
450
463
  # If true, the agent obfuscates Mongo queries in transaction traces.
451
464
  # mongo.obfuscate_queries: true
452
465
 
466
+ # If true, the agent captures Elasticsearch queries in transaction traces.
467
+ # elasticsearch.capture_queries: true
468
+
469
+ # If true, the agent obfuscates Elasticsearch queries in transaction traces.
470
+ # elasticsearch.obfuscate_queries: true
471
+
453
472
  # When true, the agent transmits data about your app to the New Relic collector.
454
473
  # monitor_mode: true
455
474
 
data/newrelic_rpm.gemspec CHANGED
@@ -1,4 +1,3 @@
1
- #-*- coding: utf-8 -*-
2
1
  # frozen_string_literal: true
3
2
 
4
3
  lib = File.expand_path('../lib', __FILE__)
@@ -22,7 +21,7 @@ Gem or plugin, hosted on
22
21
  https://github.com/newrelic/newrelic-ruby-agent/
23
22
  EOS
24
23
  s.email = "support@newrelic.com"
25
- s.executables = ["newrelic_cmd", "newrelic", "nrdebug"]
24
+ s.executables = %w[newrelic_cmd newrelic nrdebug]
26
25
  s.extra_rdoc_files = [
27
26
  "CHANGELOG.md",
28
27
  "LICENSE",
@@ -50,16 +49,16 @@ https://github.com/newrelic/newrelic-ruby-agent/
50
49
  s.add_development_dependency 'bundler'
51
50
  s.add_development_dependency 'feedjira', '3.2.1' unless ENV['CI'] || RUBY_VERSION < '2.5' # for Gabby
52
51
  s.add_development_dependency 'httparty' unless ENV['CI'] # for perf tests and Gabby
53
- s.add_development_dependency 'minitest', '5.3.3'
52
+ s.add_development_dependency 'minitest', "#{RUBY_VERSION >= '2.7.0' ? '5.3.3' : '4.7.5'}"
54
53
  s.add_development_dependency 'minitest-stub-const', '0.6'
55
54
  s.add_development_dependency 'mocha', '~> 1.14.0'
56
55
  s.add_development_dependency 'pry' unless ENV['CI']
57
56
  s.add_development_dependency 'rake', '12.3.3'
58
- s.add_development_dependency 'rubocop'
59
- s.add_development_dependency 'rubocop-minitest'
60
- s.add_development_dependency 'rubocop-performance'
61
- s.add_development_dependency 'rubocop-rake' if RUBY_VERSION >= '2.4.0'
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'
62
61
  s.add_development_dependency 'simplecov' if RUBY_VERSION >= '2.7.0'
63
- s.add_development_dependency 'thor'
64
- s.add_development_dependency 'yard'
62
+ s.add_development_dependency 'thor' unless ENV['CI']
63
+ s.add_development_dependency 'yard', "#{RUBY_VERSION < '2.3.0' ? '0.9.26' : '> 0.9.26'}"
65
64
  end
data/recipes/newrelic.rb CHANGED
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
data/test/agent_helper.rb CHANGED
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  # This file is distributed under New Relic's license terms.
3
2
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
4
3
  # frozen_string_literal: true
@@ -31,15 +30,8 @@ def fake_guid(length = 16)
31
30
  NewRelic::Agent::GuidGenerator.generate_guid(length)
32
31
  end
33
32
 
34
- def assert_match(matcher, obj, msg = nil)
35
- msg = message(msg) { "Expected #{mu_pp(matcher)} to match #{mu_pp(obj)}" }
36
- assert_respond_to matcher, :"=~"
37
- matcher = Regexp.new(Regexp.escape(matcher)) if String === matcher
38
- assert matcher =~ obj, msg
39
- end
40
-
41
33
  def assert_between(floor, ceiling, value, message = "expected #{floor} <= #{value} <= #{ceiling}")
42
- assert((floor <= value && value <= ceiling), message)
34
+ assert((floor <= value && value <= ceiling), message) # rubocop:disable Minitest/AssertWithExpectedArgument
43
35
  end
44
36
 
45
37
  def assert_in_delta(expected, actual, delta)
@@ -56,8 +48,7 @@ end
56
48
 
57
49
  def assert_has_traced_error(error_class)
58
50
  errors = harvest_error_traces!
59
- assert \
60
- errors.find { |e| e.exception_class_name == error_class.name } != nil, \
51
+ refute_nil errors.find { |e| e.exception_class_name == error_class.name }, \
61
52
  "Didn't find error of class #{error_class}"
62
53
  end
63
54
 
@@ -89,23 +80,17 @@ def last_error_event
89
80
  harvest_error_events!.last.last
90
81
  end
91
82
 
92
- unless defined? assert_block
93
- def assert_block(*msgs)
94
- assert yield, *msgs
95
- end
96
- end
97
-
98
83
  unless defined? assert_includes
99
84
  def assert_includes(collection, member, msg = nil)
100
85
  msg = "Expected #{collection.inspect} to include #{member.inspect}"
101
- assert_block(msg) { collection.include?(member) }
86
+ assert_includes collection, member, msg
102
87
  end
103
88
  end
104
89
 
105
90
  unless defined? assert_not_includes
106
91
  def assert_not_includes(collection, member, msg = nil)
107
92
  msg = "Expected #{collection.inspect} not to include #{member.inspect}"
108
- assert !collection.include?(member), msg
93
+ refute_includes collection, member, msg
109
94
  end
110
95
  end
111
96
 
@@ -122,8 +107,7 @@ end
122
107
 
123
108
  def assert_log_contains(log, message)
124
109
  lines = log.array
125
- failure_message = "Did not find '#{message}' in log. Log contained:\n#{lines.join('')}"
126
- assert (lines.any? { |line| line.match(message) }), failure_message
110
+ assert (lines.any? { |line| line.match(message) })
127
111
  end
128
112
 
129
113
  def assert_audit_log_contains(audit_log_contents, needle)
@@ -133,7 +117,7 @@ def assert_audit_log_contains(audit_log_contents, needle)
133
117
  regex = /[:"]/
134
118
  needle = needle.gsub(regex, '')
135
119
  haystack = audit_log_contents.gsub(regex, '')
136
- assert(haystack.include?(needle), "Expected log to contain '#{needle}'")
120
+ assert_includes(haystack, needle, "Expected log to contain '#{needle}'")
137
121
  end
138
122
 
139
123
  # Because we don't generate a strictly machine-readable representation of
@@ -243,7 +227,7 @@ def assert_metrics_recorded(expected)
243
227
  msg += "\nDid find specs: [\n#{matches.join(",\n")}\n]" unless matches.empty?
244
228
  msg += "\nAll specs in there were: #{format_metric_spec_list(all_specs)}"
245
229
 
246
- assert(actual_stats, msg)
230
+ assert(actual_stats, msg) # rubocop:disable Minitest/AssertWithExpectedArgument
247
231
  end
248
232
  assert_stats_has_values(actual_stats, expected_spec, expected_attrs)
249
233
  end
@@ -276,12 +260,12 @@ def assert_metrics_recorded_exclusive(expected, options = {})
276
260
  expected_metrics = expected.keys.map { |s| metric_spec_from_specish(s) }
277
261
 
278
262
  unexpected_metrics = recorded_metrics - expected_metrics
279
- unexpected_metrics.reject! { |m| m.name =~ /GC\/Transaction/ }
263
+ unexpected_metrics.reject! { |m| m.name.include?('GC/Transaction') }
280
264
 
281
265
  assert_equal(0, unexpected_metrics.size, "Found unexpected metrics: #{format_metric_spec_list(unexpected_metrics)}")
282
266
  end
283
267
 
284
- def assert_newrelic_metdata_present(metadata)
268
+ def assert_newrelic_metadata_present(metadata)
285
269
  assert metadata.key?('newrelic')
286
270
  refute_nil metadata['newrelic']
287
271
  end
@@ -316,7 +300,7 @@ def assert_metrics_not_recorded(not_expected)
316
300
  found_but_not_expected << spec
317
301
  end
318
302
  end
319
- assert_equal([], found_but_not_expected, "Found unexpected metrics: #{format_metric_spec_list(found_but_not_expected)}")
303
+ assert_empty(found_but_not_expected, "Found unexpected metrics: #{format_metric_spec_list(found_but_not_expected)}")
320
304
  end
321
305
 
322
306
  alias :refute_metrics_recorded :assert_metrics_not_recorded
@@ -327,8 +311,7 @@ def assert_no_metrics_match(regex)
327
311
  matching_metrics << metric if metric.match(regex)
328
312
  end
329
313
 
330
- assert_equal(
331
- [],
314
+ assert_empty(
332
315
  matching_metrics,
333
316
  "Found unexpected metrics:\n" + matching_metrics.map { |m| " '#{m}'" }.join("\n") + "\n\n"
334
317
  )
@@ -345,17 +328,17 @@ end
345
328
 
346
329
  def assert_truthy(expected, msg = nil)
347
330
  msg ||= "Expected #{expected.inspect} to be truthy"
348
- assert !!expected, msg
331
+ refute !expected, msg
349
332
  end
350
333
 
351
334
  def assert_falsy(expected, msg = nil)
352
335
  msg ||= "Expected #{expected.inspect} to be falsy"
353
- assert !expected, msg
336
+ refute expected, msg
354
337
  end
355
338
 
356
339
  unless defined? assert_false
357
340
  def assert_false(expected)
358
- assert_equal false, expected
341
+ refute expected
359
342
  end
360
343
  end
361
344
 
@@ -386,8 +369,7 @@ def in_transaction(*args, &blk)
386
369
  category = (opts && opts.delete(:category)) || :other
387
370
 
388
371
  # At least one test passes `:transaction_name => nil`, so handle it gently
389
- name = opts.key?(:transaction_name) ? opts.delete(:transaction_name) :
390
- args.first || 'dummy'
372
+ name = opts.key?(:transaction_name) ? opts.delete(:transaction_name) : args.first || 'dummy'
391
373
 
392
374
  state = NewRelic::Agent::Tracer.state
393
375
  txn = nil
@@ -412,7 +394,7 @@ def with_disabled_defaults_transformer(key)
412
394
  end
413
395
 
414
396
  # Convenience wrapper to stand up a transaction and provide a segment within
415
- # that transaction to work with. The same arguements as provided to in_transaction
397
+ # that transaction to work with. The same arguments as provided to in_transaction
416
398
  # may be supplied.
417
399
  def with_segment(*args, &blk)
418
400
  segment = nil
@@ -429,6 +411,7 @@ end
429
411
  def build_deferred_error_attributes(segment)
430
412
  return unless segment.noticed_error
431
413
  return if segment.noticed_error_attributes.frozen?
414
+
432
415
  segment.noticed_error.build_error_attributes
433
416
  end
434
417
 
@@ -472,6 +455,7 @@ end
472
455
 
473
456
  def last_transaction_trace
474
457
  return unless last_sample = NewRelic::Agent.agent.transaction_sampler.last_sample
458
+
475
459
  NewRelic::Agent::Transaction::TraceBuilder.build_trace(last_sample)
476
460
  end
477
461
 
@@ -657,6 +641,7 @@ def constant_path(name, opts = {})
657
641
  if !path.last.constants.include?(part.to_sym)
658
642
  return allow_partial ? path : nil
659
643
  end
644
+
660
645
  path << path.last.const_get(part)
661
646
  end
662
647
  path
@@ -673,6 +658,7 @@ def undefine_constant(constant_symbol)
673
658
  parent = get_parent(const_str)
674
659
  const_name = const_str.gsub(/.*::/, '')
675
660
  return yield unless parent && parent.constants.include?(const_name.to_sym)
661
+
676
662
  removed_constant = parent.send(:remove_const, const_name)
677
663
  yield
678
664
  ensure
@@ -871,7 +857,7 @@ def load_cross_agent_test(name)
871
857
  data = File.read(test_file_path)
872
858
  data.gsub!('callCount', 'call_count')
873
859
  data = ::JSON.load(data)
874
- data.each { |testcase| testcase['testname'].gsub!(' ', '_') if String === testcase['testname'] }
860
+ data.each { |testcase| testcase['testname'].tr!(' ', '_') if String === testcase['testname'] }
875
861
  data
876
862
  end
877
863
 
@@ -947,6 +933,7 @@ def mock_http_response(headers, wrap_it = true)
947
933
  net_http_resp.add_field(key.to_s, value)
948
934
  end
949
935
  return net_http_resp unless wrap_it
936
+
950
937
  NewRelic::Agent::HTTPClients::NetHTTPResponse.new(net_http_resp)
951
938
  end
952
939
 
@@ -992,6 +979,7 @@ def refute_raises(*exp)
992
979
  rescue MiniTest::Skip => e
993
980
  puts "SKIP REPORTS: #{e.inspect}"
994
981
  return e if exp.include?(MiniTest::Skip)
982
+
995
983
  raise e
996
984
  rescue Exception => e
997
985
  puts "EXCEPTION RAISED: #{e.inspect}\n#{e.backtrace}"