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
@@ -0,0 +1,69 @@
1
+ # This file is distributed under New Relic's license terms.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
+
5
+ module SendDeployment
6
+ def send_deployment_notification_to_newrelic
7
+ require 'new_relic/cli/command'
8
+ debug("Uploading deployment to New Relic")
9
+ NewRelic::Cli::Deployments.new(deploy_options).run
10
+ info("Uploaded deployment information to New Relic")
11
+ rescue NewRelic::Cli::Command::CommandFailure => e
12
+ info(e.message)
13
+ rescue => e
14
+ info("Error creating New Relic deployment (#{e})\n#{e.backtrace.join("\n")}")
15
+ end
16
+
17
+ private
18
+
19
+ def deploy_options
20
+ {
21
+ :environment => fetch_environment,
22
+ :revision => fetch_rev,
23
+ :changelog => fetch_changelog,
24
+ :description => fetch(:newrelic_desc),
25
+ :appname => fetch(:newrelic_appname),
26
+ :user => fetch(:newrelic_user),
27
+ :license_key => fetch(:newrelic_license_key)
28
+ }
29
+ end
30
+
31
+ def fetch_changelog
32
+ has_scm? ? fetch(:newrelic_changelog) : lookup_changelog
33
+ end
34
+
35
+ def fetch_environment
36
+ fetch(:newrelic_rails_env, fetch(:rack_env, fetch(:rails_env, fetch(:stage, "production"))))
37
+ end
38
+
39
+ def fetch_rev
40
+ newrelic_rev = fetch(:newrelic_revision)
41
+ has_scm? && !newrelic_rev ? fetch(:current_revision) : newrelic_rev
42
+ end
43
+
44
+ def has_scm?
45
+ has_scm_from_plugin? || has_scm_from_config?
46
+ end
47
+
48
+ def has_scm_from_config?
49
+ defined?(scm) && !scm.nil? && scm != :none
50
+ end
51
+
52
+ def has_scm_from_plugin?
53
+ respond_to?(:scm_plugin_installed?) && scm_plugin_installed?
54
+ end
55
+
56
+ def lookup_changelog
57
+ previous_revision = fetch(:previous_revision)
58
+ current_revision = fetch(:current_revision)
59
+ return unless current_revision && previous_revision
60
+
61
+ debug("Retrieving changelog for New Relic Deployment details")
62
+
63
+ if Rake::Task.task_defined?("git:check")
64
+ log_command = "git --no-pager log --no-color --pretty=format:' * %an: %s' " +
65
+ "--abbrev-commit --no-merges #{previous_revision}..#{current_revision}"
66
+ `#{log_command}`
67
+ end
68
+ end
69
+ 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
@@ -72,7 +71,7 @@ module NewRelic
72
71
  def valid_api_argument_class?(arg, name, klass)
73
72
  return true if arg.is_a?(klass)
74
73
 
75
- caller_location = caller_locations.first.label
74
+ caller_location = caller_locations(1..1).first.label
76
75
 
77
76
  message = "Bad argument passed to ##{caller_location}. " \
78
77
  "Expected #{klass} for `#{name}` but got #{arg.class}"
@@ -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
@@ -29,6 +28,7 @@ module NewRelic
29
28
 
30
29
  def create_traced_block(*args, &block)
31
30
  return block if NewRelic::Agent.config[:'instrumentation.thread.tracing'] # if this is on, don't double trace
31
+
32
32
  NewRelic::Agent::Tracer.thread_block_with_current_transaction(*args, &block)
33
33
  end
34
34
  end
@@ -1,5 +1,4 @@
1
1
  #!/usr/bin/ruby
2
- # encoding: utf-8
3
2
  # This file is distributed under New Relic's license terms.
4
3
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
5
4
  # frozen_string_literal: true
@@ -7,8 +6,8 @@
7
6
  module NewRelic
8
7
  module VERSION # :nodoc:
9
8
  MAJOR = 8
