newrelic_rpm 3.12.0.288 → 9.10.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1319) hide show
  1. checksums.yaml +5 -5
  2. data/.build_ignore +26 -0
  3. data/CHANGELOG.md +5681 -0
  4. data/CONTRIBUTING.md +194 -0
  5. data/Gemfile +5 -2
  6. data/LICENSE +201 -150
  7. data/README.md +87 -143
  8. data/Rakefile +39 -55
  9. data/THIRD_PARTY_NOTICES.md +28 -0
  10. data/Thorfile +5 -0
  11. data/bin/newrelic +4 -9
  12. data/bin/newrelic_rpm +15 -0
  13. data/bin/nrdebug +86 -63
  14. data/init.rb +7 -9
  15. data/install.rb +3 -3
  16. data/lib/boot/strap.rb +101 -0
  17. data/lib/new_relic/agent/adaptive_sampler.rb +108 -0
  18. data/lib/new_relic/agent/agent.rb +158 -1000
  19. data/lib/new_relic/agent/agent_helpers/connect.rb +224 -0
  20. data/lib/new_relic/agent/agent_helpers/harvest.rb +153 -0
  21. data/lib/new_relic/agent/agent_helpers/shutdown.rb +72 -0
  22. data/lib/new_relic/agent/agent_helpers/special_startup.rb +74 -0
  23. data/lib/new_relic/agent/agent_helpers/start_worker_thread.rb +175 -0
  24. data/lib/new_relic/agent/agent_helpers/startup.rb +203 -0
  25. data/lib/new_relic/agent/agent_helpers/transmit.rb +76 -0
  26. data/lib/new_relic/agent/agent_logger.rb +39 -54
  27. data/lib/new_relic/agent/attribute_filter.rb +111 -35
  28. data/lib/new_relic/agent/attribute_pre_filtering.rb +109 -0
  29. data/lib/new_relic/agent/attribute_processing.rb +12 -12
  30. data/lib/new_relic/agent/attributes.rb +153 -0
  31. data/lib/new_relic/agent/audit_logger.rb +23 -7
  32. data/lib/new_relic/agent/autostart.rb +36 -47
  33. data/lib/new_relic/agent/aws.rb +62 -0
  34. data/lib/new_relic/agent/chained_call.rb +2 -2
  35. data/lib/new_relic/agent/commands/agent_command.rb +5 -5
  36. data/lib/new_relic/agent/commands/agent_command_router.rb +18 -35
  37. data/lib/new_relic/agent/commands/thread_profiler_session.rb +20 -19
  38. data/lib/new_relic/agent/configuration/default_source.rb +1903 -823
  39. data/lib/new_relic/agent/configuration/dotted_hash.rb +7 -8
  40. data/lib/new_relic/agent/configuration/environment_source.rb +26 -14
  41. data/lib/new_relic/agent/configuration/event_harvest_config.rb +68 -0
  42. data/lib/new_relic/agent/configuration/high_security_source.rb +15 -15
  43. data/lib/new_relic/agent/configuration/manager.rb +143 -114
  44. data/lib/new_relic/agent/configuration/manual_source.rb +2 -2
  45. data/lib/new_relic/agent/configuration/mask_defaults.rb +4 -4
  46. data/lib/new_relic/agent/configuration/security_policy_source.rb +246 -0
  47. data/lib/new_relic/agent/configuration/server_source.rb +70 -27
  48. data/lib/new_relic/agent/configuration/yaml_source.rb +85 -35
  49. data/lib/new_relic/agent/configuration.rb +2 -2
  50. data/lib/new_relic/agent/connect/request_builder.rb +61 -0
  51. data/lib/new_relic/agent/connect/response_handler.rb +58 -0
  52. data/lib/new_relic/agent/custom_event_aggregator.rb +68 -56
  53. data/lib/new_relic/agent/database/explain_plan_helpers.rb +138 -0
  54. data/lib/new_relic/agent/database/obfuscation_helpers.rb +73 -49
  55. data/lib/new_relic/agent/database/obfuscator.rb +7 -25
  56. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +5 -8
  57. data/lib/new_relic/agent/database.rb +166 -202
  58. data/lib/new_relic/agent/database_adapter.rb +35 -0
  59. data/lib/new_relic/agent/datastores/metric_helper.rb +62 -22
  60. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +50 -0
  61. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +21 -31
  62. data/lib/new_relic/agent/datastores/mongo.rb +8 -12
  63. data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
  64. data/lib/new_relic/agent/datastores/redis.rb +125 -0
  65. data/lib/new_relic/agent/datastores.rb +45 -30
  66. data/lib/new_relic/agent/deprecator.rb +2 -2
  67. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +44 -0
  68. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +253 -0
  69. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
  70. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
  71. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +159 -0
  72. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +38 -0
  73. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +245 -0
  74. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +127 -0
  75. data/lib/new_relic/agent/distributed_tracing.rb +148 -0
  76. data/lib/new_relic/agent/encoding_normalizer.rb +9 -24
  77. data/lib/new_relic/agent/error_collector.rb +200 -142
  78. data/lib/new_relic/agent/error_event_aggregator.rb +41 -0
  79. data/lib/new_relic/agent/error_filter.rb +174 -0
  80. data/lib/new_relic/agent/error_trace_aggregator.rb +102 -0
  81. data/lib/new_relic/agent/event_aggregator.rb +150 -0
  82. data/lib/new_relic/agent/event_buffer.rb +15 -9
  83. data/lib/new_relic/agent/event_listener.rb +2 -3
  84. data/lib/new_relic/agent/event_loop.rb +28 -26
  85. data/lib/new_relic/agent/external.rb +110 -0
  86. data/lib/new_relic/agent/guid_generator.rb +30 -0
  87. data/lib/new_relic/agent/harvester.rb +7 -10
  88. data/lib/new_relic/agent/heap.rb +139 -0
  89. data/lib/new_relic/agent/hostname.rb +44 -5
  90. data/lib/new_relic/agent/http_clients/abstract.rb +73 -0
  91. data/lib/new_relic/agent/http_clients/async_http_wrappers.rb +80 -0
  92. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +36 -24
  93. data/lib/new_relic/agent/http_clients/ethon_wrappers.rb +109 -0
  94. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +49 -23
  95. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +64 -0
  96. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +29 -22
  97. data/lib/new_relic/agent/http_clients/httpx_wrappers.rb +91 -0
  98. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +39 -11
  99. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +30 -20
  100. data/lib/new_relic/agent/http_clients/uri_util.rb +23 -19
  101. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +47 -0
  102. data/lib/new_relic/agent/instrumentation/action_controller_other_subscriber.rb +42 -0
  103. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +61 -74
  104. data/lib/new_relic/agent/instrumentation/action_dispatch.rb +31 -0
  105. data/lib/new_relic/agent/instrumentation/action_dispatch_subscriber.rb +64 -0
  106. data/lib/new_relic/agent/instrumentation/action_mailbox.rb +30 -0
  107. data/lib/new_relic/agent/instrumentation/action_mailbox_subscriber.rb +33 -0
  108. data/lib/new_relic/agent/instrumentation/action_mailer.rb +30 -0
  109. data/lib/new_relic/agent/instrumentation/action_mailer_subscriber.rb +85 -0
  110. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +82 -66
  111. data/lib/new_relic/agent/instrumentation/active_job.rb +52 -20
  112. data/lib/new_relic/agent/instrumentation/active_job_subscriber.rb +41 -0
  113. data/lib/new_relic/agent/instrumentation/active_merchant.rb +21 -7
  114. data/lib/new_relic/agent/instrumentation/active_record.rb +112 -42
  115. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +217 -56
  116. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +156 -0
  117. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +98 -0
  118. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +104 -59
  119. data/lib/new_relic/agent/instrumentation/active_storage.rb +27 -0
  120. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +38 -0
  121. data/lib/new_relic/agent/instrumentation/active_support.rb +27 -0
  122. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/chain.rb +69 -0
  123. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/instrumentation.rb +17 -0
  124. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger/prepend.rb +37 -0
  125. data/lib/new_relic/agent/instrumentation/active_support_broadcast_logger.rb +23 -0
  126. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
  127. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +24 -0
  128. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
  129. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +26 -0
  130. data/lib/new_relic/agent/instrumentation/active_support_subscriber.rb +41 -0
  131. data/lib/new_relic/agent/instrumentation/async_http/chain.rb +23 -0
  132. data/lib/new_relic/agent/instrumentation/async_http/instrumentation.rb +37 -0
  133. data/lib/new_relic/agent/instrumentation/async_http/prepend.rb +15 -0
  134. data/lib/new_relic/agent/instrumentation/async_http.rb +28 -0
  135. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
  136. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +159 -0
  137. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
  138. data/lib/new_relic/agent/instrumentation/bunny.rb +32 -0
  139. data/lib/new_relic/agent/instrumentation/concurrent_ruby/chain.rb +36 -0
  140. data/lib/new_relic/agent/instrumentation/concurrent_ruby/instrumentation.rb +20 -0
  141. data/lib/new_relic/agent/instrumentation/concurrent_ruby/prepend.rb +27 -0
  142. data/lib/new_relic/agent/instrumentation/concurrent_ruby.rb +32 -0
  143. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +106 -74
  144. data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
  145. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +225 -0
  146. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
  147. data/lib/new_relic/agent/instrumentation/curb.rb +16 -175
  148. data/lib/new_relic/agent/instrumentation/custom_events.rb +12 -0
  149. data/lib/new_relic/agent/instrumentation/custom_events_subscriber.rb +38 -0
  150. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +36 -0
  151. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +51 -0
  152. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
  153. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +95 -36
  154. data/lib/new_relic/agent/instrumentation/dynamodb/chain.rb +27 -0
  155. data/lib/new_relic/agent/instrumentation/dynamodb/instrumentation.rb +64 -0
  156. data/lib/new_relic/agent/instrumentation/dynamodb/prepend.rb +19 -0
  157. data/lib/new_relic/agent/instrumentation/dynamodb.rb +25 -0
  158. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
  159. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +120 -0
  160. data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
  161. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
  162. data/lib/new_relic/agent/instrumentation/ethon/chain.rb +39 -0
  163. data/lib/new_relic/agent/instrumentation/ethon/instrumentation.rb +105 -0
  164. data/lib/new_relic/agent/instrumentation/ethon/prepend.rb +35 -0
  165. data/lib/new_relic/agent/instrumentation/ethon.rb +39 -0
  166. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +29 -16
  167. data/lib/new_relic/agent/instrumentation/excon.rb +29 -31
  168. data/lib/new_relic/agent/instrumentation/fiber/chain.rb +27 -0
  169. data/lib/new_relic/agent/instrumentation/fiber/instrumentation.rb +20 -0
  170. data/lib/new_relic/agent/instrumentation/fiber/prepend.rb +25 -0
  171. data/lib/new_relic/agent/instrumentation/fiber.rb +25 -0
  172. data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
  173. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +104 -0
  174. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
  175. data/lib/new_relic/agent/instrumentation/grape.rb +18 -85
  176. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
  177. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +93 -0
  178. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
  179. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
  180. data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
  181. data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
  182. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +138 -0
  183. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
  184. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
  185. data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
  186. data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
  187. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
  188. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +41 -0
  189. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
  190. data/lib/new_relic/agent/instrumentation/httpclient.rb +14 -22
  191. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
  192. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +34 -0
  193. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
  194. data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
  195. data/lib/new_relic/agent/instrumentation/httpx/chain.rb +20 -0
  196. data/lib/new_relic/agent/instrumentation/httpx/instrumentation.rb +51 -0
  197. data/lib/new_relic/agent/instrumentation/httpx/prepend.rb +15 -0
  198. data/lib/new_relic/agent/instrumentation/httpx.rb +27 -0
  199. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +6 -7
  200. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  201. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +69 -0
  202. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  203. data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
  204. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
  205. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +97 -0
  206. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
  207. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +99 -0
  208. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +103 -0
  209. data/lib/new_relic/agent/instrumentation/memcache.rb +53 -109
  210. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +17 -16
  211. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +48 -14
  212. data/lib/new_relic/agent/instrumentation/mongo.rb +14 -110
  213. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +140 -0
  214. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
  215. data/lib/new_relic/agent/instrumentation/net_http/instrumentation.rb +50 -0
  216. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
  217. data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
  218. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +146 -0
  219. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
  220. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +32 -0
  221. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
  222. data/lib/new_relic/agent/instrumentation/padrino.rb +21 -21
  223. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +7 -7
  224. data/lib/new_relic/agent/instrumentation/queue_time.rb +19 -22
  225. data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
  226. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
  227. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +81 -0
  228. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
  229. data/lib/new_relic/agent/instrumentation/rack.rb +49 -152
  230. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +28 -55
  231. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +5 -5
  232. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +36 -0
  233. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +46 -0
  234. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +30 -0
  235. data/lib/new_relic/agent/instrumentation/rails_notifications/custom_events.rb +30 -0
  236. data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
  237. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +146 -0
  238. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
  239. data/lib/new_relic/agent/instrumentation/rake.rb +31 -0
  240. data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
  241. data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
  242. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +98 -0
  243. data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
  244. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
  245. data/lib/new_relic/agent/instrumentation/redis.rb +44 -0
  246. data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
  247. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  248. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +38 -0
  249. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
  250. data/lib/new_relic/agent/instrumentation/resque.rb +38 -78
  251. data/lib/new_relic/agent/instrumentation/roda/chain.rb +43 -0
  252. data/lib/new_relic/agent/instrumentation/roda/ignorer.rb +45 -0
  253. data/lib/new_relic/agent/instrumentation/roda/instrumentation.rb +68 -0
  254. data/lib/new_relic/agent/instrumentation/roda/prepend.rb +24 -0
  255. data/lib/new_relic/agent/instrumentation/roda/roda_transaction_namer.rb +29 -0
  256. data/lib/new_relic/agent/instrumentation/roda.rb +36 -0
  257. data/lib/new_relic/agent/instrumentation/ruby_openai/chain.rb +36 -0
  258. data/lib/new_relic/agent/instrumentation/ruby_openai/instrumentation.rb +196 -0
  259. data/lib/new_relic/agent/instrumentation/ruby_openai/prepend.rb +20 -0
  260. data/lib/new_relic/agent/instrumentation/ruby_openai.rb +35 -0
  261. data/lib/new_relic/agent/instrumentation/sequel.rb +17 -23
  262. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +13 -13
  263. data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +24 -0
  264. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
  265. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +60 -0
  266. data/lib/new_relic/agent/instrumentation/sidekiq.rb +37 -45
  267. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
  268. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +31 -37
  269. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +130 -0
  270. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
  271. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +13 -7
  272. data/lib/new_relic/agent/instrumentation/sinatra.rb +35 -165
  273. data/lib/new_relic/agent/instrumentation/stripe.rb +28 -0
  274. data/lib/new_relic/agent/instrumentation/stripe_subscriber.rb +77 -0
  275. data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
  276. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +24 -0
  277. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
  278. data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
  279. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
  280. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +46 -0
  281. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
  282. data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
  283. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
  284. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +84 -0
  285. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
  286. data/lib/new_relic/agent/instrumentation/typhoeus.rb +14 -47
  287. data/lib/new_relic/agent/instrumentation/view_component/chain.rb +21 -0
  288. data/lib/new_relic/agent/instrumentation/view_component/instrumentation.rb +39 -0
  289. data/lib/new_relic/agent/instrumentation/view_component/prepend.rb +13 -0
  290. data/lib/new_relic/agent/instrumentation/view_component.rb +26 -0
  291. data/lib/new_relic/agent/instrumentation.rb +2 -2
  292. data/lib/new_relic/agent/internal_agent_error.rb +3 -3
  293. data/lib/new_relic/agent/javascript_instrumentor.rb +72 -58
  294. data/lib/new_relic/agent/linking_metadata.rb +44 -0
  295. data/lib/new_relic/agent/llm/chat_completion_message.rb +25 -0
  296. data/lib/new_relic/agent/llm/chat_completion_summary.rb +66 -0
  297. data/lib/new_relic/agent/llm/embedding.rb +60 -0
  298. data/lib/new_relic/agent/llm/llm_event.rb +95 -0
  299. data/lib/new_relic/agent/llm/response_headers.rb +80 -0
  300. data/lib/new_relic/agent/llm.rb +49 -0
  301. data/lib/new_relic/agent/local_log_decorator.rb +37 -0
  302. data/lib/new_relic/agent/log_event_aggregator.rb +267 -0
  303. data/lib/new_relic/agent/log_event_attributes.rb +115 -0
  304. data/lib/new_relic/agent/log_once.rb +39 -0
  305. data/lib/new_relic/agent/log_priority.rb +20 -0
  306. data/lib/new_relic/agent/logging.rb +182 -0
  307. data/lib/new_relic/agent/memory_logger.rb +11 -4
  308. data/lib/new_relic/agent/messaging.rb +358 -0
  309. data/lib/new_relic/agent/method_tracer.rb +173 -195
  310. data/lib/new_relic/agent/method_tracer_helpers.rb +109 -66
  311. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +117 -0
  312. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +28 -0
  313. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +43 -0
  314. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +64 -0
  315. data/lib/new_relic/agent/monitors.rb +26 -0
  316. data/lib/new_relic/agent/new_relic_service/encoders.rb +29 -13
  317. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +18 -24
  318. data/lib/new_relic/agent/new_relic_service/marshaller.rb +8 -29
  319. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +61 -0
  320. data/lib/new_relic/agent/new_relic_service.rb +406 -226
  321. data/lib/new_relic/agent/noticeable_error.rb +19 -0
  322. data/lib/new_relic/agent/null_logger.rb +8 -4
  323. data/lib/new_relic/agent/obfuscator.rb +8 -12
  324. data/lib/new_relic/agent/parameter_filtering.rb +41 -14
  325. data/lib/new_relic/agent/payload_metric_mapping.rb +57 -0
  326. data/lib/new_relic/agent/pipe_channel_manager.rb +37 -27
  327. data/lib/new_relic/agent/pipe_service.rb +23 -16
  328. data/lib/new_relic/agent/prepend_supportability.rb +16 -0
  329. data/lib/new_relic/agent/priority_sampled_buffer.rb +92 -0
  330. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +12 -12
  331. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +32 -12
  332. data/lib/new_relic/agent/rules_engine.rb +30 -7
  333. data/lib/new_relic/agent/sampler.rb +13 -13
  334. data/lib/new_relic/agent/sampler_collection.rb +5 -6
  335. data/lib/new_relic/agent/samplers/cpu_sampler.rb +13 -10
  336. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +22 -19
  337. data/lib/new_relic/agent/samplers/memory_sampler.rb +41 -25
  338. data/lib/new_relic/agent/samplers/object_sampler.rb +3 -3
  339. data/lib/new_relic/agent/samplers/vm_sampler.rb +22 -20
  340. data/lib/new_relic/agent/serverless_handler.rb +171 -0
  341. data/lib/new_relic/agent/span_event_aggregator.rb +49 -0
  342. data/lib/new_relic/agent/span_event_primitive.rb +222 -0
  343. data/lib/new_relic/agent/sql_sampler.rb +83 -47
  344. data/lib/new_relic/agent/stats.rb +80 -57
  345. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +12 -13
  346. data/lib/new_relic/agent/stats_engine/stats_hash.rb +97 -40
  347. data/lib/new_relic/agent/stats_engine.rb +175 -9
  348. data/lib/new_relic/agent/synthetics_event_aggregator.rb +44 -0
  349. data/lib/new_relic/agent/system_info.rb +203 -61
  350. data/lib/new_relic/agent/threading/agent_thread.rb +20 -15
  351. data/lib/new_relic/agent/threading/backtrace_node.rb +13 -14
  352. data/lib/new_relic/agent/threading/backtrace_service.rb +23 -26
  353. data/lib/new_relic/agent/threading/thread_profile.rb +32 -46
  354. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +19 -0
  355. data/lib/new_relic/agent/tracer.rb +514 -0
  356. data/lib/new_relic/agent/transaction/abstract_segment.rb +388 -0
  357. data/lib/new_relic/agent/transaction/datastore_segment.rb +155 -0
  358. data/lib/new_relic/agent/transaction/distributed_tracer.rb +185 -0
  359. data/lib/new_relic/agent/transaction/distributed_tracing.rb +171 -0
  360. data/lib/new_relic/agent/transaction/external_request_segment.rb +265 -0
  361. data/lib/new_relic/agent/transaction/message_broker_segment.rb +98 -0
  362. data/lib/new_relic/agent/transaction/request_attributes.rb +158 -0
  363. data/lib/new_relic/agent/transaction/segment.rb +102 -0
  364. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +2 -4
  365. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +3 -3
  366. data/lib/new_relic/agent/transaction/trace.rb +43 -37
  367. data/lib/new_relic/agent/transaction/trace_builder.rb +56 -0
  368. data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
  369. data/lib/new_relic/agent/transaction/trace_node.rb +57 -66
  370. data/lib/new_relic/agent/transaction/tracing.rb +87 -0
  371. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +7 -7
  372. data/lib/new_relic/agent/transaction.rb +438 -396
  373. data/lib/new_relic/agent/transaction_error_primitive.rb +105 -0
  374. data/lib/new_relic/agent/transaction_event_aggregator.rb +43 -260
  375. data/lib/new_relic/agent/transaction_event_primitive.rb +127 -0
  376. data/lib/new_relic/agent/transaction_event_recorder.rb +49 -0
  377. data/lib/new_relic/agent/transaction_metrics.rb +19 -10
  378. data/lib/new_relic/agent/transaction_sampler.rb +22 -219
  379. data/lib/new_relic/agent/transaction_time_aggregator.rb +160 -0
  380. data/lib/new_relic/agent/utilization/aws.rb +48 -0
  381. data/lib/new_relic/agent/utilization/azure.rb +17 -0
  382. data/lib/new_relic/agent/utilization/gcp.rb +33 -0
  383. data/lib/new_relic/agent/utilization/pcf.rb +33 -0
  384. data/lib/new_relic/agent/utilization/vendor.rb +157 -0
  385. data/lib/new_relic/agent/utilization_data.rb +124 -37
  386. data/lib/new_relic/agent/vm/c_ruby_vm.rb +99 -0
  387. data/lib/new_relic/agent/vm/jruby_vm.rb +3 -5
  388. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +4 -4
  389. data/lib/new_relic/agent/vm/snapshot.rb +6 -6
  390. data/lib/new_relic/agent/vm.rb +5 -8
  391. data/lib/new_relic/agent/worker_loop.rb +16 -18
  392. data/lib/new_relic/agent.rb +476 -210
  393. data/lib/new_relic/base64.rb +25 -0
  394. data/lib/new_relic/cli/command.rb +27 -26
  395. data/lib/new_relic/cli/commands/deployments.rb +108 -50
  396. data/lib/new_relic/cli/commands/install.rb +35 -36
  397. data/lib/new_relic/coerce.rb +43 -16
  398. data/lib/new_relic/collection_helper.rb +49 -67
  399. data/lib/new_relic/constants.rb +45 -0
  400. data/lib/new_relic/control/class_methods.rb +7 -7
  401. data/lib/new_relic/control/frameworks/external.rb +3 -3
  402. data/lib/new_relic/control/frameworks/rails.rb +59 -49
  403. data/lib/new_relic/control/frameworks/rails3.rb +5 -7
  404. data/lib/new_relic/control/frameworks/rails4.rb +3 -3
  405. data/lib/new_relic/control/frameworks/rails_notifications.rb +14 -0
  406. data/lib/new_relic/control/frameworks/roda.rb +20 -0
  407. data/lib/new_relic/control/frameworks/ruby.rb +5 -5
  408. data/lib/new_relic/control/frameworks/sinatra.rb +8 -2
  409. data/lib/new_relic/control/frameworks.rb +2 -2
  410. data/lib/new_relic/control/instance_methods.rb +47 -29
  411. data/lib/new_relic/control/instrumentation.rb +27 -21
  412. data/lib/new_relic/control/private_instance_methods.rb +48 -0
  413. data/lib/new_relic/control/server_methods.rb +6 -60
  414. data/lib/new_relic/control.rb +3 -5
  415. data/lib/new_relic/delayed_job_injection.rb +2 -2
  416. data/lib/new_relic/dependency_detection.rb +234 -0
  417. data/lib/new_relic/environment_report.rb +42 -36
  418. data/lib/new_relic/helper.rb +54 -22
  419. data/lib/new_relic/language_support.rb +73 -99
  420. data/lib/new_relic/latest_changes.rb +13 -12
  421. data/lib/new_relic/local_environment.rb +55 -42
  422. data/lib/new_relic/metric_data.rb +37 -39
  423. data/lib/new_relic/metric_spec.rb +9 -24
  424. data/lib/new_relic/noticed_error.rb +103 -62
  425. data/lib/new_relic/rack/agent_hooks.rb +3 -3
  426. data/lib/new_relic/rack/agent_middleware.rb +5 -5
  427. data/lib/new_relic/rack/browser_monitoring.rb +147 -114
  428. data/lib/new_relic/rack.rb +2 -2
  429. data/lib/new_relic/recipes/capistrano3.rb +12 -55
  430. data/lib/new_relic/recipes/capistrano_legacy.rb +26 -29
  431. data/lib/new_relic/recipes/helpers/send_deployment.rb +70 -0
  432. data/lib/new_relic/recipes.rb +2 -2
  433. data/lib/new_relic/supportability_helper.rb +88 -0
  434. data/lib/new_relic/thread_local_storage.rb +31 -0
  435. data/lib/new_relic/traced_thread.rb +38 -0
  436. data/lib/new_relic/version.rb +7 -63
  437. data/lib/newrelic_rpm.rb +21 -34
  438. data/lib/sequel/extensions/new_relic_instrumentation.rb +99 -0
  439. data/lib/sequel/plugins/new_relic_instrumentation.rb +64 -0
  440. data/lib/tasks/all.rb +4 -4
  441. data/lib/tasks/bump_version.rake +21 -0
  442. data/lib/tasks/config.rake +27 -119
  443. data/lib/tasks/coverage_report.rake +28 -0
  444. data/lib/tasks/helpers/config.html.erb +115 -0
  445. data/lib/tasks/helpers/config.text.erb +8 -0
  446. data/lib/tasks/helpers/format.rb +127 -0
  447. data/lib/tasks/helpers/matches.rb +12 -0
  448. data/lib/tasks/helpers/newrelicyml.rb +144 -0
  449. data/lib/tasks/helpers/prompt.rb +24 -0
  450. data/lib/tasks/helpers/version_bump.rb +62 -0
  451. data/lib/tasks/install.rake +8 -4
  452. data/lib/tasks/instrumentation_generator/README.md +63 -0
  453. data/lib/tasks/instrumentation_generator/TODO.md +33 -0
  454. data/lib/tasks/instrumentation_generator/instrumentation.thor +129 -0
  455. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
  456. data/lib/tasks/instrumentation_generator/templates/chain.tt +21 -0
  457. data/lib/tasks/instrumentation_generator/templates/chain_method.tt +7 -0
  458. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
  459. data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
  460. data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
  461. data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
  462. data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
  463. data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
  464. data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
  465. data/lib/tasks/newrelic.rb +10 -0
  466. data/lib/tasks/newrelicyml.rake +13 -0
  467. data/lib/tasks/tests.rake +87 -16
  468. data/newrelic.yml +832 -10
  469. data/newrelic_rpm.gemspec +56 -56
  470. data/recipes/newrelic.rb +3 -3
  471. data/test/agent_helper.rb +513 -115
  472. metadata +384 -912
  473. data/.gitignore +0 -27
  474. data/.project +0 -23
  475. data/.travis.yml +0 -12
  476. data/.yardopts +0 -21
  477. data/CHANGELOG +0 -2300
  478. data/GUIDELINES_FOR_CONTRIBUTING.md +0 -80
  479. data/Guardfile +0 -8
  480. data/bin/mongrel_rpm +0 -33
  481. data/bin/newrelic_cmd +0 -5
  482. data/cert/cacert.pem +0 -1177
  483. data/config/database.yml +0 -5
  484. data/config.dot +0 -287
  485. data/lib/conditional_vendored_dependency_detection.rb +0 -7
  486. data/lib/conditional_vendored_metric_parser.rb +0 -9
  487. data/lib/new_relic/agent/busy_calculator.rb +0 -117
  488. data/lib/new_relic/agent/commands/xray_session.rb +0 -55
  489. data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
  490. data/lib/new_relic/agent/cross_app_monitor.rb +0 -178
  491. data/lib/new_relic/agent/cross_app_tracing.rb +0 -339
  492. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -39
  493. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  494. data/lib/new_relic/agent/hash_extensions.rb +0 -26
  495. data/lib/new_relic/agent/inbound_request_monitor.rb +0 -41
  496. data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -28
  497. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +0 -72
  498. data/lib/new_relic/agent/instrumentation/authlogic.rb +0 -25
  499. data/lib/new_relic/agent/instrumentation/data_mapper.rb +0 -167
  500. data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -100
  501. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -33
  502. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  503. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  504. data/lib/new_relic/agent/instrumentation/metric_frame.rb +0 -39
  505. data/lib/new_relic/agent/instrumentation/net.rb +0 -36
  506. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -123
  507. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
  508. data/lib/new_relic/agent/instrumentation/rails/errors.rb +0 -51
  509. data/lib/new_relic/agent/instrumentation/rails3/errors.rb +0 -47
  510. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -29
  511. data/lib/new_relic/agent/instrumentation/rails4/action_view.rb +0 -25
  512. data/lib/new_relic/agent/instrumentation/rails4/errors.rb +0 -46
  513. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +0 -26
  514. data/lib/new_relic/agent/instrumentation/rubyprof.rb +0 -26
  515. data/lib/new_relic/agent/instrumentation/sunspot.rb +0 -33
  516. data/lib/new_relic/agent/new_relic_service/pruby_marshaller.rb +0 -56
  517. data/lib/new_relic/agent/sampled_buffer.rb +0 -51
  518. data/lib/new_relic/agent/shim_agent.rb +0 -33
  519. data/lib/new_relic/agent/sized_buffer.rb +0 -23
  520. data/lib/new_relic/agent/stats_engine/metric_stats.rb +0 -237
  521. data/lib/new_relic/agent/stats_engine/samplers.rb +0 -28
  522. data/lib/new_relic/agent/supported_versions.rb +0 -259
  523. data/lib/new_relic/agent/synthetics_event_buffer.rb +0 -42
  524. data/lib/new_relic/agent/synthetics_monitor.rb +0 -50
  525. data/lib/new_relic/agent/traced_method_stack.rb +0 -99
  526. data/lib/new_relic/agent/transaction/attributes.rb +0 -161
  527. data/lib/new_relic/agent/transaction/developer_mode_sample_buffer.rb +0 -62
  528. data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
  529. data/lib/new_relic/agent/transaction_sample_builder.rb +0 -147
  530. data/lib/new_relic/agent/transaction_state.rb +0 -153
  531. data/lib/new_relic/agent/transaction_timings.rb +0 -57
  532. data/lib/new_relic/agent/vm/mri_vm.rb +0 -87
  533. data/lib/new_relic/agent/vm/rubinius_vm.rb +0 -132
  534. data/lib/new_relic/build.rb +0 -2
  535. data/lib/new_relic/control/frameworks/merb.rb +0 -29
  536. data/lib/new_relic/json_wrapper.rb +0 -78
  537. data/lib/new_relic/merbtasks.rb +0 -10
  538. data/lib/new_relic/metrics.rb +0 -13
  539. data/lib/new_relic/okjson.rb +0 -602
  540. data/lib/new_relic/rack/developer_mode/segment_summary.rb +0 -56
  541. data/lib/new_relic/rack/developer_mode.rb +0 -321
  542. data/lib/new_relic/rack/error_collector.rb +0 -27
  543. data/lib/new_relic/timer_lib.rb +0 -31
  544. data/lib/sequel/extensions/newrelic_instrumentation.rb +0 -79
  545. data/lib/sequel/plugins/newrelic_instrumentation.rb +0 -65
  546. data/lib/tasks/config.html.erb +0 -28
  547. data/lib/tasks/config.text.erb +0 -7
  548. data/lib/tasks/versions.html.erb +0 -27
  549. data/lib/tasks/versions.rake +0 -53
  550. data/lib/tasks/versions.txt.erb +0 -14
  551. data/test/config/newrelic.yml +0 -46
  552. data/test/config/test.cert.crt +0 -18
  553. data/test/config/test.cert.key +0 -15
  554. data/test/config/test_control.rb +0 -54
  555. data/test/environments/.gitignore +0 -16
  556. data/test/environments/lib/environments/runner.rb +0 -113
  557. data/test/environments/norails/Gemfile +0 -21
  558. data/test/environments/norails/Rakefile +0 -9
  559. data/test/environments/rails21/Gemfile +0 -25
  560. data/test/environments/rails21/Rakefile +0 -16
  561. data/test/environments/rails21/app/controllers/application.rb +0 -20
  562. data/test/environments/rails21/config/boot.rb +0 -113
  563. data/test/environments/rails21/config/database.yml +0 -26
  564. data/test/environments/rails21/config/environment.rb +0 -26
  565. data/test/environments/rails21/config/environments/development.rb +0 -10
  566. data/test/environments/rails21/config/environments/production.rb +0 -8
  567. data/test/environments/rails21/config/environments/test.rb +0 -10
  568. data/test/environments/rails21/config/routes.rb +0 -5
  569. data/test/environments/rails21/db/schema.rb +0 -5
  570. data/test/environments/rails22/Gemfile +0 -25
  571. data/test/environments/rails22/Rakefile +0 -16
  572. data/test/environments/rails22/app/controllers/application.rb +0 -20
  573. data/test/environments/rails22/config/boot.rb +0 -113
  574. data/test/environments/rails22/config/database.yml +0 -26
  575. data/test/environments/rails22/config/environment.rb +0 -25
  576. data/test/environments/rails22/config/environments/development.rb +0 -10
  577. data/test/environments/rails22/config/environments/production.rb +0 -8
  578. data/test/environments/rails22/config/environments/test.rb +0 -10
  579. data/test/environments/rails22/config/routes.rb +0 -5
  580. data/test/environments/rails22/db/schema.rb +0 -5
  581. data/test/environments/rails23/Gemfile +0 -24
  582. data/test/environments/rails23/Rakefile +0 -16
  583. data/test/environments/rails23/app/controllers/application.rb +0 -20
  584. data/test/environments/rails23/config/boot.rb +0 -127
  585. data/test/environments/rails23/config/database.yml +0 -26
  586. data/test/environments/rails23/config/environment.rb +0 -16
  587. data/test/environments/rails23/config/environments/production.rb +0 -8
  588. data/test/environments/rails23/config/environments/test.rb +0 -10
  589. data/test/environments/rails23/config/preinitializer.rb +0 -25
  590. data/test/environments/rails23/config/routes.rb +0 -5
  591. data/test/environments/rails23/db/schema.rb +0 -5
  592. data/test/environments/rails30/Gemfile +0 -23
  593. data/test/environments/rails30/Rakefile +0 -11
  594. data/test/environments/rails30/config/application.rb +0 -17
  595. data/test/environments/rails30/config/boot.rb +0 -10
  596. data/test/environments/rails30/config/database.yml +0 -26
  597. data/test/environments/rails30/config/environment.rb +0 -6
  598. data/test/environments/rails30/config/initializers/new_rails_defaults.rb +0 -11
  599. data/test/environments/rails30/db/schema.rb +0 -5
  600. data/test/environments/rails31/Gemfile +0 -24
  601. data/test/environments/rails31/Rakefile +0 -11
  602. data/test/environments/rails31/config/application.rb +0 -18
  603. data/test/environments/rails31/config/boot.rb +0 -10
  604. data/test/environments/rails31/config/database.yml +0 -26
  605. data/test/environments/rails31/config/environment.rb +0 -6
  606. data/test/environments/rails31/config/initializers/new_rails_defaults.rb +0 -21
  607. data/test/environments/rails31/db/schema.rb +0 -5
  608. data/test/environments/rails32/Gemfile +0 -26
  609. data/test/environments/rails32/Rakefile +0 -11
  610. data/test/environments/rails32/config/application.rb +0 -19
  611. data/test/environments/rails32/config/boot.rb +0 -10
  612. data/test/environments/rails32/config/database.yml +0 -31
  613. data/test/environments/rails32/config/environment.rb +0 -6
  614. data/test/environments/rails32/db/schema.rb +0 -5
  615. data/test/environments/rails40/Gemfile +0 -43
  616. data/test/environments/rails40/Rakefile +0 -11
  617. data/test/environments/rails40/config/application.rb +0 -18
  618. data/test/environments/rails40/config/boot.rb +0 -10
  619. data/test/environments/rails40/config/database.yml +0 -26
  620. data/test/environments/rails40/config/environment.rb +0 -6
  621. data/test/environments/rails40/db/schema.rb +0 -5
  622. data/test/environments/rails41/Gemfile +0 -35
  623. data/test/environments/rails41/Rakefile +0 -11
  624. data/test/environments/rails41/config/application.rb +0 -18
  625. data/test/environments/rails41/config/boot.rb +0 -10
  626. data/test/environments/rails41/config/database.yml +0 -26
  627. data/test/environments/rails41/config/environment.rb +0 -6
  628. data/test/environments/rails41/db/schema.rb +0 -5
  629. data/test/environments/rails42/Gemfile +0 -39
  630. data/test/environments/rails42/Rakefile +0 -11
  631. data/test/environments/rails42/config/application.rb +0 -18
  632. data/test/environments/rails42/config/boot.rb +0 -10
  633. data/test/environments/rails42/config/database.yml +0 -26
  634. data/test/environments/rails42/config/environment.rb +0 -6
  635. data/test/environments/rails42/db/schema.rb +0 -5
  636. data/test/fixtures/cross_agent_tests/README.md +0 -56
  637. data/test/fixtures/cross_agent_tests/attribute_configuration.json +0 -384
  638. data/test/fixtures/cross_agent_tests/cat_map.json +0 -597
  639. data/test/fixtures/cross_agent_tests/docker_container_id/README.md +0 -6
  640. data/test/fixtures/cross_agent_tests/docker_container_id/cases.json +0 -46
  641. data/test/fixtures/cross_agent_tests/docker_container_id/docker-0.9.1.txt +0 -10
  642. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.0.0.txt +0 -10
  643. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-lxc-driver.txt +0 -10
  644. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-fs.txt +0 -10
  645. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.1.2-native-driver-systemd.txt +0 -10
  646. data/test/fixtures/cross_agent_tests/docker_container_id/docker-1.3.txt +0 -9
  647. data/test/fixtures/cross_agent_tests/docker_container_id/empty.txt +0 -0
  648. data/test/fixtures/cross_agent_tests/docker_container_id/heroku.txt +0 -1
  649. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-lxc-container.txt +0 -10
  650. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.04-no-container.txt +0 -10
  651. data/test/fixtures/cross_agent_tests/docker_container_id/ubuntu-14.10-no-container.txt +0 -10
  652. data/test/fixtures/cross_agent_tests/labels.json +0 -133
  653. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/README.md +0 -16
  654. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.colon_obfuscated.txt +0 -3
  655. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.explain.txt +0 -3
  656. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.obfuscated.txt +0 -3
  657. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/basic_where.query.txt +0 -1
  658. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.colon_obfuscated.txt +0 -2
  659. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.explain.txt +0 -2
  660. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.obfuscated.txt +0 -2
  661. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/current_date.query.txt +0 -1
  662. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.colon_obfuscated.txt +0 -2
  663. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.explain.txt +0 -2
  664. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.obfuscated.txt +0 -2
  665. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/date.query.txt +0 -1
  666. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.colon_obfuscated.txt +0 -2
  667. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.explain.txt +0 -3
  668. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.obfuscated.txt +0 -2
  669. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_newline.query.txt +0 -1
  670. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.colon_obfuscated.txt +0 -2
  671. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.explain.txt +0 -2
  672. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.obfuscated.txt +0 -2
  673. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/embedded_quote.query.txt +0 -1
  674. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.colon_obfuscated.txt +0 -2
  675. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.explain.txt +0 -2
  676. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.obfuscated.txt +0 -2
  677. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/floating_point.query.txt +0 -1
  678. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.colon_obfuscated.txt +0 -5
  679. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.explain.txt +0 -5
  680. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.obfuscated.txt +0 -5
  681. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/function_with_strings.query.txt +0 -1
  682. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.colon_obfuscated.txt +0 -2
  683. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.explain.txt +0 -2
  684. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.obfuscated.txt +0 -2
  685. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/quote_in_table_name.query.txt +0 -1
  686. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.colon_obfuscated.txt +0 -5
  687. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.explain.txt +0 -5
  688. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.obfuscated.txt +0 -5
  689. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/subplan.query.txt +0 -1
  690. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.colon_obfuscated.txt +0 -2
  691. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.explain.txt +0 -2
  692. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.obfuscated.txt +0 -2
  693. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_integer.query.txt +0 -1
  694. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.colon_obfuscated.txt +0 -2
  695. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.explain.txt +0 -2
  696. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.obfuscated.txt +0 -2
  697. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_regex_chars.query.txt +0 -1
  698. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.colon_obfuscated.txt +0 -3
  699. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.explain.txt +0 -3
  700. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.obfuscated.txt +0 -3
  701. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/where_with_substring.query.txt +0 -1
  702. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.colon_obfuscated.txt +0 -2
  703. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.explain.txt +0 -2
  704. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.obfuscated.txt +0 -2
  705. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case1.query.txt +0 -1
  706. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.colon_obfuscated.txt +0 -2
  707. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.explain.txt +0 -3
  708. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.obfuscated.txt +0 -2
  709. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case2.query.txt +0 -1
  710. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.colon_obfuscated.txt +0 -2
  711. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.explain.txt +0 -2
  712. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.obfuscated.txt +0 -2
  713. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case3.query.txt +0 -1
  714. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.colon_obfuscated.txt +0 -2
  715. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.explain.txt +0 -2
  716. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.obfuscated.txt +0 -2
  717. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case4.query.txt +0 -1
  718. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.colon_obfuscated.txt +0 -2
  719. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.explain.txt +0 -2
  720. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.obfuscated.txt +0 -2
  721. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case5.query.txt +0 -1
  722. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.colon_obfuscated.txt +0 -2
  723. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.explain.txt +0 -2
  724. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.obfuscated.txt +0 -2
  725. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case6.query.txt +0 -1
  726. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.colon_obfuscated.txt +0 -2
  727. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.explain.txt +0 -2
  728. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.obfuscated.txt +0 -2
  729. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case7.query.txt +0 -1
  730. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.colon_obfuscated.txt +0 -2
  731. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.explain.txt +0 -2
  732. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.obfuscated.txt +0 -2
  733. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case8.query.txt +0 -1
  734. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.colon_obfuscated.txt +0 -2
  735. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.explain.txt +0 -2
  736. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.obfuscated.txt +0 -2
  737. data/test/fixtures/cross_agent_tests/postgres_explain_obfuscation/with_escape_case9.query.txt +0 -1
  738. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_1logical.txt +0 -3
  739. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_1core_2logical.txt +0 -14
  740. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_2core_2logical.txt +0 -14
  741. data/test/fixtures/cross_agent_tests/proc_cpuinfo/1pack_4core_4logical.txt +0 -28
  742. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_12core_24logical.txt +0 -575
  743. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_20core_40logical.txt +0 -999
  744. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_2logical.txt +0 -51
  745. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_2core_4logical.txt +0 -28
  746. data/test/fixtures/cross_agent_tests/proc_cpuinfo/2pack_4core_4logical.txt +0 -28
  747. data/test/fixtures/cross_agent_tests/proc_cpuinfo/4pack_4core_4logical.txt +0 -103
  748. data/test/fixtures/cross_agent_tests/proc_cpuinfo/8pack_8core_8logical.txt +0 -199
  749. data/test/fixtures/cross_agent_tests/proc_cpuinfo/README.md +0 -24
  750. data/test/fixtures/cross_agent_tests/proc_cpuinfo/Xpack_Xcore_2logical.txt +0 -43
  751. data/test/fixtures/cross_agent_tests/proc_meminfo/README.md +0 -7
  752. data/test/fixtures/cross_agent_tests/proc_meminfo/meminfo_4096MB.txt +0 -47
  753. data/test/fixtures/cross_agent_tests/rules.json +0 -165
  754. data/test/fixtures/cross_agent_tests/rum_client_config.json +0 -62
  755. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/close-body-in-comment.html +0 -10
  756. data/test/fixtures/cross_agent_tests/rum_footer_insertion_location/dynamic-iframe.html +0 -19
  757. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/basic.html +0 -10
  758. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/body_with_attributes.html +0 -3
  759. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag.html +0 -11
  760. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_after_x_ua_tag.html +0 -11
  761. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_before_x_ua_tag.html +0 -11
  762. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/charset_tag_with_spaces.html +0 -11
  763. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments1.html +0 -24
  764. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/comments2.html +0 -24
  765. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag.html +0 -11
  766. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_after_x_ua_tag.html +0 -11
  767. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/content_type_charset_tag_before_x_ua_tag.html +0 -11
  768. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/empty_head +0 -4
  769. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes1.html +0 -27
  770. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes2.html +0 -24
  771. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_quotes_mismatch.html +0 -24
  772. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes1.html +0 -25
  773. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/gt_in_single_quotes_mismatch.html +0 -25
  774. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/head_with_attributes.html +0 -10
  775. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/incomplete_non_meta_tags.html +0 -10
  776. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_end_header.html +0 -6
  777. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_header.html +0 -7
  778. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_html_and_no_header.html +0 -3
  779. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/no_start_header.html +0 -9
  780. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script1.html +0 -19
  781. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/script2.html +0 -17
  782. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag.html +0 -10
  783. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiline.html +0 -11
  784. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_multiple_tags.html +0 -12
  785. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_spaces_around_equals.html +0 -10
  786. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_others.html +0 -11
  787. data/test/fixtures/cross_agent_tests/rum_loader_insertion_location/x_ua_meta_tag_with_spaces.html +0 -10
  788. data/test/fixtures/cross_agent_tests/sql_obfuscation/README.md +0 -30
  789. data/test/fixtures/cross_agent_tests/sql_obfuscation/sql_obfuscation.json +0 -365
  790. data/test/fixtures/cross_agent_tests/sql_parsing.json +0 -55
  791. data/test/fixtures/cross_agent_tests/synthetics/README.md +0 -65
  792. data/test/fixtures/cross_agent_tests/synthetics/synthetics.json +0 -317
  793. data/test/fixtures/cross_agent_tests/transaction_segment_terms.json +0 -101
  794. data/test/fixtures/cross_agent_tests/url_clean.json +0 -15
  795. data/test/fixtures/cross_agent_tests/url_domain_extraction.json +0 -35
  796. data/test/helpers/exceptions.rb +0 -16
  797. data/test/helpers/file_searching.rb +0 -28
  798. data/test/helpers/mongo_metric_builder.rb +0 -28
  799. data/test/helpers/runtime_detection.rb +0 -17
  800. data/test/intentional_fail.rb +0 -13
  801. data/test/multiverse/.gitignore +0 -13
  802. data/test/multiverse/README.md +0 -85
  803. data/test/multiverse/lib/multiverse/color.rb +0 -23
  804. data/test/multiverse/lib/multiverse/envfile.rb +0 -66
  805. data/test/multiverse/lib/multiverse/environment.rb +0 -19
  806. data/test/multiverse/lib/multiverse/output_collector.rb +0 -82
  807. data/test/multiverse/lib/multiverse/runner.rb +0 -117
  808. data/test/multiverse/lib/multiverse/suite.rb +0 -525
  809. data/test/multiverse/script/runner +0 -5
  810. data/test/multiverse/suites/active_record/.gitignore +0 -1
  811. data/test/multiverse/suites/active_record/Envfile +0 -67
  812. data/test/multiverse/suites/active_record/Rakefile +0 -9
  813. data/test/multiverse/suites/active_record/active_record_test.rb +0 -374
  814. data/test/multiverse/suites/active_record/app/models/models.rb +0 -27
  815. data/test/multiverse/suites/active_record/ar_method_aliasing.rb +0 -43
  816. data/test/multiverse/suites/active_record/before_suite.rb +0 -23
  817. data/test/multiverse/suites/active_record/config/database.rb +0 -79
  818. data/test/multiverse/suites/active_record/config/database.yml +0 -19
  819. data/test/multiverse/suites/active_record/config/newrelic.yml +0 -18
  820. data/test/multiverse/suites/active_record/db/migrate/20141105131800_create_users_and_aliases.rb +0 -21
  821. data/test/multiverse/suites/active_record/db/migrate/20141106082200_create_orders_and_shipments.rb +0 -25
  822. data/test/multiverse/suites/activemerchant/Envfile +0 -36
  823. data/test/multiverse/suites/activemerchant/activemerchant_test.rb +0 -62
  824. data/test/multiverse/suites/agent_only/Envfile +0 -4
  825. data/test/multiverse/suites/agent_only/agent_attributes_test.rb +0 -145
  826. data/test/multiverse/suites/agent_only/agent_run_id_handling_test.rb +0 -39
  827. data/test/multiverse/suites/agent_only/audit_log_test.rb +0 -58
  828. data/test/multiverse/suites/agent_only/collector_exception_handling_test.rb +0 -87
  829. data/test/multiverse/suites/agent_only/config/newrelic.yml +0 -27
  830. data/test/multiverse/suites/agent_only/cross_application_tracing_test.rb +0 -94
  831. data/test/multiverse/suites/agent_only/custom_analytics_events_test.rb +0 -67
  832. data/test/multiverse/suites/agent_only/custom_queue_time_test.rb +0 -60
  833. data/test/multiverse/suites/agent_only/encoding_handling_test.rb +0 -130
  834. data/test/multiverse/suites/agent_only/exclusive_time_test.rb +0 -176
  835. data/test/multiverse/suites/agent_only/harvest_timestamps_test.rb +0 -83
  836. data/test/multiverse/suites/agent_only/http_response_code_test.rb +0 -38
  837. data/test/multiverse/suites/agent_only/keepalive_test.rb +0 -24
  838. data/test/multiverse/suites/agent_only/key_transactions_test.rb +0 -118
  839. data/test/multiverse/suites/agent_only/labels_test.rb +0 -83
  840. data/test/multiverse/suites/agent_only/logging_test.rb +0 -162
  841. data/test/multiverse/suites/agent_only/marshaling_test.rb +0 -88
  842. data/test/multiverse/suites/agent_only/pipe_manager_test.rb +0 -41
  843. data/test/multiverse/suites/agent_only/rename_rule_test.rb +0 -91
  844. data/test/multiverse/suites/agent_only/rum_instrumentation_test.rb +0 -97
  845. data/test/multiverse/suites/agent_only/script/env_change.rb +0 -10
  846. data/test/multiverse/suites/agent_only/script/loading.rb +0 -20
  847. data/test/multiverse/suites/agent_only/script/symbol_env.rb +0 -10
  848. data/test/multiverse/suites/agent_only/service_timeout_test.rb +0 -39
  849. data/test/multiverse/suites/agent_only/set_transaction_name_test.rb +0 -118
  850. data/test/multiverse/suites/agent_only/ssl_test.rb +0 -20
  851. data/test/multiverse/suites/agent_only/start_up_test.rb +0 -55
  852. data/test/multiverse/suites/agent_only/synthetics_test.rb +0 -131
  853. data/test/multiverse/suites/agent_only/testing_app.rb +0 -58
  854. data/test/multiverse/suites/agent_only/thread_profiling_test.rb +0 -160
  855. data/test/multiverse/suites/agent_only/transaction_ignoring_test.rb +0 -42
  856. data/test/multiverse/suites/agent_only/utilization_data_collection_test.rb +0 -171
  857. data/test/multiverse/suites/agent_only/xray_sessions_test.rb +0 -199
  858. data/test/multiverse/suites/bare/Envfile +0 -3
  859. data/test/multiverse/suites/bare/standalone_instrumentation_test.rb +0 -43
  860. data/test/multiverse/suites/capistrano/Capfile +0 -26
  861. data/test/multiverse/suites/capistrano/Envfile +0 -18
  862. data/test/multiverse/suites/capistrano/config/deploy/production.rb +0 -9
  863. data/test/multiverse/suites/capistrano/config/deploy.rb +0 -14
  864. data/test/multiverse/suites/capistrano/config/newrelic.yml +0 -21
  865. data/test/multiverse/suites/capistrano/deployment_test.rb +0 -54
  866. data/test/multiverse/suites/capistrano2/Capfile +0 -4
  867. data/test/multiverse/suites/capistrano2/Envfile +0 -8
  868. data/test/multiverse/suites/capistrano2/config/deploy.rb +0 -19
  869. data/test/multiverse/suites/capistrano2/config/newrelic.yml +0 -21
  870. data/test/multiverse/suites/capistrano2/deployment_test.rb +0 -37
  871. data/test/multiverse/suites/config_file_loading/Envfile +0 -13
  872. data/test/multiverse/suites/config_file_loading/config_file_loading_test.rb +0 -213
  873. data/test/multiverse/suites/curb/Envfile +0 -31
  874. data/test/multiverse/suites/curb/config/newrelic.yml +0 -18
  875. data/test/multiverse/suites/curb/curb_test.rb +0 -213
  876. data/test/multiverse/suites/datamapper/Envfile +0 -30
  877. data/test/multiverse/suites/datamapper/config/newrelic.yml +0 -20
  878. data/test/multiverse/suites/datamapper/datamapper_test.rb +0 -335
  879. data/test/multiverse/suites/deferred_instrumentation/Envfile +0 -15
  880. data/test/multiverse/suites/deferred_instrumentation/config/newrelic.yml +0 -20
  881. data/test/multiverse/suites/deferred_instrumentation/sinatra_test.rb +0 -107
  882. data/test/multiverse/suites/delayed_job/Envfile +0 -102
  883. data/test/multiverse/suites/delayed_job/before_suite.rb +0 -33
  884. data/test/multiverse/suites/delayed_job/config/newrelic.yml +0 -18
  885. data/test/multiverse/suites/delayed_job/delayed_job_sampler_test.rb +0 -128
  886. data/test/multiverse/suites/delayed_job/unsupported_backend_test.rb +0 -21
  887. data/test/multiverse/suites/excon/Envfile +0 -21
  888. data/test/multiverse/suites/excon/config/newrelic.yml +0 -18
  889. data/test/multiverse/suites/excon/excon_test.rb +0 -81
  890. data/test/multiverse/suites/grape/Envfile +0 -13
  891. data/test/multiverse/suites/grape/config/newrelic.yml +0 -19
  892. data/test/multiverse/suites/grape/grape_test.rb +0 -202
  893. data/test/multiverse/suites/grape/grape_test_api.rb +0 -64
  894. data/test/multiverse/suites/grape/grape_versioning_test.rb +0 -64
  895. data/test/multiverse/suites/grape/grape_versioning_test_api.rb +0 -72
  896. data/test/multiverse/suites/grape/unsupported_version_test.rb +0 -28
  897. data/test/multiverse/suites/high_security/Envfile +0 -3
  898. data/test/multiverse/suites/high_security/config/newrelic.yml +0 -70
  899. data/test/multiverse/suites/high_security/high_security_test.rb +0 -214
  900. data/test/multiverse/suites/httpclient/Envfile +0 -13
  901. data/test/multiverse/suites/httpclient/config/newrelic.yml +0 -18
  902. data/test/multiverse/suites/httpclient/httpclient_test.rb +0 -75
  903. data/test/multiverse/suites/json/Envfile +0 -25
  904. data/test/multiverse/suites/json/config/newrelic.yml +0 -22
  905. data/test/multiverse/suites/json/json_test.rb +0 -16
  906. data/test/multiverse/suites/marshalling/Envfile +0 -12
  907. data/test/multiverse/suites/marshalling/config/newrelic.yml +0 -20
  908. data/test/multiverse/suites/marshalling/marshalling_test.rb +0 -16
  909. data/test/multiverse/suites/memcached/Envfile +0 -52
  910. data/test/multiverse/suites/memcached/dalli_test.rb +0 -89
  911. data/test/multiverse/suites/memcached/memcache_client_test.rb +0 -25
  912. data/test/multiverse/suites/memcached/memcache_test_cases.rb +0 -302
  913. data/test/multiverse/suites/memcached/memcached_test.rb +0 -159
  914. data/test/multiverse/suites/mongo/Envfile +0 -69
  915. data/test/multiverse/suites/mongo/config/newrelic.yml +0 -18
  916. data/test/multiverse/suites/mongo/helpers/mongo_operation_tests.rb +0 -489
  917. data/test/multiverse/suites/mongo/helpers/mongo_replica_set.rb +0 -97
  918. data/test/multiverse/suites/mongo/helpers/mongo_replica_set_test.rb +0 -82
  919. data/test/multiverse/suites/mongo/helpers/mongo_server.rb +0 -241
  920. data/test/multiverse/suites/mongo/helpers/mongo_server_test.rb +0 -176
  921. data/test/multiverse/suites/mongo/mongo_connection_test.rb +0 -39
  922. data/test/multiverse/suites/mongo/mongo_instrumentation_test.rb +0 -39
  923. data/test/multiverse/suites/mongo/mongo_unsupported_version_test.rb +0 -72
  924. data/test/multiverse/suites/net_http/Envfile +0 -4
  925. data/test/multiverse/suites/net_http/config/newrelic.yml +0 -18
  926. data/test/multiverse/suites/net_http/net_http_test.rb +0 -111
  927. data/test/multiverse/suites/padrino/Envfile +0 -14
  928. data/test/multiverse/suites/padrino/config/newrelic.yml +0 -20
  929. data/test/multiverse/suites/padrino/padrino_test.rb +0 -52
  930. data/test/multiverse/suites/rack/Envfile +0 -35
  931. data/test/multiverse/suites/rack/builder_map_test.rb +0 -128
  932. data/test/multiverse/suites/rack/example_app.rb +0 -100
  933. data/test/multiverse/suites/rack/http_response_code_test.rb +0 -50
  934. data/test/multiverse/suites/rack/nested_non_rack_app_test.rb +0 -66
  935. data/test/multiverse/suites/rack/rack_auto_instrumentation_test.rb +0 -144
  936. data/test/multiverse/suites/rack/rack_cascade_test.rb +0 -45
  937. data/test/multiverse/suites/rack/rack_env_mutation_test.rb +0 -53
  938. data/test/multiverse/suites/rack/rack_parameter_filtering_test.rb +0 -49
  939. data/test/multiverse/suites/rack/rack_unsupported_version_test.rb +0 -43
  940. data/test/multiverse/suites/rack/url_map_test.rb +0 -117
  941. data/test/multiverse/suites/rails/Envfile +0 -61
  942. data/test/multiverse/suites/rails/action_controller_live_rum_test.rb +0 -39
  943. data/test/multiverse/suites/rails/activejob_test.rb +0 -152
  944. data/test/multiverse/suites/rails/app/views/foos/_foo.html.haml +0 -1
  945. data/test/multiverse/suites/rails/app/views/views/_a_partial.html.erb +0 -2
  946. data/test/multiverse/suites/rails/app/views/views/_mid_partial.html.erb +0 -1
  947. data/test/multiverse/suites/rails/app/views/views/_top_partial.html.erb +0 -3
  948. data/test/multiverse/suites/rails/app/views/views/deep_partial.html.erb +0 -3
  949. data/test/multiverse/suites/rails/app/views/views/haml_view.html.haml +0 -6
  950. data/test/multiverse/suites/rails/app/views/views/index.html.erb +0 -4
  951. data/test/multiverse/suites/rails/app.rb +0 -44
  952. data/test/multiverse/suites/rails/bad_instrumentation_test.rb +0 -29
  953. data/test/multiverse/suites/rails/config/newrelic.yml +0 -30
  954. data/test/multiverse/suites/rails/dummy.txt +0 -1
  955. data/test/multiverse/suites/rails/error_tracing_test.rb +0 -322
  956. data/test/multiverse/suites/rails/gc_instrumentation_test.rb +0 -93
  957. data/test/multiverse/suites/rails/ignore_test.rb +0 -79
  958. data/test/multiverse/suites/rails/middleware_instrumentation_test.rb +0 -41
  959. data/test/multiverse/suites/rails/middlewares.rb +0 -19
  960. data/test/multiverse/suites/rails/parameter_capture_test.rb +0 -299
  961. data/test/multiverse/suites/rails/queue_time_test.rb +0 -89
  962. data/test/multiverse/suites/rails/rails2_app/app/controllers/application.rb +0 -7
  963. data/test/multiverse/suites/rails/rails2_app/config/boot.rb +0 -127
  964. data/test/multiverse/suites/rails/rails2_app/config/database.yml +0 -18
  965. data/test/multiverse/suites/rails/rails2_app/config/environment.rb +0 -16
  966. data/test/multiverse/suites/rails/rails2_app/config/environments/development.rb +0 -10
  967. data/test/multiverse/suites/rails/rails2_app/config/initializers/load_newrelic_rpm.rb +0 -9
  968. data/test/multiverse/suites/rails/rails2_app/config/preinitializer.rb +0 -25
  969. data/test/multiverse/suites/rails/rails2_app/config/routes.rb +0 -19
  970. data/test/multiverse/suites/rails/rails2_app/db/schema.rb +0 -5
  971. data/test/multiverse/suites/rails/rails3_app/app_rails3_plus.rb +0 -92
  972. data/test/multiverse/suites/rails/request_statistics_test.rb +0 -192
  973. data/test/multiverse/suites/rails/transaction_ignoring_test.rb +0 -41
  974. data/test/multiverse/suites/rails/view_instrumentation_test.rb +0 -254
  975. data/test/multiverse/suites/resque/Envfile +0 -11
  976. data/test/multiverse/suites/resque/Rakefile +0 -3
  977. data/test/multiverse/suites/resque/config/newrelic.yml +0 -19
  978. data/test/multiverse/suites/resque/instrumentation_test.rb +0 -155
  979. data/test/multiverse/suites/resque/resque_marshalling_test.rb +0 -53
  980. data/test/multiverse/suites/sequel/Envfile +0 -34
  981. data/test/multiverse/suites/sequel/config/newrelic.yml +0 -18
  982. data/test/multiverse/suites/sequel/database.rb +0 -57
  983. data/test/multiverse/suites/sequel/sequel_extension_test.rb +0 -142
  984. data/test/multiverse/suites/sequel/sequel_helpers.rb +0 -62
  985. data/test/multiverse/suites/sequel/sequel_plugin_test.rb +0 -230
  986. data/test/multiverse/suites/sequel/sequel_safety_test.rb +0 -30
  987. data/test/multiverse/suites/sidekiq/Envfile +0 -31
  988. data/test/multiverse/suites/sidekiq/after_suite.rb +0 -16
  989. data/test/multiverse/suites/sidekiq/config/newrelic.yml +0 -20
  990. data/test/multiverse/suites/sidekiq/log/.gitkeep +0 -0
  991. data/test/multiverse/suites/sidekiq/sidekiq_instrumentation_test.rb +0 -181
  992. data/test/multiverse/suites/sidekiq/sidekiq_server.rb +0 -31
  993. data/test/multiverse/suites/sidekiq/test_worker.rb +0 -59
  994. data/test/multiverse/suites/sinatra/Envfile +0 -17
  995. data/test/multiverse/suites/sinatra/config/newrelic.yml +0 -21
  996. data/test/multiverse/suites/sinatra/ignoring_test.rb +0 -208
  997. data/test/multiverse/suites/sinatra/nested_middleware_test.rb +0 -39
  998. data/test/multiverse/suites/sinatra/sinatra_classic_test.rb +0 -99
  999. data/test/multiverse/suites/sinatra/sinatra_error_tracing_test.rb +0 -45
  1000. data/test/multiverse/suites/sinatra/sinatra_metric_explosion_test.rb +0 -96
  1001. data/test/multiverse/suites/sinatra/sinatra_modular_test.rb +0 -89
  1002. data/test/multiverse/suites/sinatra/sinatra_parameter_capture_test.rb +0 -65
  1003. data/test/multiverse/suites/sinatra/sinatra_routes_test.rb +0 -49
  1004. data/test/multiverse/suites/sinatra/sinatra_test_cases.rb +0 -137
  1005. data/test/multiverse/suites/typhoeus/Envfile +0 -57
  1006. data/test/multiverse/suites/typhoeus/config/newrelic.yml +0 -18
  1007. data/test/multiverse/suites/typhoeus/typhoeus_test.rb +0 -144
  1008. data/test/multiverse/suites/yajl/Envfile +0 -13
  1009. data/test/multiverse/suites/yajl/config/newrelic.yml +0 -21
  1010. data/test/multiverse/suites/yajl/yajl_test.rb +0 -18
  1011. data/test/multiverse/test/multiverse_test.rb +0 -59
  1012. data/test/multiverse/test/suite_examples/one/a/Envfile +0 -3
  1013. data/test/multiverse/test/suite_examples/one/a/a_test.rb +0 -14
  1014. data/test/multiverse/test/suite_examples/one/a/config/newrelic.yml +0 -22
  1015. data/test/multiverse/test/suite_examples/one/b/Envfile +0 -3
  1016. data/test/multiverse/test/suite_examples/one/b/b_test.rb +0 -14
  1017. data/test/multiverse/test/suite_examples/one/b/config/newrelic.yml +0 -22
  1018. data/test/multiverse/test/suite_examples/three/a/Envfile +0 -2
  1019. data/test/multiverse/test/suite_examples/three/a/fail_test.rb +0 -10
  1020. data/test/multiverse/test/suite_examples/three/b/Envfile +0 -2
  1021. data/test/multiverse/test/suite_examples/three/b/win_test.rb +0 -10
  1022. data/test/multiverse/test/suite_examples/two/a/Envfile +0 -1
  1023. data/test/multiverse/test/suite_examples/two/a/fail_test.rb +0 -10
  1024. data/test/new_relic/FAKECHANGELOG +0 -21
  1025. data/test/new_relic/agent/agent/connect_test.rb +0 -308
  1026. data/test/new_relic/agent/agent/start_test.rb +0 -191
  1027. data/test/new_relic/agent/agent/start_worker_thread_test.rb +0 -74
  1028. data/test/new_relic/agent/agent_logger_test.rb +0 -392
  1029. data/test/new_relic/agent/agent_test.rb +0 -701
  1030. data/test/new_relic/agent/agent_test_controller.rb +0 -84
  1031. data/test/new_relic/agent/apdex_from_server_test.rb +0 -13
  1032. data/test/new_relic/agent/attribute_filter_test.rb +0 -218
  1033. data/test/new_relic/agent/attribute_processing_test.rb +0 -160
  1034. data/test/new_relic/agent/audit_logger_test.rb +0 -213
  1035. data/test/new_relic/agent/autostart_test.rb +0 -110
  1036. data/test/new_relic/agent/busy_calculator_test.rb +0 -98
  1037. data/test/new_relic/agent/commands/agent_command_router_test.rb +0 -256
  1038. data/test/new_relic/agent/commands/agent_command_test.rb +0 -37
  1039. data/test/new_relic/agent/commands/thread_profiler_session_test.rb +0 -215
  1040. data/test/new_relic/agent/commands/xray_session_collection_test.rb +0 -332
  1041. data/test/new_relic/agent/commands/xray_session_test.rb +0 -42
  1042. data/test/new_relic/agent/configuration/default_source_test.rb +0 -226
  1043. data/test/new_relic/agent/configuration/dotted_hash_test.rb +0 -53
  1044. data/test/new_relic/agent/configuration/environment_source_test.rb +0 -201
  1045. data/test/new_relic/agent/configuration/high_security_source_test.rb +0 -83
  1046. data/test/new_relic/agent/configuration/manager_test.rb +0 -460
  1047. data/test/new_relic/agent/configuration/manual_source_test.rb +0 -18
  1048. data/test/new_relic/agent/configuration/orphan_configuration_test.rb +0 -89
  1049. data/test/new_relic/agent/configuration/server_source_test.rb +0 -202
  1050. data/test/new_relic/agent/configuration/yaml_source_test.rb +0 -93
  1051. data/test/new_relic/agent/cross_app_monitor_test.rb +0 -248
  1052. data/test/new_relic/agent/cross_app_tracing_test.rb +0 -71
  1053. data/test/new_relic/agent/custom_event_aggregator_test.rb +0 -88
  1054. data/test/new_relic/agent/database/postgres_explain_obfuscator_test.rb +0 -34
  1055. data/test/new_relic/agent/database/sql_obfuscation_test.rb +0 -59
  1056. data/test/new_relic/agent/database_test.rb +0 -400
  1057. data/test/new_relic/agent/datastores/metric_helper_test.rb +0 -97
  1058. data/test/new_relic/agent/datastores/mongo/metric_translator_test.rb +0 -320
  1059. data/test/new_relic/agent/datastores/mongo/obfuscator_test.rb +0 -91
  1060. data/test/new_relic/agent/datastores/mongo/statement_formatter_test.rb +0 -72
  1061. data/test/new_relic/agent/datastores_test.rb +0 -195
  1062. data/test/new_relic/agent/deprecator_test.rb +0 -52
  1063. data/test/new_relic/agent/encoding_normalizer_test.rb +0 -66
  1064. data/test/new_relic/agent/error_collector_test.rb +0 -595
  1065. data/test/new_relic/agent/event_buffer_test_cases.rb +0 -152
  1066. data/test/new_relic/agent/event_listener_test.rb +0 -70
  1067. data/test/new_relic/agent/event_loop_test.rb +0 -202
  1068. data/test/new_relic/agent/harvester_test.rb +0 -79
  1069. data/test/new_relic/agent/hash_extensions_test.rb +0 -34
  1070. data/test/new_relic/agent/hostname_test.rb +0 -93
  1071. data/test/new_relic/agent/http_clients/uri_util_test.rb +0 -64
  1072. data/test/new_relic/agent/inbound_request_monitor_test.rb +0 -49
  1073. data/test/new_relic/agent/instrumentation/action_controller_subscriber_test.rb +0 -299
  1074. data/test/new_relic/agent/instrumentation/action_view_subscriber_test.rb +0 -239
  1075. data/test/new_relic/agent/instrumentation/active_job_test.rb +0 -20
  1076. data/test/new_relic/agent/instrumentation/active_record_helper_test.rb +0 -77
  1077. data/test/new_relic/agent/instrumentation/active_record_subscriber_test.rb +0 -132
  1078. data/test/new_relic/agent/instrumentation/controller_instrumentation_test.rb +0 -325
  1079. data/test/new_relic/agent/instrumentation/instrumentation_test.rb +0 -14
  1080. data/test/new_relic/agent/instrumentation/metric_frame_test.rb +0 -22
  1081. data/test/new_relic/agent/instrumentation/middleware_proxy_test.rb +0 -257
  1082. data/test/new_relic/agent/instrumentation/middleware_tracing_test.rb +0 -49
  1083. data/test/new_relic/agent/instrumentation/net_instrumentation_test.rb +0 -35
  1084. data/test/new_relic/agent/instrumentation/queue_time_test.rb +0 -103
  1085. data/test/new_relic/agent/instrumentation/rack_test.rb +0 -47
  1086. data/test/new_relic/agent/instrumentation/sequel_helper_test.rb +0 -36
  1087. data/test/new_relic/agent/instrumentation/sinatra/transaction_namer_test.rb +0 -55
  1088. data/test/new_relic/agent/instrumentation/sinatra_test.rb +0 -80
  1089. data/test/new_relic/agent/instrumentation/task_instrumentation_test.rb +0 -196
  1090. data/test/new_relic/agent/javascript_instrumentor_test.rb +0 -340
  1091. data/test/new_relic/agent/memory_logger_test.rb +0 -67
  1092. data/test/new_relic/agent/method_interrobang_test.rb +0 -31
  1093. data/test/new_relic/agent/method_tracer/class_methods/add_method_tracer_test.rb +0 -122
  1094. data/test/new_relic/agent/method_tracer/instance_methods/trace_execution_scoped_test.rb +0 -224
  1095. data/test/new_relic/agent/method_tracer_test.rb +0 -474
  1096. data/test/new_relic/agent/method_visibility_test.rb +0 -90
  1097. data/test/new_relic/agent/mock_scope_listener.rb +0 -27
  1098. data/test/new_relic/agent/new_relic_service_test.rb +0 -1063
  1099. data/test/new_relic/agent/obfuscator_test.rb +0 -77
  1100. data/test/new_relic/agent/parameter_filtering_test.rb +0 -39
  1101. data/test/new_relic/agent/pipe_channel_manager_test.rb +0 -278
  1102. data/test/new_relic/agent/pipe_service_test.rb +0 -145
  1103. data/test/new_relic/agent/rpm_agent_test.rb +0 -104
  1104. data/test/new_relic/agent/rules_engine_test.rb +0 -136
  1105. data/test/new_relic/agent/sampled_buffer_test.rb +0 -106
  1106. data/test/new_relic/agent/sampler_collection_test.rb +0 -90
  1107. data/test/new_relic/agent/sampler_test.rb +0 -66
  1108. data/test/new_relic/agent/samplers/cpu_sampler_test.rb +0 -51
  1109. data/test/new_relic/agent/samplers/vm_sampler_test.rb +0 -349
  1110. data/test/new_relic/agent/shim_agent_test.rb +0 -20
  1111. data/test/new_relic/agent/sized_buffer_test.rb +0 -29
  1112. data/test/new_relic/agent/sql_sampler_test.rb +0 -403
  1113. data/test/new_relic/agent/stats_engine/gc_profiler_test.rb +0 -188
  1114. data/test/new_relic/agent/stats_engine/metric_stats_test.rb +0 -347
  1115. data/test/new_relic/agent/stats_engine/samplers_test.rb +0 -98
  1116. data/test/new_relic/agent/stats_engine/stats_hash_test.rb +0 -198
  1117. data/test/new_relic/agent/stats_engine_test.rb +0 -32
  1118. data/test/new_relic/agent/stats_test.rb +0 -189
  1119. data/test/new_relic/agent/synthetics_event_buffer_test.rb +0 -54
  1120. data/test/new_relic/agent/synthetics_monitor_test.rb +0 -93
  1121. data/test/new_relic/agent/system_info_test.rb +0 -61
  1122. data/test/new_relic/agent/threading/agent_thread_test.rb +0 -149
  1123. data/test/new_relic/agent/threading/backtrace_node_test.rb +0 -184
  1124. data/test/new_relic/agent/threading/backtrace_service_test.rb +0 -595
  1125. data/test/new_relic/agent/threading/fake_thread.rb +0 -43
  1126. data/test/new_relic/agent/threading/thread_profile_test.rb +0 -272
  1127. data/test/new_relic/agent/threading/threaded_test_case.rb +0 -18
  1128. data/test/new_relic/agent/traced_method_stack_test.rb +0 -187
  1129. data/test/new_relic/agent/transaction/attributes_test.rb +0 -276
  1130. data/test/new_relic/agent/transaction/developer_mode_sample_buffer_test.rb +0 -75
  1131. data/test/new_relic/agent/transaction/slowest_sample_buffer_test.rb +0 -67
  1132. data/test/new_relic/agent/transaction/synthetics_sample_buffer_test.rb +0 -38
  1133. data/test/new_relic/agent/transaction/trace_node_test.rb +0 -361
  1134. data/test/new_relic/agent/transaction/trace_test.rb +0 -394
  1135. data/test/new_relic/agent/transaction/xray_sample_buffer_test.rb +0 -71
  1136. data/test/new_relic/agent/transaction_event_aggregator_test.rb +0 -433
  1137. data/test/new_relic/agent/transaction_interrobang_test.rb +0 -33
  1138. data/test/new_relic/agent/transaction_metrics_test.rb +0 -113
  1139. data/test/new_relic/agent/transaction_sample_builder_test.rb +0 -215
  1140. data/test/new_relic/agent/transaction_sampler_test.rb +0 -849
  1141. data/test/new_relic/agent/transaction_state_test.rb +0 -122
  1142. data/test/new_relic/agent/transaction_test.rb +0 -1435
  1143. data/test/new_relic/agent/transaction_timings_test.rb +0 -91
  1144. data/test/new_relic/agent/utilization_data_test.rb +0 -18
  1145. data/test/new_relic/agent/vm/monotonic_gc_profiler_test.rb +0 -42
  1146. data/test/new_relic/agent/vm/mri_vm_test.rb +0 -42
  1147. data/test/new_relic/agent/vm/rubinius_vm_test.rb +0 -69
  1148. data/test/new_relic/agent/vm/snapshot_test.rb +0 -13
  1149. data/test/new_relic/agent/vm_test.rb +0 -48
  1150. data/test/new_relic/agent/worker_loop_test.rb +0 -98
  1151. data/test/new_relic/agent_test.rb +0 -471
  1152. data/test/new_relic/cli/commands/deployments_test.rb +0 -121
  1153. data/test/new_relic/cli/commands/install_test.rb +0 -27
  1154. data/test/new_relic/coerce_test.rb +0 -95
  1155. data/test/new_relic/collection_helper_test.rb +0 -151
  1156. data/test/new_relic/control/class_methods_test.rb +0 -48
  1157. data/test/new_relic/control/frameworks/rails_test.rb +0 -29
  1158. data/test/new_relic/control/instance_methods_test.rb +0 -50
  1159. data/test/new_relic/control/instrumentation_test.rb +0 -56
  1160. data/test/new_relic/control_test.rb +0 -232
  1161. data/test/new_relic/data_container_tests.rb +0 -76
  1162. data/test/new_relic/dependency_detection_test.rb +0 -155
  1163. data/test/new_relic/dispatcher_test.rb +0 -59
  1164. data/test/new_relic/environment_report_test.rb +0 -107
  1165. data/test/new_relic/evil_server.rb +0 -55
  1166. data/test/new_relic/fake_collector.rb +0 -398
  1167. data/test/new_relic/fake_external_server.rb +0 -65
  1168. data/test/new_relic/fake_instance_metadata_service.rb +0 -45
  1169. data/test/new_relic/fake_rpm_site.rb +0 -35
  1170. data/test/new_relic/fake_server.rb +0 -104
  1171. data/test/new_relic/filtering_test_app.rb +0 -19
  1172. data/test/new_relic/framework_test.rb +0 -58
  1173. data/test/new_relic/http_client_test_cases.rb +0 -621
  1174. data/test/new_relic/json_wrapper_test.rb +0 -32
  1175. data/test/new_relic/language_support_test.rb +0 -74
  1176. data/test/new_relic/latest_changes_test.rb +0 -45
  1177. data/test/new_relic/license_test.rb +0 -126
  1178. data/test/new_relic/load_test.rb +0 -15
  1179. data/test/new_relic/local_environment_test.rb +0 -103
  1180. data/test/new_relic/marshalling_test_cases.rb +0 -140
  1181. data/test/new_relic/metric_data_test.rb +0 -191
  1182. data/test/new_relic/metric_parser/metric_parser_test.rb +0 -17
  1183. data/test/new_relic/metric_spec_test.rb +0 -145
  1184. data/test/new_relic/multiverse_helpers.rb +0 -271
  1185. data/test/new_relic/noticed_error_test.rb +0 -197
  1186. data/test/new_relic/rack/agent_hooks_test.rb +0 -44
  1187. data/test/new_relic/rack/agent_middleware_test.rb +0 -32
  1188. data/test/new_relic/rack/browser_monitoring_test.rb +0 -197
  1189. data/test/new_relic/rack/deferred_instrumentation_test.rb +0 -33
  1190. data/test/new_relic/rack/developer_mode/segment_summary_test.rb +0 -96
  1191. data/test/new_relic/rack/developer_mode_helper_test.rb +0 -136
  1192. data/test/new_relic/rack/developer_mode_test.rb +0 -93
  1193. data/test/new_relic/rack/error_collector_test.rb +0 -77
  1194. data/test/new_relic/transaction_ignoring_test_cases.rb +0 -102
  1195. data/test/new_relic/version_number_test.rb +0 -101
  1196. data/test/performance/README.md +0 -182
  1197. data/test/performance/lib/performance/baseline.rb +0 -36
  1198. data/test/performance/lib/performance/baseline_compare_reporter.rb +0 -103
  1199. data/test/performance/lib/performance/baseline_save_reporter.rb +0 -24
  1200. data/test/performance/lib/performance/console_reporter.rb +0 -66
  1201. data/test/performance/lib/performance/formatting_helpers.rb +0 -22
  1202. data/test/performance/lib/performance/hako_client.rb +0 -31
  1203. data/test/performance/lib/performance/hako_reporter.rb +0 -26
  1204. data/test/performance/lib/performance/instrumentation/cpu_usage.rb +0 -26
  1205. data/test/performance/lib/performance/instrumentation/gc_stats.rb +0 -58
  1206. data/test/performance/lib/performance/instrumentation/perf_tools.rb +0 -30
  1207. data/test/performance/lib/performance/instrumentation/stackprof.rb +0 -46
  1208. data/test/performance/lib/performance/instrumentor.rb +0 -96
  1209. data/test/performance/lib/performance/json_reporter.rb +0 -15
  1210. data/test/performance/lib/performance/platform.rb +0 -37
  1211. data/test/performance/lib/performance/reporting.rb +0 -36
  1212. data/test/performance/lib/performance/result.rb +0 -104
  1213. data/test/performance/lib/performance/runner.rb +0 -221
  1214. data/test/performance/lib/performance/table.rb +0 -105
  1215. data/test/performance/lib/performance/test_case.rb +0 -152
  1216. data/test/performance/lib/performance/timer.rb +0 -40
  1217. data/test/performance/lib/performance.rb +0 -38
  1218. data/test/performance/script/baselines +0 -102
  1219. data/test/performance/script/mega-runner +0 -37
  1220. data/test/performance/script/runner +0 -133
  1221. data/test/performance/suites/active_record.rb +0 -47
  1222. data/test/performance/suites/agent_attributes.rb +0 -62
  1223. data/test/performance/suites/config.rb +0 -35
  1224. data/test/performance/suites/marshalling.rb +0 -156
  1225. data/test/performance/suites/queue_time.rb +0 -21
  1226. data/test/performance/suites/rack_middleware.rb +0 -136
  1227. data/test/performance/suites/rum_autoinsertion.rb +0 -75
  1228. data/test/performance/suites/sql_obfuscation.rb +0 -30
  1229. data/test/performance/suites/startup.rb +0 -12
  1230. data/test/performance/suites/stats_hash.rb +0 -30
  1231. data/test/performance/suites/thread_profiling.rb +0 -116
  1232. data/test/performance/suites/trace_execution_scoped.rb +0 -32
  1233. data/test/performance/suites/transaction_tracing.rb +0 -106
  1234. data/test/script/build_test_gem.sh +0 -57
  1235. data/test/script/ci.sh +0 -170
  1236. data/test/script/ci_agent-tests_runner.sh +0 -82
  1237. data/test/script/ci_bench.sh +0 -52
  1238. data/test/script/ci_multiverse_runner.sh +0 -63
  1239. data/test/script/path_hash.rb +0 -49
  1240. data/test/test_helper.rb +0 -267
  1241. data/ui/helpers/developer_mode_helper.rb +0 -324
  1242. data/ui/helpers/google_pie_chart.rb +0 -53
  1243. data/ui/views/layouts/newrelic_default.rhtml +0 -48
  1244. data/ui/views/newrelic/_explain_plans.rhtml +0 -27
  1245. data/ui/views/newrelic/_sample.rhtml +0 -20
  1246. data/ui/views/newrelic/_segment.rhtml +0 -28
  1247. data/ui/views/newrelic/_segment_limit_message.rhtml +0 -1
  1248. data/ui/views/newrelic/_segment_row.rhtml +0 -12
  1249. data/ui/views/newrelic/_show_sample_detail.rhtml +0 -24
  1250. data/ui/views/newrelic/_show_sample_sql.rhtml +0 -24
  1251. data/ui/views/newrelic/_show_sample_summary.rhtml +0 -3
  1252. data/ui/views/newrelic/_sql_row.rhtml +0 -16
  1253. data/ui/views/newrelic/_stack_trace.rhtml +0 -15
  1254. data/ui/views/newrelic/_table.rhtml +0 -12
  1255. data/ui/views/newrelic/explain_sql.rhtml +0 -43
  1256. data/ui/views/newrelic/file/images/arrow-close.png +0 -0
  1257. data/ui/views/newrelic/file/images/arrow-open.png +0 -0
  1258. data/ui/views/newrelic/file/images/blue_bar.gif +0 -0
  1259. data/ui/views/newrelic/file/images/file_icon.png +0 -0
  1260. data/ui/views/newrelic/file/images/gray_bar.gif +0 -0
  1261. data/ui/views/newrelic/file/images/new-relic-rpm-desktop.gif +0 -0
  1262. data/ui/views/newrelic/file/images/new_relic_rpm_desktop.gif +0 -0
  1263. data/ui/views/newrelic/file/images/textmate.png +0 -0
  1264. data/ui/views/newrelic/file/javascript/jquery-1.4.2.js +0 -6243
  1265. data/ui/views/newrelic/file/javascript/transaction_sample.js +0 -123
  1266. data/ui/views/newrelic/file/stylesheets/style.css +0 -490
  1267. data/ui/views/newrelic/index.rhtml +0 -70
  1268. data/ui/views/newrelic/sample_not_found.rhtml +0 -2
  1269. data/ui/views/newrelic/show_sample.rhtml +0 -81
  1270. data/ui/views/newrelic/threads.rhtml +0 -45
  1271. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection/version.rb +0 -7
  1272. data/vendor/gems/dependency_detection-0.0.1.build/lib/dependency_detection.rb +0 -122
  1273. data/vendor/gems/metric_parser-0.1.0.pre1/.specification +0 -116
  1274. data/vendor/gems/metric_parser-0.1.0.pre1/lib/metric_parser.rb +0 -5
  1275. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/action_mailer.rb +0 -18
  1276. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_merchant.rb +0 -35
  1277. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/active_record.rb +0 -37
  1278. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/apdex.rb +0 -93
  1279. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/background_transaction.rb +0 -11
  1280. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/client.rb +0 -50
  1281. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller.rb +0 -71
  1282. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_cpu.rb +0 -47
  1283. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/controller_ext.rb +0 -21
  1284. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database.rb +0 -52
  1285. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/database_pool.rb +0 -28
  1286. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net.rb +0 -32
  1287. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/dot_net_parser.rb +0 -21
  1288. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/errors.rb +0 -15
  1289. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/external.rb +0 -59
  1290. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/frontend.rb +0 -44
  1291. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/gc.rb +0 -24
  1292. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/hibernate_session.rb +0 -11
  1293. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java.rb +0 -35
  1294. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/java_parser.rb +0 -21
  1295. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp.rb +0 -38
  1296. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/jsp_tag.rb +0 -11
  1297. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/mem_cache.rb +0 -59
  1298. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/metric_parser.rb +0 -138
  1299. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/middleware.rb +0 -34
  1300. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/nested.rb +0 -24
  1301. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/orm.rb +0 -31
  1302. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/other_transaction.rb +0 -44
  1303. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet.rb +0 -11
  1304. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_context_listener.rb +0 -11
  1305. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_filter.rb +0 -11
  1306. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/servlet_init.rb +0 -11
  1307. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr.rb +0 -31
  1308. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/solr_request_handler.rb +0 -19
  1309. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring.rb +0 -58
  1310. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_controller.rb +0 -10
  1311. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/spring_view.rb +0 -10
  1312. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_action.rb +0 -24
  1313. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/struts_result.rb +0 -24
  1314. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/version.rb +0 -9
  1315. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/view.rb +0 -74
  1316. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_frontend.rb +0 -22
  1317. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_service.rb +0 -18
  1318. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser/web_transaction.rb +0 -137
  1319. data/vendor/gems/metric_parser-0.1.0.pre1/lib/new_relic/metric_parser.rb +0 -70