10
- MINOR = 10
11
- TINY = 1
9
+ MINOR = 12
10
+ TINY = 0
12
11
 
13
12
  STRING = "#{MAJOR}.#{MINOR}.#{TINY}"
14
13
  end
data/lib/newrelic_rpm.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
@@ -1,5 +1,4 @@
1
1
  # -*- ruby -*-
2
- # encoding: utf-8
3
2
  # This file is distributed under New Relic's license terms.
4
3
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
5
4
  # frozen_string_literal: true
@@ -63,7 +62,7 @@ module Sequel
63
62
  # block in the sequel Plugin instrumentation. A simple ORM operation from the Plugin
64
63
  # instrumentation may trigger a number of calls to this method. We want to append
65
64
  # the statements that come from the disable_all_tracing block into this node's
66
- # statement, otherwise we would end up ovewriting the sql statement with the
65
+ # statement, otherwise we would end up overwriting the sql statement with the
67
66
  # last one executed.
68
67
  def notice_sql(sql)
69
68
  return unless txn = NewRelic::Agent::Tracer.current_transaction
@@ -83,7 +82,7 @@ module Sequel
83
82
  ].freeze
84
83
 
85
84
  def explainer_for(sql)
86
- Proc.new do |*|
85
+ proc do |*|
87
86
  if THREAD_SAFE_CONNECTION_POOL_CLASSES.include?(self.pool.class)
88
87
  self[sql].explain
89
88
  else
@@ -1,5 +1,4 @@
1
1
  # -*- ruby -*-
2
- # encoding: utf-8
3
2
  # This file is distributed under New Relic's license terms.
4
3
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
5
4
  # frozen_string_literal: true
data/lib/tasks/all.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
@@ -1,12 +1,12 @@
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/format'
6
+ include Format
7
+
6
8
  namespace :newrelic do
7
9
  namespace :config do
8
- desc "Describe available New Relic configuration settings."
9
-
10
10
  GENERAL = "general"
11
11
  DISABLING = "disabling"
12
12
  ATTRIBUTES = "attributes"
@@ -29,116 +29,7 @@ namespace :newrelic do
29
29
  "custom_insights_events" => "Custom Events"
30
30
  }
31
31
 
32
- def output(format)
33
- config_hash = build_config_hash
34
- sections = flatten_config_hash(config_hash)
35
-
36
- puts build_erb(format).result(binding).split("\n").map(&:rstrip).join("\n").gsub('. ', '. ')
37
- sections # silences unused warning to return this
38
- end
39
-
40
- def build_config_hash
41
- sections = Hash.new { |hash, key| hash[key] = [] }
42
- NewRelic::Agent::Configuration::DEFAULTS.each do |key, value|
43
- next unless value[:public]
44
-
45
- section_key = GENERAL
46
- key = key.to_s
47
- components = key.split(".")
48
-
49
- if key.match(/^disable_/) # "disable_httpclient"
50
- section_key = DISABLING
51
- elsif components.length >= 2 && !(components[1] == "attributes") # "analytics_events.enabled"
52
- section_key = components.first
53
- elsif components[1] == "attributes" # "transaction_tracer.attributes.enabled"
54
- section_key = ATTRIBUTES
55
- end
56
-
57
- sections[section_key] << {
58
- :key => key,
59
- :type => format_type(value[:type]),
60
- :description => format_description(value),
61
- :default => format_default_value(value),
62
- :env_var => format_env_var(key)
63
- }
64
- end
65
- sections
66
- end
67
-
68
- def flatten_config_hash(config_hash)
69
- sections = []
70
- sections << pluck(GENERAL, config_hash)
71
- sections << pluck("transaction_tracer", config_hash)
72
- sections << pluck("error_collector", config_hash)
73
- sections << pluck("browser_monitoring", config_hash)
74
- sections << pluck("analytics_events", config_hash)
75
- sections << pluck("transaction_events", config_hash)
76
- sections << pluck("application_logging", config_hash)
77
- sections.concat(config_hash.to_a.sort_by { |a| a.first })
78
-
79
- add_data_to_sections(sections)
80
-
81
- sections
82
- end
83
-
84
- def add_data_to_sections(sections)
85
- sections.each do |section|
86
- section_key = section[0]
87
- section.insert(1, format_name(section_key))
88
- section.insert(2, SECTION_DESCRIPTIONS[section_key])
89
- end
90
- end
91
-
92
- def format_name(key)
93
- name = NAME_OVERRIDES[key]
94
- return name if name
95
-
96
- key.split("_")
97
- .each { |fragment| fragment[0] = fragment[0].upcase }
98
- .join(" ")
99
- end
100
-
101
- def format_type(type)
102
- if type == NewRelic::Agent::Configuration::Boolean
103
- "Boolean"
104
- else
105
- type
106
- end
107
- end
108
-
109
- def format_description(value)
110
- description = ''
111
- description += "<b>DEPRECATED</b> " if value[:deprecated]
112
- description += value[:description]
113
- description
114
- end
115
-
116
- def format_default_value(spec)
117
- return spec[:documentation_default] if !spec[:documentation_default].nil?
118
- if spec[:default].is_a?(Proc)
119
- '(Dynamic)'
120
- else
121
- "#{spec[:default].inspect}"
122
- end
123
- end
124
-
125
- def format_env_var(key)
126
- return "None" if NON_ENV_CONFIGS.include?(key)
127
- "NEW_RELIC_#{key.gsub(".", "_").upcase}"
128
- end
129
-
130
- def pluck(key, config_hash)
131
- value = config_hash.delete(key)
132
- [key, value]
133
- end
134
-
135
- def build_erb(format)
136
- require 'erb'
137
- path = File.join(File.dirname(__FILE__), "config.#{format}.erb")
138
- template = File.read(File.expand_path(path))
139
- ERB.new(template)
140
- end
141
-
32
+ desc "Describe available New Relic configuration settings"
142
33
  task :docs, [:format] => [] do |t, args|
143
34
  require File.expand_path(File.join(File.dirname(__FILE__), "..", "new_relic", "agent", "configuration", "default_source.rb"))
144
35
  format = args[:format] || "text"
@@ -1,33 +1,28 @@
1
- # encoding: utf-8
2
1
  # frozen_string_literal: true
3
2
  # This file is distributed under New Relic's license terms.
4
3
  # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
5
4
 
6
- namespace :coverage do
7
- desc "Collates all result sets generated by the different test runners"
8
- task :report do
9
- require 'simplecov'
10
- require 'fileutils'
5
+ if ENV['CI']
6
+ namespace :coverage do
7
+ desc "Collates all result sets generated by the different test runners"
8
+ task :report do
9
+ require 'simplecov'
10
+ require 'fileutils'
11
11
 
12
- SimpleCov.coverage_dir('coverage_results')
12
+ SimpleCov.coverage_dir('coverage_results')
13
13
 
14
- if ENV['CI']
15
14
  SimpleCov.collate(Dir['*/coverage_*/.resultset.json']) do
16
15
  formatter SimpleCov::Formatter::HTMLFormatter
17
16
  refuse_coverage_drop
18
17
  end
19
- else
20
- SimpleCov.collate(Dir['lib/coverage_*/.resultset.json']) do
21
- formatter SimpleCov::Formatter::HTMLFormatter
22
- end
23
- end
24
18
 
25
- Dir['lib/coverage_{[!r][!e][!s][!u][!l][!t][!s]}*'].each { |dir| FileUtils.rm_rf(dir) }
26
- end
19
+ Dir['lib/coverage_{[!r][!e][!s][!u][!l][!t][!s]}*'].each { |dir| FileUtils.rm_rf(dir) }
20
+ end
27
21
 
28
- desc "Removes all coverage_* directories"
29
- task :clear do
30
- require 'fileutils'
31
- Dir["lib/coverage_*"].each { |dir| FileUtils.rm_rf(dir) }
22
+ desc "Removes all coverage_* directories"
23
+ task :clear do
24
+ require 'fileutils'
25
+ Dir["lib/coverage_*"].each { |dir| FileUtils.rm_rf(dir) }
26
+ end
32
27
  end