data/newrelic.yml CHANGED
@@ -1,10 +1,10 @@
1
1
  #
2
- # This file configures the New Relic Agent. New Relic monitors Ruby, Java,
3
- # .NET, PHP, Python and Node applications with deep visibility and low
2
+ # This file configures the New Relic agent. New Relic monitors Ruby, Java,
3
+ # .NET, PHP, Python, Node, and Go applications with deep visibility and low
4
4
  # overhead. For more information, visit www.newrelic.com.
5
- #
5
+
6
6
  # Generated <%= Time.now.strftime('%B %d, %Y') %><%= ", for version #{@agent_version}" if @agent_version %>
7
- # <%= "\n# #{generated_for_user}\n#" if generated_for_user %>
7
+ #<%= "\n# #{generated_for_user}\n#" if generated_for_user %>
8
8
  # For full documentation of agent configuration options, please refer to
9
9
  # https://docs.newrelic.com/docs/agents/ruby-agent/installation-configuration/ruby-agent-configuration
10
10
 
@@ -13,15 +13,841 @@ common: &default_settings
13
13
  license_key: <%= license_key %>
14
14
 
15
15
  # Your application name. Renaming here affects where data displays in New
16
- # Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications
16
+ # Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications
17
17
  app_name: <%= app_name %>