33
28
  end
@@ -0,0 +1,123 @@
1
+ # This file is distributed under New Relic's license terms.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
+
5
+ module Format
6
+ def output(format)
7
+ config_hash = build_config_hash
8
+ sections = flatten_config_hash(config_hash)
9
+
10
+ puts build_erb(format).result(binding).split("\n").map(&:rstrip).join("\n").gsub('. ', '. ')
11
+ sections # silences unused warning to return this
12
+ end
13
+
14
+ private
15
+
16
+ def add_data_to_sections(sections)
17
+ sections.each do |section|
18
+ section_key = section[0]
19
+ section.insert(1, format_name(section_key))
20
+ section.insert(2, SECTION_DESCRIPTIONS[section_key])
21
+ end
22
+ end
23
+
24
+ def build_config_hash
25
+ sections = Hash.new { |hash, key| hash[key] = [] }
26
+ NewRelic::Agent::Configuration::DEFAULTS.each do |key, value|
27
+ next unless value[:public]
28
+
29
+ key = key.to_s
30
+ section_key = section_key(key, key.split('.'))
31
+ sections[section_key] << format_sections(key, value)
32
+ end
33
+ sections
34
+ end
35
+
36
+ def build_erb(format)
37
+ require 'erb'
38
+ path = File.join(File.dirname(__FILE__), "config.#{format}.erb")
39
+ template = File.read(File.expand_path(path))
40
+ ERB.new(template)
41
+ end
42
+
43
+ def flatten_config_hash(config_hash)
44
+ sections = []
45
+ config = [GENERAL, 'transaction_tracer', 'error_collector',
46
+ 'browser_monitoring', 'analytics_events', 'transaction_events',
47
+ 'application_logging']
48
+
49
+ config.each { |config| sections << pluck(config, config_hash) }
50
+
51
+ sections.concat(config_hash.to_a.sort_by { |a| a.first })
52
+ add_data_to_sections(sections)
53
+
54
+ sections
55
+ end
56
+
57
+ def format_default_value(spec)
58
+ return spec[:documentation_default] if !spec[:documentation_default].nil?
59
+
60
+ if spec[:default].is_a?(Proc)
61
+ '(Dynamic)'
62
+ else
63
+ "#{spec[:default].inspect}"
64
+ end
65
+ end
66
+
67
+ def format_description(value)
68
+ description = ''
69
+ description += "<b>DEPRECATED</b> " if value[:deprecated]
70
+ description += value[:description]
71
+ description
72
+ end
73
+
74
+ def format_env_var(key)
75
+ return "None" if NON_ENV_CONFIGS.include?(key)
76
+
77
+ "NEW_RELIC_#{key.tr(".", "_").upcase}"
78
+ end
79
+
80
+ def format_name(key)
81
+ name = NAME_OVERRIDES[key]
82
+ return name if name
83
+
84
+ key.split("_")
85
+ .each { |fragment| fragment[0] = fragment[0].upcase }
86
+ .join(" ")
87
+ end
88
+
89
+ def format_sections(key, value)
90
+ {
91
+ :key => key,
92
+ :type => format_type(value[:type]),
93
+ :description => format_description(value),
94
+ :default => format_default_value(value),
95
+ :env_var => format_env_var(key)
96
+ }
97
+ end
98
+
99
+ def format_type(type)
100
+ if type == NewRelic::Agent::Configuration::Boolean
101
+ "Boolean"
102
+ else
103
+ type
104
+ end
105
+ end
106
+
107
+ def pluck(key, config_hash)
108
+ value = config_hash.delete(key)
109
+ [key, value]
110
+ end
111
+
112
+ def section_key(key, components)
113
+ if key =~ /^disable_/ # "disable_httpclient"
114
+ DISABLING
115
+ elsif components.length >= 2 && !(components[1] == "attributes") # "analytics_events.enabled"
116
+ components.first
117
+ elsif components[1] == "attributes" # "transaction_tracer.attributes.enabled"
118
+ ATTRIBUTES
119
+ else
120
+ GENERAL
121
+ end
122
+ end
123
+ end
@@ -0,0 +1,12 @@
1
+ # This file is distributed under New Relic's license terms.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
+
5
+ module Matches
6
+ def look_for_seed(tasks)
7
+ matches = tasks.map { |t| /(seed=.*?)[,\]]/.match(t) }.compact
8
+ if matches.any?
9
+ matches.first[1]
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,24 @@
1
+ # This file is distributed under New Relic's license terms.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
+
5
+ module Prompt
6
+ def prompt_to_continue(command, destination = 'local')
7
+ puts "The following rsync command will be executed to update the #{destination} copy of the specs:"
8
+ puts
9
+ puts command
10
+ puts
11
+ puts "CAUTION: Any unsaved changes that exist within the #{destination} content will be OVERWRITTEN!"
12
+ if destination.eql?('local')
13
+ puts 'CAUTION 2: Before continuing, make sure your local repo is on the correct, synced branch!'
14
+ end
15
+ puts
16
+ print "Do you wish to continue? ('y' to continue, return to cancel) [n] "
17
+ continue = STDIN.gets.chomp
18
+ if continue.casecmp('y').zero?
19
+ system(command)
20
+ else
21
+ puts 'Cancelled'
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,33 @@
1
+ # This file is distributed under New Relic's license terms.
2
+ # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details.
3
+ # frozen_string_literal: true
4
+
5
+ module Removers
6
+ def remove_local_multiverse_databases
7
+ list_databases_command = %(echo "show databases" | mysql -u root)
8
+ databases = `#{list_databases_command}`.chomp!.split("\n").select { |s| s.include?('multiverse') }
9
+ databases.each do |database|
10
+ puts "Dropping #{database}"
11
+ `echo "drop database #{database}" | mysql -u root`
12
+ end
13
+ rescue => error
14
+ puts "ERROR: Cannot get MySQL databases..."
15
+ puts error.message
16
+ end
17
+
18
+ def remove_generated_gemfiles
19
+ file_path = File.expand_path("test/multiverse/suites")
20
+ Dir.glob(File.join(file_path, "**", "Gemfile*")).each do |fn|
21
+ puts "Removing #{fn.gsub(file_path, '.../suites')}"
22
+ FileUtils.rm(fn)
23
+ end
24
+ end
25
+
26
+ def remove_generated_gemfile_lockfiles
27
+ file_path = File.expand_path("test/environments")
28
+ Dir.glob(File.join(file_path, "**", "Gemfile.lock")).each do |fn|
29
+ puts "Removing #{fn.gsub(file_path, '.../environments')}"
30
+ FileUtils.rm(fn)
31
+ end
32
+ end
33
+ 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
@@ -29,7 +29,7 @@ Run it using:
29
29
 
30
30
  `thor instrumentation:scaffold gem_name`
31
31
 
32
- It accepts two optional paramters:
32
+ It accepts two optional parameters:
33
33
 
34
34
  - `--method`: the name of a method to instrument. Only one method can be accepted at this time. Defaults to `method_to_instrument`
35
35
  - `--args`: the arguments for the instrumented method. A comma-separated list can be given if there are multiple arguments. Defaults to `*args`.
@@ -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,6 +11,7 @@ class Instrumentation < Thor
12
11
  INSTRUMENTATION_ROOT = 'lib/new_relic/agent/instrumentation/'
13
12
  MULTIVERSE_SUITE_ROOT = 'test/multiverse/suites/'
14
13
  DEFAULT_SOURCE_LOCATION = 'lib/new_relic/agent/configuration/default_source.rb'
14
+ NEWRELIC_YML_LOCATION = 'newrelic.yml'
15
15
 
16
16
  desc('scaffold NAME', 'Scaffold the required files for adding new instrumentation')
17
17
  long_desc <<-LONGDESC
@@ -35,14 +35,11 @@ class Instrumentation < Thor
35
35
  @args = options[:args] if options[:args]
36
36
  @class_name = ::NewRelic::LanguageSupport.camelize(name)
37
37
  base_path = "#{INSTRUMENTATION_ROOT}#{name.downcase}"