18
18
 
19
19
  # To disable the agent regardless of other settings, uncomment the following:
20
20
  # agent_enabled: false
21
21
 
22
- # Logging level for log/newrelic_agent.log
22
+ # Logging level for log/newrelic_agent.log; options are error, warn, info, or
23
+ # debug.
23
24
  log_level: info
24
25
 
26
+ # All of the following configuration options are optional. Review them, and
27
+ # uncomment or edit them if they appear relevant to your application needs.
28
+
29
+ # An array of ActiveSupport custom event names to subscribe to and instrument. For
30
+ # example,
31
+ # - one.custom.event
32
+ # - another.event
33
+ # - a.third.event
34
+ # active_support_custom_events_names: []
35
+
36
+ # If false, all LLM instrumentation (OpenAI only for now) will be disabled and no
37
+ # metrics, events, or spans will be sent. AI Monitoring is automatically disabled
38
+ # if high_security mode is enabled.
39
+ # ai_monitoring.enabled: false
40
+
41
+ # If false, LLM instrumentation (OpenAI only for now) will not capture input and
42
+ # output content on specific LLM events.
43
+ # The excluded attributes include:
44
+ # * content from LlmChatCompletionMessage events
45
+ # * input from LlmEmbedding events
46
+ # This is an optional security setting to prevent recording sensitive data sent to
47
+ # and received from your LLMs.
48
+ # ai_monitoring.record_content.enabled: true
49
+
50
+ # If true, enables capture of all HTTP request headers for all destinations.
51
+ # allow_all_headers: false
52
+
53
+ # Your New Relic userKey. Required when using the New Relic REST API v2 to record
54
+ # deployments using the newrelic deployments command.
55
+ # api_key: ""
56
+
57
+ # If true, enables log decoration and the collection of log events and metrics.
58
+ # application_logging.enabled: true
59
+
60
+ # A hash with key/value pairs to add as custom attributes to all log events
61
+ # forwarded to New Relic. If sending using an environment variable, the value must
62
+ # be formatted like: "key1=value1,key2=value2"
63
+ # application_logging.forwarding.custom_attributes: {}
64
+
65
+ # If true, the agent captures log records emitted by your application.
66
+ # application_logging.forwarding.enabled: true
67
+
68
+ # Sets the minimum level a log event must have to be forwarded to New Relic.
69
+ # This is based on the integer values of Ruby's Logger::Severity constants:
70
+ # https://github.com/ruby/ruby/blob/master/lib/logger/severity.rb
71
+ # The intention is to forward logs with the level given to the configuration, as
72
+ # well as any logs with a higher level of severity.
73
+ # For example, setting this value to "debug" will forward all log events to New
74
+ # Relic. Setting this value to "error" will only forward log events with the
75
+ # levels "error", "fatal", and "unknown".
76
+ # Valid values (ordered lowest to highest):
77
+ # * "debug"
78
+ # * "info"
79
+ # * "warn"
80
+ # * "error"
81
+ # * "fatal"
82
+ # * "unknown"
83
+ # application_logging.forwarding.log_level: debug
84
+
85
+ # Defines the maximum number of log records to buffer in memory at a time.
86
+ # application_logging.forwarding.max_samples_stored: 10000
87
+
88
+ # If true, the agent decorates logs with metadata to link to entities, hosts,
89
+ # traces, and spans.
90
+ # application_logging.local_decorating.enabled: false
91
+
92
+ # If true, the agent captures metrics related to logging for your application.
93
+ # application_logging.metrics.enabled: true
94
+
95
+ # If true, enables capture of attributes for all destinations.
96
+ # attributes.enabled: true
97
+
98
+ # Prefix of attributes to exclude from all destinations. Allows * as wildcard at
99
+ # end.
100
+ # attributes.exclude: []
101
+
102
+ # Prefix of attributes to include in all destinations. Allows * as wildcard at
103
+ # end.
104
+ # attributes.include: []
105
+
106
+ # If true, enables an audit log which logs communications with the New Relic
107
+ # collector.
108
+ # audit_log.enabled: false
109
+
110
+ # List of allowed endpoints to include in audit log.
111
+ # audit_log.endpoints: [".*"]
112
+
113
+ # Specifies a path to the audit log file (including the filename).
114
+ # audit_log.path: log/newrelic_audit.log
115
+
116
+ # Specify a list of constants that should prevent the agent from starting
117
+ # automatically. Separate individual constants with a comma ,. For example,
118
+ # "Rails::Console,UninstrumentedBackgroundJob".
119
+ # autostart.denylisted_constants: Rails::Command::ConsoleCommand,Rails::Command::CredentialsCommand,Rails::Command::Db::System::ChangeCommand,Rails::Command::DbConsoleCommand,Rails::Command::DestroyCommand,Rails::Command::DevCommand,Rails::Command::EncryptedCommand,Rails::Command::GenerateCommand,Rails::Command::InitializersCommand,Rails::Command::NotesCommand,Rails::Command::RoutesCommand,Rails::Command::RunnerCommand,Rails::Command::SecretsCommand,Rails::Console,Rails::DBConsole
120
+
121
+ # Defines a comma-delimited list of executables that the agent should not
122
+ # instrument. For example, "rake,my_ruby_script.rb".
123
+ # autostart.denylisted_executables: irb,rspec
124
+
125
+ # Defines a comma-delimited list of Rake tasks that the agent should not
126
+ # instrument. For example, "assets:precompile,db:migrate".
127
+ # autostart.denylisted_rake_tasks: about,assets:clean,assets:clobber,assets:environment,assets:precompile,assets:precompile:all,db:create,db:drop,db:fixtures:load,db:migrate,db:migrate:status,db:rollback,db:schema:cache:clear,db:schema:cache:dump,db:schema:dump,db:schema:load,db:seed,db:setup,db:structure:dump,db:version,doc:app,log:clear,middleware,notes,notes:custom,rails:template,rails:update,routes,secret,spec,spec:features,spec:requests,spec:controllers,spec:helpers,spec:models,spec:views,spec:routing,spec:rcov,stats,test,test:all,test:all:db,test:recent,test:single,test:uncommitted,time:zones:all,tmp:clear,tmp:create,webpacker:compile
128
+
129
+ # Backports the faster ActiveRecord connection lookup introduced in Rails 6, which
130
+ # improves agent performance when instrumenting ActiveRecord. Note that this
131
+ # setting may not be compatible with other gems that patch ActiveRecord.
132
+ # backport_fast_active_record_connection_lookup: false
133
+
134
+ # If true, the agent captures attributes from browser monitoring.
135
+ # browser_monitoring.attributes.enabled: false
136
+
137
+ # Prefix of attributes to exclude from browser monitoring. Allows * as wildcard at
138
+ # end.
139
+ # browser_monitoring.attributes.exclude: []
140
+
141
+ # Prefix of attributes to include in browser monitoring. Allows * as wildcard at
142
+ # end.
143
+ # browser_monitoring.attributes.include: []
144
+
145
+ # If true, enables auto-injection of the JavaScript header for page load timing
146
+ # (sometimes referred to as real user monitoring or RUM).
147
+ # browser_monitoring.auto_instrument: true
148
+
149
+ # If true, enables auto-injection of Content Security Policy Nonce in browser
150
+ # monitoring scripts. For now, auto-injection only works with Rails 5.2+.
151
+ # browser_monitoring.content_security_policy_nonce: true
152
+
153
+ # Manual override for the path to your local CA bundle. This CA bundle will be
154
+ # used to validate the SSL certificate presented by New Relic's data collection
155
+ # service.
156
+ # ca_bundle_path: nil
157
+
158
+ # Enable or disable the capture of memcache keys from transaction traces.
159
+ # capture_memcache_keys: false
160
+
161
+ # When true, the agent captures HTTP request parameters and attaches them to
162
+ # transaction traces, traced errors, and TransactionError events.
163
+ # When using the capture_params setting, the Ruby agent will not attempt to filter
164
+ # secret information. Recommendation: To filter secret information from request
165
+ # parameters, use the attributes.include setting instead. For more information,
166
+ # see the Ruby attribute examples.
167
+ # capture_params: false
168
+
169
+ # If true, the agent will clear Tracer::State in Agent.drop_buffered_data.
170
+ # clear_transaction_state_after_fork: false
171
+
172
+ # If true, the agent will report source code level metrics for traced methods.
173
+ # see:
174
+ # https://docs.newrelic.com/docs/apm/agents/ruby-agent/features/ruby-codestream-integration/
175
+ # code_level_metrics.enabled: true
176
+
177
+ # Path to newrelic.yml. If undefined, the agent checks the following directories
178
+ # (in order):
179
+ # * config/newrelic.yml
180
+ # * newrelic.yml
181
+ # * $HOME/.newrelic/newrelic.yml
182
+ # * $HOME/newrelic.yml
183
+ # config_path: newrelic.yml
184
+
185
+ # If false, custom attributes will not be sent on events.
186
+ # custom_attributes.enabled: true
187
+
188
+ # If true, the agent captures custom events.
189
+ # custom_insights_events.enabled: true
190
+
191
+ # * Specify a maximum number of custom events to buffer in memory at a time.'
192
+ # * When configuring the agent for AI monitoring, set to max value 100000. This
193
+ # ensures the agent captures the maximum amount of LLM events.
194
+ # custom_insights_events.max_samples_stored: 3000
195
+
196
+ # If false, the agent will not add database_name parameter to transaction or slow
197
+ # sql traces.
198
+ # datastore_tracer.database_name_reporting.enabled: true
199
+
200
+ # If false, the agent will not report datastore instance metrics, nor add host or
201
+ # port_path_or_id parameters to transaction or slow SQL traces.
202
+ # datastore_tracer.instance_reporting.enabled: true
203
+
204
+ # If true, disables Action Cable instrumentation.
205
+ # disable_action_cable_instrumentation: false
206
+
207
+ # If true, disables Action Controller instrumentation.
208
+ # disable_action_controller: false
209
+
210
+ # If true, disables Action Mailbox instrumentation.
211
+ # disable_action_mailbox: false
212
+
213
+ # If true, disables Action Mailer instrumentation.
214
+ # disable_action_mailer: false
215
+
216
+ # If true, disables Active Record instrumentation.
217
+ # disable_active_record_instrumentation: false
218
+
219
+ # If true, disables instrumentation for Active Record 4+
220
+ # disable_active_record_notifications: false
221
+
222
+ # If true, disables Active Storage instrumentation.
223
+ # disable_active_storage: false
224
+
225
+ # If true, disables Active Support instrumentation.
226
+ # disable_active_support: false
227
+
228
+ # If true, disables Active Job instrumentation.
229
+ # disable_activejob: false
230
+
231
+ # If true, the agent won't sample the CPU usage of the host process.
232
+ # disable_cpu_sampler: false
233
+
234
+ # If true, the agent won't measure the depth of Delayed Job queues.
235
+ # disable_delayed_job_sampler: false
236
+
237
+ # If true, disables the use of GC::Profiler to measure time spent in garbage
238
+ # collection
239
+ # disable_gc_profiler: false
240
+
241
+ # If true, the agent won't sample the memory usage of the host process.
242
+ # disable_memory_sampler: false
243
+
244
+ # If true, the agent won't wrap third-party middlewares in instrumentation
245
+ # (regardless of whether they are installed via Rack::Builder or Rails).
246
+ # When middleware instrumentation is disabled, if an application is using
247
+ # middleware that could alter the response code, the HTTP status code reported on
248
+ # the transaction may not reflect the altered value.
249
+ # disable_middleware_instrumentation: false
250
+
251
+ # If true, disables agent middleware for Roda. This middleware is responsible for
252
+ # advanced feature support such as page load timing and error collection.
253
+ # disable_roda_auto_middleware: false
254
+
255
+ # If true, disables the collection of sampler metrics. Sampler metrics are metrics
256
+ # that are not event-based (such as CPU time or memory usage).
257
+ # disable_samplers: false
258
+
259
+ # If true, disables Sequel instrumentation.
260
+ # disable_sequel_instrumentation: false
261
+
262
+ # If true, disables Sidekiq instrumentation.
263
+ # disable_sidekiq: false
264
+
265
+ # If true, disables agent middleware for Sinatra. This middleware is responsible
266
+ # for advanced feature support such as cross application tracing, page load
267
+ # timing, and error collection.
268
+ # Cross application tracing is deprecated in favor of distributed tracing.
269
+ # Distributed tracing is on by default for Ruby agent versions 8.0.0 and above.
270
+ # Middlewares are not required to support distributed tracing.
271
+ # To continue using cross application tracing, update the following options in
272
+ # your newrelic.yml configuration file:
273
+ # ``yaml
274
+ # # newrelic.yml
275
+ # cross_application_tracer:
276
+ # enabled: true
277
+ # distributed_tracing:
278
+ # enabled: false
279
+ # ``
280
+ # disable_sinatra_auto_middleware: false
281
+
282
+ # If true, disables view instrumentation.
283
+ # disable_view_instrumentation: false
284
+
285
+ # If true, the agent won't sample performance measurements from the Ruby VM.
286
+ # disable_vm_sampler: false
287
+
288
+ # Distributed tracing lets you see the path that a request takes through your
289
+ # distributed system. Enabling distributed tracing changes the behavior of some
290
+ # New Relic features, so carefully consult the transition guide before you enable
291
+ # this feature.
292
+ # distributed_tracing.enabled: true
293
+
294
+ # If true, the agent captures Elasticsearch queries in transaction traces.
295
+ # elasticsearch.capture_queries: true
296
+
297
+ # If true, the agent obfuscates Elasticsearch queries in transaction traces.
298
+ # elasticsearch.obfuscate_queries: true
299
+
300
+ # If true, the agent captures attributes from error collection.
301
+ # error_collector.attributes.enabled: true
302
+
303
+ # Prefix of attributes to exclude from error collection. Allows * as wildcard at
304
+ # end.
305
+ # error_collector.attributes.exclude: []
306
+
307
+ # Prefix of attributes to include in error collection. Allows * as wildcard at
308
+ # end.
309
+ # error_collector.attributes.include: []
310
+
311
+ # If true, the agent collects TransactionError events.
312
+ # error_collector.capture_events: true
313
+
314
+ # If true, the agent captures traced errors and error count metrics.
315
+ # error_collector.enabled: true
316
+
317
+ # A list of error classes that the agent should treat as expected.
318
+ # This option can't be set via environment variable.
319
+ # error_collector.expected_classes: []
320
+
321
+ # A map of error classes to a list of messages. When an error of one of the
322
+ # classes specified here occurs, if its error message contains one of the strings
323
+ # corresponding to it here, that error will be treated as expected.
324
+ # This option can't be set via environment variable.
325
+ # error_collector.expected_messages: {}
326
+
327
+ # A comma separated list of status codes, possibly including ranges. Errors
328
+ # associated with these status codes, where applicable, will be treated as
329
+ # expected.
330
+ # error_collector.expected_status_codes: ""
331
+
332
+ # A list of error classes that the agent should ignore.
333
+ # This option can't be set via environment variable.
334
+ # error_collector.ignore_classes: ["ActionController::RoutingError", "Sinatra::NotFound"]
335
+
336
+ # A map of error classes to a list of messages. When an error of one of the
337
+ # classes specified here occurs, if its error message contains one of the strings
338
+ # corresponding to it here, that error will be ignored.
339
+ # This option can't be set via environment variable.
340
+ # error_collector.ignore_messages: {}
341
+
342
+ # A comma separated list of status codes, possibly including ranges. Errors
343
+ # associated with these status codes, where applicable, will be ignored.
344
+ # error_collector.ignore_status_codes: ""
345
+
346
+ # Defines the maximum number of frames in an error backtrace. Backtraces over this
347
+ # amount are truncated in the middle, preserving the beginning and the end of the
348
+ # stack trace.
349
+ # error_collector.max_backtrace_frames: 50
350
+
351
+ # Defines the maximum number of TransactionError events reported per harvest
352
+ # cycle.
353
+ # error_collector.max_event_samples_stored: 100
354
+
355
+ # Allows newrelic distributed tracing headers to be suppressed on outbound
356
+ # requests.
357
+ # exclude_newrelic_header: false
358
+
359
+ # The exit handler that sends all cached data to the collector before shutting
360
+ # down is forcibly installed. This is true even when it detects scenarios where it
361
+ # generally should not be. The known use case for this option is when Sinatra runs
362
+ # as an embedded service within another framework. The agent detects the Sinatra
363
+ # app and skips the at_exit handler as a result. Sinatra classically runs the
364
+ # entire application in an at_exit block and would otherwise misbehave if the
365
+ # agent's at_exit handler was also installed in those circumstances. Note:
366
+ # send_data_on_exit should also be set to true in tandem with this setting.
367
+ # force_install_exit_handler: false
368
+
369
+ # Ordinarily the agent reports dyno names with a trailing dot and process ID (for
370
+ # example, worker.3). You can remove this trailing data by specifying the prefixes
371
+ # you want to report without trailing data (for example, worker).
372
+ # heroku.dyno_name_prefixes_to_shorten: ["scheduler", "run"]
373
+
374
+ # If true, the agent uses Heroku dyno names as the hostname.
375
+ # heroku.use_dyno_names: true
376
+
377
+ # If true, enables high security mode. Ensure you understand the implications of
378
+ # high security mode before enabling this setting.
379
+ # high_security: false
380
+
381
+ # If true (the default), data sent to the trace observer is batched instead of
382
+ # sending each span individually.
383
+ # infinite_tracing.batching: true
384
+
385
+ # Configure the compression level for data sent to the trace observer.
386
+ # May be one of: :none, :low, :medium, :high.
387
+ # Set the level to :none to disable compression.
388
+ # infinite_tracing.compression_level: high
389
+
390
+ # Configures the hostname for the trace observer Host. When configured, enables
391
+ # tail-based sampling by sending all recorded spans to a trace observer for
392
+ # further sampling decisions, irrespective of any usual agent sampling decision.
393
+ # infinite_tracing.trace_observer.host: ""
394
+
395
+ # Configures the TCP/IP port for the trace observer Host
396
+ # infinite_tracing.trace_observer.port: 443
397
+
398
+ # Controls auto-instrumentation of ActiveSupport::BroadcastLogger at start up. May
399
+ # be one of: auto, prepend, chain, disabled. Used in Rails versions >= 7.1.
400
+ # instrumentation.active_support_broadcast_logger: auto
401
+
402
+ # Controls auto-instrumentation of ActiveSupport::Logger at start up. May be one
403
+ # of: auto, prepend, chain, disabled. Used in Rails versions below 7.1.
404
+ # instrumentation.active_support_logger: auto
405
+
406
+ # Controls auto-instrumentation of Async::HTTP at start up. May be one of: auto,
407
+ # prepend, chain, disabled.
408
+ # instrumentation.async_http: auto
409
+
410
+ # Controls auto-instrumentation of bunny at start-up. May be one of: auto,
411
+ # prepend, chain, disabled.
412
+ # instrumentation.bunny: auto
413
+
414
+ # Controls auto-instrumentation of the concurrent-ruby library at start-up. May be
415
+ # one of: auto, prepend, chain, disabled.
416
+ # instrumentation.concurrent_ruby: auto
417
+
418
+ # Controls auto-instrumentation of Curb at start-up. May be one of: auto, prepend,
419
+ # chain, disabled.
420
+ # instrumentation.curb: auto
421
+
422
+ # Controls auto-instrumentation of Delayed Job at start-up. May be one of: auto,
423
+ # prepend, chain, disabled.
424
+ # instrumentation.delayed_job: auto
425
+
426
+ # Controls auto-instrumentation of the aws-sdk-dynamodb library at start-up. May
427
+ # be one of auto, prepend, chain, disabled.
428
+ # instrumentation.dynamodb: auto
429
+
430
+ # Controls auto-instrumentation of the elasticsearch library at start-up. May be
431
+ # one of: auto, prepend, chain, disabled.
432
+ # instrumentation.elasticsearch: auto
433
+
434
+ # Controls auto-instrumentation of ethon at start up. May be one of auto, prepend,
435
+ # chain, disabled
436
+ # instrumentation.ethon: auto
437
+
438
+ # Controls auto-instrumentation of Excon at start-up. May be one of: enabled,
439
+ # disabled.
440
+ # instrumentation.excon: enabled
441
+
442
+ # Controls auto-instrumentation of the Fiber class at start-up. May be one of:
443
+ # auto, prepend, chain, disabled.
444
+ # instrumentation.fiber: auto
445
+
446
+ # Controls auto-instrumentation of Grape at start-up. May be one of: auto,
447
+ # prepend, chain, disabled.
448
+ # instrumentation.grape: auto
449
+
450
+ # Specifies a list of hostname patterns separated by commas that will match gRPC
451
+ # hostnames that traffic is to be ignored by New Relic for. New Relic's gRPC
452
+ # client instrumentation will ignore traffic streamed to a host matching any of
453
+ # these patterns, and New Relic's gRPC server instrumentation will ignore traffic
454
+ # for a server running on a host whose hostname matches any of these patterns. By
455
+ # default, no traffic is ignored when gRPC instrumentation is itself enabled. For
456
+ # example, "private.com$,exception.*"
457
+ # instrumentation.grpc.host_denylist: []
458
+
459
+ # Controls auto-instrumentation of gRPC clients at start-up. May be one of: auto,
460
+ # prepend, chain, disabled.
461
+ # instrumentation.grpc_client: auto
462
+
463
+ # Controls auto-instrumentation of gRPC servers at start-up. May be one of: auto,
464
+ # prepend, chain, disabled.
465
+ # instrumentation.grpc_server: auto
466
+
467
+ # Controls auto-instrumentation of HTTPClient at start-up. May be one of: auto,
468
+ # prepend, chain, disabled.
469
+ # instrumentation.httpclient: auto
470
+
471
+ # Controls auto-instrumentation of http.rb gem at start-up. May be one of: auto,
472
+ # prepend, chain, disabled.
473
+ # instrumentation.httprb: auto
474
+
475
+ # Controls auto-instrumentation of httpx at start up. May be one of auto, prepend,
476
+ # chain, disabled
477
+ # instrumentation.httpx: auto
478
+
479
+ # Controls auto-instrumentation of Ruby standard library Logger at start-up. May
480
+ # be one of: auto, prepend, chain, disabled.
481
+ # instrumentation.logger: auto
482
+
483
+ # Controls auto-instrumentation of dalli gem for Memcache at start-up. May be one
484
+ # of: auto, prepend, chain, disabled.
485
+ # instrumentation.memcache: auto
486
+
487
+ # Controls auto-instrumentation of memcache-client gem for Memcache at start-up.
488
+ # May be one of: auto, prepend, chain, disabled.
489
+ # instrumentation.memcache_client: auto
490
+
491
+ # Controls auto-instrumentation of memcached gem for Memcache at start-up. May be
492
+ # one of: auto, prepend, chain, disabled.
493
+ # instrumentation.memcached: auto
494
+
495
+ # Controls auto-instrumentation of Mongo at start-up. May be one of: enabled,
496
+ # disabled.
497
+ # instrumentation.mongo: enabled
498
+
499
+ # Controls auto-instrumentation of Net::HTTP at start-up. May be one of: auto,
500
+ # prepend, chain, disabled.
501
+ # instrumentation.net_http: auto
502
+
503
+ # Controls auto-instrumentation of Puma::Rack. When enabled, the agent hooks into
504
+ # the to_app method in Puma::Rack::Builder to find gems to instrument during
505
+ # application startup. May be one of: auto, prepend, chain, disabled.
506
+ # instrumentation.puma_rack: auto
507
+
508
+ # Controls auto-instrumentation of Puma::Rack::URLMap at start-up. May be one of:
509
+ # auto, prepend, chain, disabled.
510
+ # instrumentation.puma_rack_urlmap: auto
511
+
512
+ # Controls auto-instrumentation of Rack. When enabled, the agent hooks into the
513
+ # to_app method in Rack::Builder to find gems to instrument during application
514
+ # startup. May be one of: auto, prepend, chain, disabled.
515
+ # instrumentation.rack: auto
516
+
517
+ # Controls auto-instrumentation of Rack::URLMap at start-up. May be one of: auto,
518
+ # prepend, chain, disabled.
519
+ # instrumentation.rack_urlmap: auto
520
+
521
+ # Controls auto-instrumentation of rake at start-up. May be one of: auto, prepend,
522
+ # chain, disabled.
523
+ # instrumentation.rake: auto
524
+
525
+ # Controls auto-instrumentation of Redis at start-up. May be one of: auto,
526
+ # prepend, chain, disabled.
527
+ # instrumentation.redis: auto
528
+
529
+ # Controls auto-instrumentation of resque at start-up. May be one of: auto,
530
+ # prepend, chain, disabled.
531
+ # instrumentation.resque: auto
532
+
533
+ # Controls auto-instrumentation of Roda at start-up. May be one of: auto, prepend,
534
+ # chain, disabled.
535
+ # instrumentation.roda: auto
536
+
537
+ # Controls auto-instrumentation of the ruby-openai gem at start-up. May be one of:
538
+ # auto, prepend, chain, disabled. Defaults to disabled in high security mode.
539
+ # instrumentation.ruby_openai: auto
540
+
541
+ # Controls auto-instrumentation of Sinatra at start-up. May be one of: auto,
542
+ # prepend, chain, disabled.
543
+ # instrumentation.sinatra: auto
544
+
545
+ # Controls auto-instrumentation of Stripe at startup. May be one of: enabled,
546
+ # disabled.
547
+ # instrumentation.stripe: enabled
548
+
549
+ # Controls auto-instrumentation of the Thread class at start-up to allow the agent
550
+ # to correctly nest spans inside of an asynchronous transaction. This does not
551
+ # enable the agent to automatically trace all threads created (see
552
+ # instrumentation.thread.tracing). May be one of: auto, prepend, chain, disabled.
553
+ # instrumentation.thread: auto
554
+
555
+ # Controls auto-instrumentation of the Thread class at start-up to automatically
556
+ # add tracing to all Threads created in the application.
557
+ # instrumentation.thread.tracing: true
558
+
559
+ # Controls auto-instrumentation of the Tilt template rendering library at
560
+ # start-up. May be one of: auto, prepend, chain, disabled.
561
+ # instrumentation.tilt: auto
562
+
563
+ # Controls auto-instrumentation of Typhoeus at start-up. May be one of: auto,
564
+ # prepend, chain, disabled.
565
+ # instrumentation.typhoeus: auto
566
+
567
+ # Controls auto-instrumentation of ViewComponent at startup. May be one of: auto,
568
+ # prepend, chain, disabled.
569
+ # instrumentation.view_component: auto
570
+
571
+ # A dictionary of label names and values that will be applied to the data sent
572
+ # from this agent. May also be expressed as a semicolon-delimited ; string of
573
+ # colon-separated : pairs. For example, Server:One;Data Center:Primary.
574
+ # labels: ""
575
+
576
+ # Defines a name for the log file.
577
+ # log_file_name: newrelic_agent.log
578
+
579
+ # Defines a path to the agent log file, excluding the filename.
580
+ # log_file_path: log/
581
+
582
+ # Specifies a marshaller for transmitting data to the New Relic collector.
583
+ # Currently json is the only valid value for this setting.
584
+ # marshaller: json
585
+
586
+ # If true, the agent will collect metadata about messages and attach them as
587
+ # segment parameters.
588
+ # message_tracer.segment_parameters.enabled: true
589
+
590
+ # If true, the agent captures Mongo queries in transaction traces.
591
+ # mongo.capture_queries: true
592
+
593
+ # If true, the agent obfuscates Mongo queries in transaction traces.
594
+ # mongo.obfuscate_queries: true
595
+
596
+ # When true, the agent transmits data about your app to the New Relic collector.
597
+ # monitor_mode: true
598
+
599
+ # If true, uses Module#prepend rather than alias_method for ActiveRecord
600
+ # instrumentation.
601
+ # prepend_active_record_instrumentation: false
602
+
603
+ # Specify a custom host name for display in the New Relic UI.
604
+ # process_host.display_name: default hostname
605
+
606
+ # Defines a host for communicating with the New Relic collector via a proxy
607
+ # server.
608
+ # proxy_host: nil
609
+
610
+ # Defines a password for communicating with the New Relic collector via a proxy
611
+ # server.
612
+ # proxy_pass: nil
613
+
614
+ # Defines a port for communicating with the New Relic collector via a proxy
615
+ # server.
616
+ # proxy_port: 8080
617
+
618
+ # Defines a user for communicating with the New Relic collector via a proxy
619
+ # server.
620
+ # proxy_user: nil
621
+
622
+ # Timeout for waiting on connect to complete before a rake task
623
+ # rake.connect_timeout: 10
624
+
625
+ # Specify an Array of Rake tasks to automatically instrument. This configuration
626
+ # option converts the Array to a RegEx list. If you'd like to allow all tasks by
627
+ # default, use rake.tasks: [.+]. No rake tasks will be instrumented unless they're
628
+ # added to this list. For more information, visit the New Relic Rake
629
+ # Instrumentation docs.
630
+ # rake.tasks: []
631
+
632
+ # Define transactions you want the agent to ignore, by specifying a list of
633
+ # patterns matching the URI you want to ignore. For more detail, see the docs on
634
+ # ignoring specific transactions.
635
+ # rules.ignore_url_regexes: []
636
+
637
+ # Applies Language Agent Security Policy settings.
638
+ # security_policies_token: ""
639
+
640
+ # If true, enables the exit handler that sends data to the New Relic collector
641
+ # before shutting down.
642
+ # send_data_on_exit: true
643
+
644
+ # If true, the agent will operate in a streamlined mode suitable for use with
645
+ # short-lived serverless functions. NOTE: Only AWS Lambda functions are supported
646
+ # currently and this option is not intended for use without New Relic's Ruby
647
+ # Lambda layer offering.
648
+ # serverless_mode.enabled: false
649
+
650
+ # An array of strings that will collectively serve as a denylist for filtering
651
+ # which Sidekiq job arguments get reported to New Relic. To capture any Sidekiq
652
+ # arguments, 'job.sidekiq.args.*' must be added to the separate
653
+ # :'attributes.include' configuration option. Each string in this array will be
654
+ # turned into a regular expression via Regexp.new to permit advanced matching. For
655
+ # job argument hashes, if either a key or value matches the pair will be excluded.
656
+ # All matching job argument array elements and job argument scalars will be
657
+ # excluded.
658
+ # sidekiq.args.exclude: []
659
+
660
+ # An array of strings that will collectively serve as an allowlist for filtering
661
+ # which Sidekiq job arguments get reported to New Relic. To capture any Sidekiq
662
+ # arguments, 'job.sidekiq.args.*' must be added to the separate
663
+ # :'attributes.include' configuration option. Each string in this array will be
664
+ # turned into a regular expression via Regexp.new to permit advanced matching. For
665
+ # job argument hashes, if either a key or value matches the pair will be included.
666
+ # All matching job argument array elements and job argument scalars will be
667
+ # included.
668
+ # sidekiq.args.include: []
669
+
670
+ # If true, the agent collects slow SQL queries.
671
+ # slow_sql.enabled: true
672
+
673
+ # If true, the agent collects explain plans in slow SQL queries. If this setting
674
+ # is omitted, the transaction_tracer.explain_enabled setting will be applied as
675
+ # the default setting for explain plans in slow SQL as well.
676
+ # slow_sql.explain_enabled: true
677
+
678
+ # Specify a threshold in seconds. The agent collects slow SQL queries and explain
679
+ # plans that exceed this threshold.
680
+ # slow_sql.explain_threshold: 0.5
681
+
682
+ # Defines an obfuscation level for slow SQL queries. Valid options are obfuscated,
683
+ # raw, or none.
684
+ # slow_sql.record_sql: obfuscated
685
+
686
+ # Generate a longer sql_id for slow SQL traces. sql_id is used for aggregation of
687
+ # similar queries.
688
+ # slow_sql.use_longer_sql_id: false
689
+
690
+ # If true, the agent captures attributes on span events.
691
+ # span_events.attributes.enabled: true
692
+
693
+ # Prefix of attributes to exclude from span events. Allows * as wildcard at end.
694
+ # span_events.attributes.exclude: []
695
+
696
+ # Prefix of attributes to include on span events. Allows * as wildcard at end.
697
+ # span_events.attributes.include: []
698
+
699
+ # If true, enables span event sampling.
700
+ # span_events.enabled: true
701
+
702
+ # * Defines the maximum number of span events reported from a single harvest. Any
703
+ # Integer between 1 and 10000 is valid.'
704
+ # * When configuring the agent for AI monitoring, set to max value 10000.This
705
+ # ensures the agent captures the maximum amount of distributed traces.
706
+ # span_events.max_samples_stored: 2000
707
+
708
+ # Sets the maximum number of span events to buffer when streaming to the trace
709
+ # observer.
710
+ # span_events.queue_size: 10000
711
+
712
+ # Specify a list of exceptions you do not want the agent to strip when
713
+ # strip_exception_messages is true. Separate exceptions with a comma. For example,
714
+ # "ImportantException,PreserveMessageException".
715
+ # strip_exception_messages.allowed_classes: ""
716
+
717
+ # If true, the agent strips messages from all exceptions except those in the
718
+ # allowlist. Enabled automatically in high security mode.
719
+ # strip_exception_messages.enabled: false
720
+
721
+ # An array of strings to specify which keys and/or values inside a Stripe event's
722
+ # user_data hash should
723
+ # not be reported to New Relic. Each string in this array will be turned into a
724
+ # regular expression via
725
+ # Regexp.new to permit advanced matching. For each hash pair, if either the key or
726
+ # value is matched the
727
+ # pair will not be reported. By default, no user_data is reported, so this option
728
+ # should only be used if
729
+ # the stripe.user_data.include option is being used.
730
+ # stripe.user_data.exclude: []
731
+
732
+ # An array of strings to specify which keys inside a Stripe event's user_data hash
733
+ # should be reported
734
+ # to New Relic. Each string in this array will be turned into a regular expression
735
+ # via Regexp.new to
736
+ # permit advanced matching. Setting the value to ["."] will report all user_data.
737
+ # stripe.user_data.include: []
738
+
739
+ # When set to true, forces a synchronous connection to the New Relic collector
740
+ # during application startup. For very short-lived processes, this helps ensure
741
+ # the New Relic agent has time to report.
742
+ # sync_startup: false
743
+
744
+ # If true, tracer state storage is thread-local, otherwise, fiber-local
745
+ # thread_local_tracer_state: false
746
+
747
+ # If true, enables use of the thread profiler.
748
+ # thread_profiler.enabled: false
749
+
750
+ # Defines the maximum number of seconds the agent should spend attempting to
751
+ # connect to the collector.
752
+ # timeout: 120
753
+
754
+ # If true, the agent captures attributes from transaction events.
755
+ # transaction_events.attributes.enabled: true
756
+
757
+ # Prefix of attributes to exclude from transaction events. Allows * as wildcard at
758
+ # end.
759
+ # transaction_events.attributes.exclude: []
760
+
761
+ # Prefix of attributes to include in transaction events. Allows * as wildcard at
762
+ # end.
763
+ # transaction_events.attributes.include: []
764
+
765
+ # If true, enables transaction event sampling.
766
+ # transaction_events.enabled: true
767
+
768
+ # Defines the maximum number of transaction events reported from a single harvest.
769
+ # transaction_events.max_samples_stored: 1200
770
+
771
+ # If true, the agent captures attributes on transaction segments.
772
+ # transaction_segments.attributes.enabled: true
773
+
774
+ # Prefix of attributes to exclude from transaction segments. Allows * as wildcard
775
+ # at end.
776
+ # transaction_segments.attributes.exclude: []
777
+
778
+ # Prefix of attributes to include on transaction segments. Allows * as wildcard at
779
+ # end.
780
+ # transaction_segments.attributes.include: []
781
+
782
+ # If true, the agent captures attributes from transaction traces.
783
+ # transaction_tracer.attributes.enabled: true
784
+
785
+ # Prefix of attributes to exclude from transaction traces. Allows * as wildcard at
786
+ # end.
787
+ # transaction_tracer.attributes.exclude: []
788
+
789
+ # Prefix of attributes to include in transaction traces. Allows * as wildcard at
790
+ # end.
791
+ # transaction_tracer.attributes.include: []
792
+
793
+ # If true, enables collection of transaction traces.
794
+ # transaction_tracer.enabled: true
795
+
796
+ # If true, enables the collection of explain plans in transaction traces. This
797
+ # setting will also apply to explain plans in slow SQL traces if
798
+ # slow_sql.explain_enabled is not set separately.
799
+ # transaction_tracer.explain_enabled: true
800
+
801
+ # Threshold (in seconds) above which the agent will collect explain plans.
802
+ # Relevant only when explain_enabled is true.
803
+ # transaction_tracer.explain_threshold: 0.5
804
+
805
+ # Maximum number of transaction trace nodes to record in a single transaction
806
+ # trace.
807
+ # transaction_tracer.limit_segments: 4000
808
+
809
+ # If true, the agent records Redis command arguments in transaction traces.
810
+ # transaction_tracer.record_redis_arguments: false
811
+
812
+ # Obfuscation level for SQL queries reported in transaction trace nodes.
813
+ # By default, this is set to obfuscated, which strips out the numeric and string
814
+ # literals.
815
+ # - If you do not want the agent to capture query information, set this to none.
816
+ # - If you want the agent to capture all query information in its original form,
817
+ # set this to raw.
818
+ # - When you enable high security mode, this is automatically set to obfuscated.
819
+ # transaction_tracer.record_sql: obfuscated
820
+
821
+ # Specify a threshold in seconds. The agent includes stack traces in transaction
822
+ # trace nodes when the stack trace duration exceeds this threshold.
823
+ # transaction_tracer.stack_trace_threshold: 0.5
824
+
825
+ # Specify a threshold in seconds. Transactions with a duration longer than this
826
+ # threshold are eligible for transaction traces. Specify a float value or the
827
+ # string apdex_f.
828
+ # transaction_tracer.transaction_threshold: 1.0
829
+
830
+ # If true, the agent automatically detects that it is running in an AWS
831
+ # environment.
832
+ # utilization.detect_aws: true
833
+
834
+ # If true, the agent automatically detects that it is running in an Azure
835
+ # environment.
836
+ # utilization.detect_azure: true
837
+
838
+ # If true, the agent automatically detects that it is running in Docker.
839
+ # utilization.detect_docker: true
840
+
841
+ # If true, the agent automatically detects that it is running in an Google Cloud
842
+ # Platform environment.
843
+ # utilization.detect_gcp: true
844
+
845
+ # If true, the agent automatically detects that it is running in Kubernetes.
846
+ # utilization.detect_kubernetes: true
847
+
848
+ # If true, the agent automatically detects that it is running in a Pivotal Cloud
849
+ # Foundry environment.
850
+ # utilization.detect_pcf: true
25
851
 
26
852
  # Environment-specific settings are in this section.
27
853
  # RAILS_ENV or RACK_ENV (as appropriate) is used to determine the environment.
@@ -30,10 +856,6 @@ development:
30
856
  <<: *default_settings
31
857
  app_name: <%= app_name %> (Development)
32
858
 
33
- # NOTE: There is substantial overhead when running in developer mode.
34
- # Do not use for production or load testing.
35
- developer_mode: true
36
-
37
859
  test:
38
860
  <<: *default_settings
39
861
  # It doesn't make sense to report to New Relic from automated test runs.