38
- empty_directory(base_path)
39
-
40
- ['chain', 'instrumentation', 'prepend'].each do |file|
41
- template("templates/#{file}.tt", "#{base_path}/#{file}.rb")
42
- end
43
38
 
44
- template('templates/dependency_detection.tt', "#{base_path}.rb")
45
- create_configuration(name)
39
+ empty_directory(base_path)
40
+ create_instrumentation_files(base_path)
41
+ append_to_default_source(name)
42
+ append_to_newrelic_yml(name)
46
43
  create_tests(name)
47
44
  end
48
45
 
@@ -61,6 +58,14 @@ class Instrumentation < Thor
61
58
 
62
59
  private
63
60
 
61
+ def create_instrumentation_files(base_path)
62
+ %w[chain instrumentation prepend].each do |file|
63
+ template("templates/#{file}.tt", "#{base_path}/#{file}.rb")
64
+ end
65
+
66
+ template('templates/dependency_detection.tt', "#{base_path}.rb")
67
+ end
68
+
64
69
  def create_tests(name)
65
70
  @name = name
66
71
  @instrumentation_method_global_erb_snippet = '<%= $instrumentation_method %>'
@@ -73,23 +78,46 @@ class Instrumentation < Thor
73
78
  template('templates/newrelic.yml.tt', "#{base_path}/config/newrelic.yml")
74
79
  end
75
80
 
76
- def create_configuration(name)
77
- config = <<-CONFIG
81
+ def append_to_default_source(name)
82
+ insert_into_file(
83
+ DEFAULT_SOURCE_LOCATION,
84
+ config_block(name.downcase),
85
+ after: ":description => 'Controls auto-instrumentation of bunny at start up. May be one of [auto|prepend|chain|disabled].'
86
+ },\n"
87
+ )
88
+ end
89
+
90
+ def append_to_newrelic_yml(name)
91
+ insert_into_file(
92
+ NEWRELIC_YML_LOCATION,
93
+ yaml_block(name),
94
+ after: "# instrumentation.bunny: auto\n"
95
+ )
96
+ end
97
+
98
+ def config_block(name)
99
+ <<-CONFIG
78
100
  :'instrumentation.#{name.downcase}' => {
79
101
  :default => 'auto',
80
102
  :public => true,
81
103
  :type => String,
82
104
  :dynamic_name => true,
83
105
  :allowed_from_server => false,
84
- :description => 'Controls auto-instrumentation of the #{name.downcase} library at start up. May be one of [auto|prepend|chain|disabled].'
106
+ :description => 'Controls auto-instrumentation of the #{name} library at start up. May be one of [auto|prepend|chain|disabled].'
85
107
  },
86
108
  CONFIG
87
- insert_into_file(
88
- DEFAULT_SOURCE_LOCATION,
89
- config,
90
- after: ":description => 'Controls auto-instrumentation of bunny at start up. May be one of [auto|prepend|chain|disabled].'
91
- },\n"
92
- )
109
+ end
110
+
111
+ # TODO: OLD RUBIES - RUBY_VERSION 2.2
112
+ # When we only support 2.3+ this can be changed to a sqiggle heredoc (<<~)
113
+ # and use standard indentation
114
+ def yaml_block(name)
115
+ <<HEREDOC # rubocop:disable Layout/IndentationWidth
116
+
117
+ # Controls auto-instrumentation of #{name} at start up.
118
+ # May be one of [auto|prepend|chain|disabled]
119
+ # instrumentation.#{name.downcase}: auto
120
+ HEREDOC
93
121
  end
94
122
  end
95
123
 
@@ -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