newrelic_rpm 6.15.0 → 8.13.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (427) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +7 -1
  3. data/.rubocop.yml +1817 -0
  4. data/.rubocop_todo.yml +59 -0
  5. data/.simplecov +15 -0
  6. data/.snyk +11 -0
  7. data/.yardopts +1 -0
  8. data/Brewfile +12 -0
  9. data/CHANGELOG.md +754 -40
  10. data/CONTRIBUTING.md +32 -5
  11. data/DOCKER.md +167 -0
  12. data/Dockerfile +10 -0
  13. data/Gemfile +0 -1
  14. data/Guardfile +9 -8
  15. data/LICENSE +0 -6
  16. data/README.md +21 -20
  17. data/Rakefile +27 -29
  18. data/THIRD_PARTY_NOTICES.md +14 -199
  19. data/Thorfile +5 -0
  20. data/bin/newrelic +3 -2
  21. data/bin/newrelic_cmd +1 -0
  22. data/bin/nrdebug +76 -53
  23. data/config.dot +5 -5
  24. data/docker-compose.yml +107 -0
  25. data/init.rb +4 -6
  26. data/install.rb +2 -2
  27. data/lefthook.yml +9 -0
  28. data/lib/new_relic/agent/adaptive_sampler.rb +13 -9
  29. data/lib/new_relic/agent/agent/shutdown.rb +35 -0
  30. data/lib/new_relic/agent/agent/special_startup.rb +72 -0
  31. data/lib/new_relic/agent/agent/start_worker_thread.rb +163 -0
  32. data/lib/new_relic/agent/agent/startup.rb +197 -0
  33. data/lib/new_relic/agent/agent.rb +178 -555
  34. data/lib/new_relic/agent/agent_logger.rb +23 -19
  35. data/lib/new_relic/agent/attribute_filter.rb +66 -47
  36. data/lib/new_relic/agent/attribute_processing.rb +7 -7
  37. data/lib/new_relic/agent/attributes.rb +5 -4
  38. data/lib/new_relic/agent/audit_logger.rb +8 -3
  39. data/lib/new_relic/agent/autostart.rb +20 -19
  40. data/lib/new_relic/agent/chained_call.rb +1 -1
  41. data/lib/new_relic/agent/commands/agent_command.rb +3 -3
  42. data/lib/new_relic/agent/commands/agent_command_router.rb +12 -11
  43. data/lib/new_relic/agent/commands/thread_profiler_session.rb +9 -7
  44. data/lib/new_relic/agent/configuration/default_source.rb +1728 -1194
  45. data/lib/new_relic/agent/configuration/dotted_hash.rb +6 -5
  46. data/lib/new_relic/agent/configuration/environment_source.rb +11 -9
  47. data/lib/new_relic/agent/configuration/event_harvest_config.rb +40 -17
  48. data/lib/new_relic/agent/configuration/high_security_source.rb +9 -8
  49. data/lib/new_relic/agent/configuration/manager.rb +82 -69
  50. data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
  51. data/lib/new_relic/agent/configuration/mask_defaults.rb +3 -3
  52. data/lib/new_relic/agent/configuration/security_policy_source.rb +90 -77
  53. data/lib/new_relic/agent/configuration/server_source.rb +21 -19
  54. data/lib/new_relic/agent/configuration/yaml_source.rb +31 -7
  55. data/lib/new_relic/agent/configuration.rb +1 -1
  56. data/lib/new_relic/agent/connect/request_builder.rb +18 -18
  57. data/lib/new_relic/agent/connect/response_handler.rb +5 -8
  58. data/lib/new_relic/agent/custom_event_aggregator.rb +14 -14
  59. data/lib/new_relic/agent/database/explain_plan_helpers.rb +4 -5
  60. data/lib/new_relic/agent/database/obfuscation_helpers.rb +14 -13
  61. data/lib/new_relic/agent/database/obfuscator.rb +2 -2
  62. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +3 -3
  63. data/lib/new_relic/agent/database.rb +53 -47
  64. data/lib/new_relic/agent/database_adapter.rb +3 -1
  65. data/lib/new_relic/agent/datastores/metric_helper.rb +17 -18
  66. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +7 -6
  67. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +6 -10
  68. data/lib/new_relic/agent/datastores/mongo.rb +6 -11
  69. data/lib/new_relic/agent/datastores/nosql_obfuscator.rb +41 -0
  70. data/lib/new_relic/agent/datastores/redis.rb +5 -11
  71. data/lib/new_relic/agent/datastores.rb +11 -13
  72. data/lib/new_relic/agent/deprecator.rb +1 -1
  73. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +10 -10
  74. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +39 -32
  75. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +22 -22
  76. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +19 -19
  77. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +50 -52
  78. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +5 -6
  79. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +76 -77
  80. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +39 -38
  81. data/lib/new_relic/agent/distributed_tracing.rb +32 -100
  82. data/lib/new_relic/agent/encoding_normalizer.rb +4 -2
  83. data/lib/new_relic/agent/error_collector.rb +73 -54
  84. data/lib/new_relic/agent/error_event_aggregator.rb +4 -5
  85. data/lib/new_relic/agent/error_filter.rb +174 -0
  86. data/lib/new_relic/agent/error_trace_aggregator.rb +4 -3
  87. data/lib/new_relic/agent/event_aggregator.rb +22 -21
  88. data/lib/new_relic/agent/event_buffer.rb +7 -8
  89. data/lib/new_relic/agent/event_listener.rb +1 -2
  90. data/lib/new_relic/agent/event_loop.rb +25 -23
  91. data/lib/new_relic/agent/external.rb +11 -44
  92. data/lib/new_relic/agent/guid_generator.rb +4 -11
  93. data/lib/new_relic/agent/harvester.rb +4 -5
  94. data/lib/new_relic/agent/heap.rb +6 -8
  95. data/lib/new_relic/agent/hostname.rb +20 -13
  96. data/lib/new_relic/agent/http_clients/abstract.rb +10 -11
  97. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +6 -11
  98. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +8 -9
  99. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +4 -5
  100. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +2 -4
  101. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +8 -4
  102. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +4 -5
  103. data/lib/new_relic/agent/http_clients/uri_util.rb +1 -3
  104. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +8 -8
  105. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +38 -31
  106. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +12 -13
  107. data/lib/new_relic/agent/instrumentation/active_job.rb +14 -7
  108. data/lib/new_relic/agent/instrumentation/active_merchant.rb +20 -6
  109. data/lib/new_relic/agent/instrumentation/active_record.rb +29 -27
  110. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +71 -61
  111. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +31 -44
  112. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +4 -4
  113. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +27 -20
  114. data/lib/new_relic/agent/instrumentation/active_storage.rb +2 -2
  115. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +18 -15
  116. data/lib/new_relic/agent/instrumentation/active_support_logger/chain.rb +23 -0
  117. data/lib/new_relic/agent/instrumentation/active_support_logger/instrumentation.rb +20 -0
  118. data/lib/new_relic/agent/instrumentation/active_support_logger/prepend.rb +12 -0
  119. data/lib/new_relic/agent/instrumentation/active_support_logger.rb +24 -0
  120. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +18 -10
  121. data/lib/new_relic/agent/instrumentation/authlogic.rb +10 -2
  122. data/lib/new_relic/agent/instrumentation/bunny/chain.rb +45 -0
  123. data/lib/new_relic/agent/instrumentation/bunny/instrumentation.rb +150 -0
  124. data/lib/new_relic/agent/instrumentation/bunny/prepend.rb +35 -0
  125. data/lib/new_relic/agent/instrumentation/bunny.rb +11 -154
  126. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +68 -58
  127. data/lib/new_relic/agent/instrumentation/curb/chain.rb +91 -0
  128. data/lib/new_relic/agent/instrumentation/curb/instrumentation.rb +221 -0
  129. data/lib/new_relic/agent/instrumentation/curb/prepend.rb +61 -0
  130. data/lib/new_relic/agent/instrumentation/curb.rb +11 -243
  131. data/lib/new_relic/agent/instrumentation/data_mapper.rb +65 -54
  132. data/lib/new_relic/agent/instrumentation/delayed_job/chain.rb +35 -0
  133. data/lib/new_relic/agent/instrumentation/delayed_job/instrumentation.rb +48 -0
  134. data/lib/new_relic/agent/instrumentation/delayed_job/prepend.rb +33 -0
  135. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +29 -53
  136. data/lib/new_relic/agent/instrumentation/elasticsearch/chain.rb +29 -0
  137. data/lib/new_relic/agent/instrumentation/elasticsearch/instrumentation.rb +66 -0
  138. data/lib/new_relic/agent/instrumentation/elasticsearch/prepend.rb +13 -0
  139. data/lib/new_relic/agent/instrumentation/elasticsearch.rb +31 -0
  140. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +5 -5
  141. data/lib/new_relic/agent/instrumentation/excon.rb +22 -24
  142. data/lib/new_relic/agent/instrumentation/grape/chain.rb +24 -0
  143. data/lib/new_relic/agent/instrumentation/grape/instrumentation.rb +100 -0
  144. data/lib/new_relic/agent/instrumentation/grape/prepend.rb +17 -0
  145. data/lib/new_relic/agent/instrumentation/grape.rb +11 -112
  146. data/lib/new_relic/agent/instrumentation/grpc/client/chain.rb +97 -0
  147. data/lib/new_relic/agent/instrumentation/grpc/client/instrumentation.rb +89 -0
  148. data/lib/new_relic/agent/instrumentation/grpc/client/prepend.rb +111 -0
  149. data/lib/new_relic/agent/instrumentation/grpc/client/request_wrapper.rb +30 -0
  150. data/lib/new_relic/agent/instrumentation/grpc/helper.rb +32 -0
  151. data/lib/new_relic/agent/instrumentation/grpc/server/chain.rb +69 -0
  152. data/lib/new_relic/agent/instrumentation/grpc/server/instrumentation.rb +134 -0
  153. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_desc_prepend.rb +35 -0
  154. data/lib/new_relic/agent/instrumentation/grpc/server/rpc_server_prepend.rb +26 -0
  155. data/lib/new_relic/agent/instrumentation/grpc_client.rb +23 -0
  156. data/lib/new_relic/agent/instrumentation/grpc_server.rb +25 -0
  157. data/lib/new_relic/agent/instrumentation/httpclient/chain.rb +24 -0
  158. data/lib/new_relic/agent/instrumentation/httpclient/instrumentation.rb +37 -0
  159. data/lib/new_relic/agent/instrumentation/httpclient/prepend.rb +15 -0
  160. data/lib/new_relic/agent/instrumentation/httpclient.rb +10 -32
  161. data/lib/new_relic/agent/instrumentation/httprb/chain.rb +22 -0
  162. data/lib/new_relic/agent/instrumentation/httprb/instrumentation.rb +30 -0
  163. data/lib/new_relic/agent/instrumentation/httprb/prepend.rb +15 -0
  164. data/lib/new_relic/agent/instrumentation/httprb.rb +29 -0
  165. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +4 -5
  166. data/lib/new_relic/agent/instrumentation/logger/chain.rb +21 -0
  167. data/lib/new_relic/agent/instrumentation/logger/instrumentation.rb +66 -0
  168. data/lib/new_relic/agent/instrumentation/logger/prepend.rb +13 -0
  169. data/lib/new_relic/agent/instrumentation/logger.rb +26 -0
  170. data/lib/new_relic/agent/instrumentation/memcache/chain.rb +15 -0
  171. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +57 -128
  172. data/lib/new_relic/agent/instrumentation/memcache/helper.rb +59 -0
  173. data/lib/new_relic/agent/instrumentation/memcache/instrumentation.rb +90 -0
  174. data/lib/new_relic/agent/instrumentation/memcache/prepend.rb +101 -0
  175. data/lib/new_relic/agent/instrumentation/memcache.rb +56 -72
  176. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +13 -12
  177. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +5 -7
  178. data/lib/new_relic/agent/instrumentation/mongo.rb +5 -136
  179. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +21 -18
  180. data/lib/new_relic/agent/instrumentation/net_http/chain.rb +24 -0
  181. data/lib/new_relic/agent/instrumentation/{net_prepend.rb → net_http/instrumentation.rb} +13 -13
  182. data/lib/new_relic/agent/instrumentation/net_http/prepend.rb +21 -0
  183. data/lib/new_relic/agent/instrumentation/net_http.rb +44 -0
  184. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +10 -9
  185. data/lib/new_relic/agent/instrumentation/padrino/chain.rb +38 -0
  186. data/lib/new_relic/agent/instrumentation/padrino/instrumentation.rb +28 -0
  187. data/lib/new_relic/agent/instrumentation/padrino/prepend.rb +20 -0
  188. data/lib/new_relic/agent/instrumentation/padrino.rb +20 -58
  189. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +3 -3
  190. data/lib/new_relic/agent/instrumentation/queue_time.rb +8 -9
  191. data/lib/new_relic/agent/instrumentation/rack/chain.rb +66 -0
  192. data/lib/new_relic/agent/instrumentation/rack/helpers.rb +33 -0
  193. data/lib/new_relic/agent/instrumentation/rack/instrumentation.rb +75 -0
  194. data/lib/new_relic/agent/instrumentation/rack/prepend.rb +43 -0
  195. data/lib/new_relic/agent/instrumentation/rack.rb +30 -140
  196. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +16 -52
  197. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  198. data/lib/new_relic/agent/instrumentation/rails_notifications/action_cable.rb +5 -4
  199. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +3 -3
  200. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +3 -2
  201. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +13 -3
  202. data/lib/new_relic/agent/instrumentation/rake/chain.rb +20 -0
  203. data/lib/new_relic/agent/instrumentation/rake/instrumentation.rb +149 -0
  204. data/lib/new_relic/agent/instrumentation/rake/prepend.rb +14 -0
  205. data/lib/new_relic/agent/instrumentation/rake.rb +16 -157
  206. data/lib/new_relic/agent/instrumentation/redis/chain.rb +45 -0
  207. data/lib/new_relic/agent/instrumentation/redis/constants.rb +17 -0
  208. data/lib/new_relic/agent/instrumentation/redis/instrumentation.rb +72 -0
  209. data/lib/new_relic/agent/instrumentation/redis/middleware.rb +16 -0
  210. data/lib/new_relic/agent/instrumentation/redis/prepend.rb +29 -0
  211. data/lib/new_relic/agent/instrumentation/redis.rb +18 -107
  212. data/lib/new_relic/agent/instrumentation/resque/chain.rb +21 -0
  213. data/lib/new_relic/agent/instrumentation/resque/helper.rb +19 -0
  214. data/lib/new_relic/agent/instrumentation/resque/instrumentation.rb +34 -0
  215. data/lib/new_relic/agent/instrumentation/resque/prepend.rb +15 -0
  216. data/lib/new_relic/agent/instrumentation/resque.rb +28 -39
  217. data/lib/new_relic/agent/instrumentation/sequel.rb +14 -16
  218. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +2 -2
  219. data/lib/new_relic/agent/instrumentation/sidekiq/client.rb +20 -0
  220. data/lib/new_relic/agent/instrumentation/sidekiq/extensions/delayed_class.rb +30 -0
  221. data/lib/new_relic/agent/instrumentation/sidekiq/server.rb +37 -0
  222. data/lib/new_relic/agent/instrumentation/sidekiq.rb +23 -64
  223. data/lib/new_relic/agent/instrumentation/sinatra/chain.rb +55 -0
  224. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +30 -36
  225. data/lib/new_relic/agent/instrumentation/sinatra/instrumentation.rb +125 -0
  226. data/lib/new_relic/agent/instrumentation/sinatra/prepend.rb +33 -0
  227. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +2 -2
  228. data/lib/new_relic/agent/instrumentation/sinatra.rb +34 -163
  229. data/lib/new_relic/agent/instrumentation/sunspot.rb +11 -3
  230. data/lib/new_relic/agent/instrumentation/thread/chain.rb +24 -0
  231. data/lib/new_relic/agent/instrumentation/thread/instrumentation.rb +28 -0
  232. data/lib/new_relic/agent/instrumentation/thread/prepend.rb +22 -0
  233. data/lib/new_relic/agent/instrumentation/thread.rb +20 -0
  234. data/lib/new_relic/agent/instrumentation/tilt/chain.rb +24 -0
  235. data/lib/new_relic/agent/instrumentation/tilt/instrumentation.rb +41 -0
  236. data/lib/new_relic/agent/instrumentation/tilt/prepend.rb +13 -0
  237. data/lib/new_relic/agent/instrumentation/tilt.rb +25 -0
  238. data/lib/new_relic/agent/instrumentation/typhoeus/chain.rb +22 -0
  239. data/lib/new_relic/agent/instrumentation/typhoeus/instrumentation.rb +80 -0
  240. data/lib/new_relic/agent/instrumentation/typhoeus/prepend.rb +14 -0
  241. data/lib/new_relic/agent/instrumentation/typhoeus.rb +12 -91
  242. data/lib/new_relic/agent/instrumentation.rb +1 -1
  243. data/lib/new_relic/agent/internal_agent_error.rb +2 -2
  244. data/lib/new_relic/agent/javascript_instrumentor.rb +47 -41
  245. data/lib/new_relic/agent/linking_metadata.rb +44 -0
  246. data/lib/new_relic/agent/local_log_decorator.rb +37 -0
  247. data/lib/new_relic/agent/log_event_aggregator.rb +235 -0
  248. data/lib/new_relic/agent/log_once.rb +1 -1
  249. data/lib/new_relic/agent/log_priority.rb +20 -0
  250. data/lib/new_relic/agent/logging.rb +24 -21
  251. data/lib/new_relic/agent/memory_logger.rb +2 -2
  252. data/lib/new_relic/agent/messaging.rb +65 -81
  253. data/lib/new_relic/agent/method_tracer.rb +154 -149
  254. data/lib/new_relic/agent/method_tracer_helpers.rb +85 -3
  255. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +25 -17
  256. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +5 -4
  257. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -2
  258. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +6 -9
  259. data/lib/new_relic/agent/monitors.rb +6 -7
  260. data/lib/new_relic/agent/new_relic_service/encoders.rb +6 -6
  261. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +5 -5
  262. data/lib/new_relic/agent/new_relic_service/marshaller.rb +2 -2
  263. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +5 -4
  264. data/lib/new_relic/agent/new_relic_service.rb +248 -196
  265. data/lib/new_relic/agent/{noticible_error.rb → noticeable_error.rb} +2 -5
  266. data/lib/new_relic/agent/null_logger.rb +7 -3
  267. data/lib/new_relic/agent/obfuscator.rb +8 -10
  268. data/lib/new_relic/agent/parameter_filtering.rb +24 -10
  269. data/lib/new_relic/agent/payload_metric_mapping.rb +9 -10
  270. data/lib/new_relic/agent/pipe_channel_manager.rb +27 -17
  271. data/lib/new_relic/agent/pipe_service.rb +8 -5
  272. data/lib/new_relic/agent/prepend_supportability.rb +2 -2
  273. data/lib/new_relic/agent/priority_sampled_buffer.rb +8 -11
  274. data/lib/new_relic/agent/range_extensions.rb +8 -28
  275. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +11 -11
  276. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +13 -13
  277. data/lib/new_relic/agent/rules_engine.rb +5 -4
  278. data/lib/new_relic/agent/sampler.rb +3 -4
  279. data/lib/new_relic/agent/sampler_collection.rb +3 -4
  280. data/lib/new_relic/agent/samplers/cpu_sampler.rb +3 -2
  281. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +12 -9
  282. data/lib/new_relic/agent/samplers/memory_sampler.rb +24 -13
  283. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  284. data/lib/new_relic/agent/samplers/vm_sampler.rb +21 -19
  285. data/lib/new_relic/agent/span_event_aggregator.rb +12 -12
  286. data/lib/new_relic/agent/span_event_primitive.rb +62 -56
  287. data/lib/new_relic/agent/sql_sampler.rb +18 -18
  288. data/lib/new_relic/agent/stats.rb +78 -41
  289. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +9 -11
  290. data/lib/new_relic/agent/stats_engine/stats_hash.rb +12 -13
  291. data/lib/new_relic/agent/stats_engine.rb +8 -8
  292. data/lib/new_relic/agent/synthetics_event_aggregator.rb +7 -8
  293. data/lib/new_relic/agent/system_info.rb +85 -65
  294. data/lib/new_relic/agent/threading/agent_thread.rb +18 -14
  295. data/lib/new_relic/agent/threading/backtrace_node.rb +12 -13
  296. data/lib/new_relic/agent/threading/backtrace_service.rb +14 -14
  297. data/lib/new_relic/agent/threading/thread_profile.rb +23 -23
  298. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  299. data/lib/new_relic/agent/tracer.rb +76 -85
  300. data/lib/new_relic/agent/transaction/abstract_segment.rb +103 -40
  301. data/lib/new_relic/agent/transaction/datastore_segment.rb +21 -17
  302. data/lib/new_relic/agent/transaction/distributed_tracer.rb +63 -56
  303. data/lib/new_relic/agent/transaction/distributed_tracing.rb +43 -44
  304. data/lib/new_relic/agent/transaction/external_request_segment.rb +44 -34
  305. data/lib/new_relic/agent/transaction/message_broker_segment.rb +31 -36
  306. data/lib/new_relic/agent/transaction/request_attributes.rb +35 -35
  307. data/lib/new_relic/agent/transaction/segment.rb +14 -10
  308. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -3
  309. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  310. data/lib/new_relic/agent/transaction/trace.rb +15 -11
  311. data/lib/new_relic/agent/transaction/trace_builder.rb +10 -10
  312. data/lib/new_relic/agent/transaction/trace_context.rb +35 -35
  313. data/lib/new_relic/agent/transaction/trace_node.rb +25 -24
  314. data/lib/new_relic/agent/transaction/tracing.rb +14 -11
  315. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +4 -4
  316. data/lib/new_relic/agent/transaction.rb +164 -145
  317. data/lib/new_relic/agent/transaction_error_primitive.rb +27 -25
  318. data/lib/new_relic/agent/transaction_event_aggregator.rb +12 -12
  319. data/lib/new_relic/agent/transaction_event_primitive.rb +32 -33
  320. data/lib/new_relic/agent/transaction_event_recorder.rb +16 -15
  321. data/lib/new_relic/agent/transaction_metrics.rb +10 -9
  322. data/lib/new_relic/agent/transaction_sampler.rb +5 -6
  323. data/lib/new_relic/agent/transaction_time_aggregator.rb +26 -25
  324. data/lib/new_relic/agent/utilization/aws.rb +33 -3
  325. data/lib/new_relic/agent/utilization/azure.rb +3 -3
  326. data/lib/new_relic/agent/utilization/gcp.rb +7 -7
  327. data/lib/new_relic/agent/utilization/pcf.rb +5 -4
  328. data/lib/new_relic/agent/utilization/vendor.rb +43 -28
  329. data/lib/new_relic/agent/utilization_data.rb +7 -5
  330. data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
  331. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +2 -2
  332. data/lib/new_relic/agent/vm/mri_vm.rb +40 -15
  333. data/lib/new_relic/agent/vm/snapshot.rb +5 -5
  334. data/lib/new_relic/agent/vm.rb +1 -1
  335. data/lib/new_relic/agent/worker_loop.rb +10 -12
  336. data/lib/new_relic/agent.rb +64 -75
  337. data/lib/new_relic/cli/command.rb +20 -22
  338. data/lib/new_relic/cli/commands/deployments.rb +92 -42
  339. data/lib/new_relic/cli/commands/install.rb +12 -15
  340. data/lib/new_relic/coerce.rb +15 -13
  341. data/lib/new_relic/collection_helper.rb +50 -48
  342. data/lib/new_relic/constants.rb +1 -4
  343. data/lib/new_relic/control/class_methods.rb +3 -3
  344. data/lib/new_relic/control/frameworks/external.rb +2 -2
  345. data/lib/new_relic/control/frameworks/rails.rb +23 -17
  346. data/lib/new_relic/control/frameworks/rails3.rb +3 -4
  347. data/lib/new_relic/control/frameworks/rails4.rb +1 -1
  348. data/lib/new_relic/control/frameworks/rails_notifications.rb +1 -1
  349. data/lib/new_relic/control/frameworks/ruby.rb +3 -3
  350. data/lib/new_relic/control/frameworks/sinatra.rb +7 -1
  351. data/lib/new_relic/control/frameworks.rb +1 -1
  352. data/lib/new_relic/control/instance_methods.rb +23 -45
  353. data/lib/new_relic/control/instrumentation.rb +39 -11
  354. data/lib/new_relic/control/private_instance_methods.rb +48 -0
  355. data/lib/new_relic/control/server_methods.rb +3 -4
  356. data/lib/new_relic/control.rb +1 -2
  357. data/lib/new_relic/delayed_job_injection.rb +1 -1
  358. data/lib/new_relic/dependency_detection.rb +126 -19
  359. data/lib/new_relic/environment_report.rb +40 -32
  360. data/lib/new_relic/helper.rb +48 -7
  361. data/lib/new_relic/language_support.rb +29 -5
  362. data/lib/new_relic/latest_changes.rb +7 -6
  363. data/lib/new_relic/local_environment.rb +24 -18
  364. data/lib/new_relic/metric_data.rb +31 -26
  365. data/lib/new_relic/metric_spec.rb +8 -6
  366. data/lib/new_relic/noticed_error.rb +22 -30
  367. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  368. data/lib/new_relic/rack/agent_middleware.rb +5 -3
  369. data/lib/new_relic/rack/browser_monitoring.rb +133 -123
  370. data/lib/new_relic/rack.rb +1 -1
  371. data/lib/new_relic/recipes/capistrano3.rb +3 -61
  372. data/lib/new_relic/recipes/capistrano_legacy.rb +23 -26
  373. data/lib/new_relic/recipes/helpers/send_deployment.rb +69 -0
  374. data/lib/new_relic/recipes.rb +1 -1
  375. data/lib/new_relic/supportability_helper.rb +9 -10
  376. data/lib/new_relic/traced_thread.rb +35 -0
  377. data/lib/new_relic/version.rb +6 -17
  378. data/lib/newrelic_rpm.rb +11 -35
  379. data/lib/sequel/extensions/newrelic_instrumentation.rb +12 -15
  380. data/lib/sequel/plugins/newrelic_instrumentation.rb +4 -10
  381. data/lib/tasks/all.rb +3 -3
  382. data/lib/tasks/config.rake +22 -117
  383. data/lib/tasks/coverage_report.rake +28 -0
  384. data/lib/tasks/helpers/config.html.erb +21 -0
  385. data/lib/tasks/{config.text.erb → helpers/config.text.erb} +0 -0
  386. data/lib/tasks/helpers/format.rb +123 -0
  387. data/lib/tasks/helpers/matches.rb +12 -0
  388. data/lib/tasks/helpers/prompt.rb +24 -0
  389. data/lib/tasks/helpers/removers.rb +33 -0
  390. data/lib/tasks/install.rake +4 -0
  391. data/lib/tasks/instrumentation_generator/README.md +63 -0
  392. data/lib/tasks/instrumentation_generator/TODO.md +33 -0
  393. data/lib/tasks/instrumentation_generator/instrumentation.thor +124 -0
  394. data/lib/tasks/instrumentation_generator/templates/Envfile.tt +9 -0
  395. data/lib/tasks/instrumentation_generator/templates/chain.tt +22 -0
  396. data/lib/tasks/instrumentation_generator/templates/chain_method.tt +8 -0
  397. data/lib/tasks/instrumentation_generator/templates/dependency_detection.tt +29 -0
  398. data/lib/tasks/instrumentation_generator/templates/instrumentation.tt +13 -0
  399. data/lib/tasks/instrumentation_generator/templates/instrumentation_method.tt +3 -0
  400. data/lib/tasks/instrumentation_generator/templates/newrelic.yml.tt +19 -0
  401. data/lib/tasks/instrumentation_generator/templates/prepend.tt +13 -0
  402. data/lib/tasks/instrumentation_generator/templates/prepend_method.tt +3 -0
  403. data/lib/tasks/instrumentation_generator/templates/test.tt +15 -0
  404. data/lib/tasks/multiverse.rake +4 -0
  405. data/lib/tasks/multiverse.rb +5 -32
  406. data/lib/tasks/newrelic.rb +1 -1
  407. data/lib/tasks/tests.rake +10 -15
  408. data/newrelic.yml +648 -3
  409. data/newrelic_rpm.gemspec +25 -25
  410. data/recipes/newrelic.rb +2 -2
  411. data/test/agent_helper.rb +219 -178
  412. metadata +164 -122
  413. data/ROADMAP.md +0 -24
  414. data/bin/mongrel_rpm +0 -33
  415. data/cert/cacert.pem +0 -1177
  416. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +0 -44
  417. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +0 -53
  418. data/lib/new_relic/agent/instrumentation/excon/connection.rb +0 -49
  419. data/lib/new_relic/agent/instrumentation/http.rb +0 -49
  420. data/lib/new_relic/agent/instrumentation/merb/controller.rb +0 -44
  421. data/lib/new_relic/agent/instrumentation/merb/errors.rb +0 -33
  422. data/lib/new_relic/agent/instrumentation/net.rb +0 -70
  423. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +0 -125
  424. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +0 -46
  425. data/lib/new_relic/agent/supported_versions.rb +0 -275
  426. data/lib/new_relic/control/frameworks/merb.rb +0 -29
  427. data/lib/tasks/config.html.erb +0 -32
data/newrelic.yml CHANGED
@@ -2,7 +2,7 @@
2
2
  # This file configures the New Relic Agent. New Relic monitors Ruby, Java,
3
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
7
  #<%= "\n# #{generated_for_user}\n#" if generated_for_user %>
8
8
  # For full documentation of agent configuration options, please refer to
@@ -13,15 +13,660 @@ 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
+ # If `true`, all logging-related features for the agent can be enabled or disabled
30
+ # independently. If `false`, all logging-related features are disabled.
31
+ # application_logging.enabled: true
32
+
33
+ # If `true`, the agent captures log records emitted by this application.
34
+ # application_logging.forwarding.enabled: true
35
+
36
+ # Defines the maximum number of log records to buffer in memory at a time.
37
+ # application_logging.forwarding.max_samples_stored: 10000
38
+
39
+ # If `true`, the agent captures metrics related to logging for this application.
40
+ # application_logging.metrics.enabled: true
41
+
42
+ # If `true`, the agent decorates logs with metadata to link to entities, hosts, traces, and spans.
43
+ # application_logging.local_decorating.enabled: false
44
+
45
+ # If `true`, the agent will report source code level metrics for traced methods
46
+ # see: https://docs.newrelic.com/docs/apm/agents/ruby-agent/features/ruby-codestream-integration/
47
+ # code_level_metrics.enabled: true
48
+
49
+ # If true, enables transaction event sampling.
50
+ # transaction_events.enabled: true
51
+
52
+ # Defines the maximum number of request events reported from a single harvest.
53
+ # transaction_events.max_samples_stored: 1200
54
+
55
+ # Prefix of attributes to exclude from all destinations. Allows * as wildcard at
56
+ # end.
57
+ # attributes_exclude: []
58
+
59
+ # Prefix of attributes to include in all destinations. Allows * as wildcard at
60
+ # end.
61
+ # attributes_include: []
62
+
63
+ # If true, enables capture of attributes for all destinations.
64
+ # attributes.enabled: true
65
+
66
+ # If true, enables an audit log which logs communications with the New Relic
67
+ # collector.
68
+ # audit_log.enabled: false
69
+
70
+ # List of allowed endpoints to include in audit log.
71
+ # audit_log.endpoints: [".*"]
72
+
73
+ # Specifies a path to the audit log file (including the filename).
74
+ # audit_log.path: "/audit_log"
75
+
76
+ # Specify a list of constants that should prevent the agent from starting
77
+ # automatically. Separate individual constants with a comma ,.
78
+ # For example, Rails::Console,UninstrumentedBackgroundJob.
79
+ # autostart.denylisted_constants: "rails::console"
80
+
81
+ # Defines a comma-delimited list of executables that the agent should not
82
+ # instrument. For example, rake,my_ruby_script.rb.
83
+ # autostart.denylisted_executables: "irb,rspec"
84
+
85
+ # Defines a comma-delimited list of Rake tasks that the agent should not
86
+ # instrument. For example, assets:precompile,db:migrate.
87
+ # 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"
88
+
89
+ # Backports the faster Active Record connection lookup introduced in Rails 6,
90
+ # which improves agent performance when instrumenting Active Record. Note that
91
+ # this setting may not be compatible with other gems that patch Active Record.
92
+ # backport_fast_active_record_connection_lookup: false
93
+
94
+ # If true, the agent captures attributes from browser monitoring.
95
+ # browser_monitoring.attributes.enabled: false
96
+
97
+ # Prefix of attributes to exclude from browser monitoring. Allows * as wildcard
98
+ # at end.
99
+ # browser_monitoring.attributes.exclude: []
100
+
101
+ # Prefix of attributes to include in browser monitoring. Allows * as wildcard at
102
+ # end.
103
+ # browser_monitoring.attributes.include: []
104
+
105
+ # This is true by default, this enables auto-injection of the JavaScript header
106
+ # for page load timing (sometimes referred to as real user monitoring or RUM).
107
+ # browser_monitoring.auto_instrument: true
108
+
109
+ # Manual override for the path to your local CA bundle. This CA bundle will be
110
+ # used to validate the SSL certificate presented by New Relic's data collection
111
+ # service.
112
+ # ca_bundle_path: nil
113
+
114
+ # Enable or disable the capture of memcache keys from transaction traces.
115
+ # capture_memcache_keys: false
116
+
117
+ # When true, the agent captures HTTP request parameters and attaches them to
118
+ # transaction traces, traced errors, and TransactionError events. When using the
119
+ # capture_params setting, the Ruby agent will not attempt to filter secret
120
+ # information. Recommendation: To filter secret information from request
121
+ # parameters,use the attributes.include setting instead. For more information,
122
+ # see the Ruby attribute examples.
123
+ # capture_params: false
124
+
125
+ # If true, the agent will clear Tracer::State in Agent.drop_buffered_data.
126
+ # clear_transaction_state_after_fork: false
127
+
128
+ # Path to newrelic.yml. If undefined, the agent checks the following directories
129
+ # (in order): config/newrelic.yml, newrelic.yml, $HOME/.newrelic/newrelic.yml
130
+ # and $HOME/newrelic.yml.
131
+ # config_path: newrelic.yml
132
+
133
+ # If true, enables cross application tracing. Cross application tracing is now
134
+ # deprecated, and disabled by default. Distributed tracing is replacing cross
135
+ # application tracing as the default means of tracing between services.
136
+ # To continue using it, set `cross_application_tracer.enabled: true` and
137
+ # `distributed_tracing.enabled: false`
138
+ # cross_application_tracer.enabled: false
139
+
140
+ # If false, custom attributes will not be sent on New Relic Insights events.
141
+ # custom_attributes.enabled: true
142
+
143
+ # If true, the agent captures New Relic Insights custom events.
144
+ # custom_insights_events.enabled: true
145
+
146
+ # Specify a maximum number of custom Insights events to buffer in memory at a
147
+ # time.
148
+ # custom_insights_events.max_samples_stored: 3000
149
+
150
+ # If false, the agent will not add database_name parameter to transaction or #
151
+ # slow sql traces.
152
+ # datastore_tracer.database_name_reporting.enabled: true
153
+
154
+ # If false, the agent will not report datastore instance metrics, nor add host
155
+ # or port_path_or_id parameters to transaction or slow SQL traces.
156
+ # datastore_tracer.instance_reporting.enabled: true
157
+
158
+ # If true, disables Action Cable instrumentation.
159
+ # disable_action_cable_instrumentation: false
160
+
161
+ # If true, disables instrumentation for Active Record 4, 5, and 6.
162
+ # disable_active_record_notifications: false
163
+
164
+ # If true, disables Active Storage instrumentation.
165
+ # disable_active_storage: false
166
+
167
+ # If true, disables Active Job instrumentation.
168
+ # disable_activejob: false
169
+
170
+ # If true, disables Active Record instrumentation.
171
+ # disable_active_record_instrumentation: false
172
+
173
+ # If true, the agent won't sample the CPU usage of the host process.
174
+ # disable_cpu_sampler: false
175
+
176
+ # If true, disables DataMapper instrumentation.
177
+ # disable_data_mapper: false
178
+
179
+ # If true, the agent won't measure the depth of Delayed Job queues.
180
+ # disable_delayed_job_sampler: false
181
+
182
+ # If true, disables the use of GC::Profiler to measure time spent in garbage
183
+ # collection
184
+ # disable_gc_profiler: false
185
+
186
+ # If true, the agent won't sample the memory usage of the host process.
187
+ # disable_memory_sampler: false
188
+
189
+ # If true, the agent won't wrap third-party middlewares in instrumentation
190
+ # (regardless of whether they are installed via Rack::Builder or Rails).
191
+ # disable_middleware_instrumentation: false
192
+
193
+ # If true, disables the collection of sampler metrics. Sampler metrics are
194
+ # metrics that are not event-based (such as CPU time or memory usage).
195
+ # disable_samplers: false
196
+
197
+ # If true, disables Sequel instrumentation.
198
+ # disable_sequel_instrumentation: false
199
+
200
+ # If true, disables Sidekiq instrumentation.
201
+ # disable_sidekiq: false
202
+
203
+ # If true, disables agent middleware for Sinatra. This middleware is responsible
204
+ # for advanced feature support such as distributed tracing, page load
205
+ # timing, and error collection.
206
+ # disable_sinatra_auto_middleware: false
207
+
208
+ # If true, disables view instrumentation.
209
+ # disable_view_instrumentation: false
210
+
211
+ # If true, the agent won't sample performance measurements from the Ruby VM.
212
+ # disable_vm_sampler: false
213
+
214
+ # Distributed tracing tracks and observes service requests as they flow through distributed systems.
215
+ # With distributed tracing data, you can quickly pinpoint failures or performance issues and fix them.
216
+ # distributed_tracing.enabled: true
217
+
218
+ # If true, the agent captures attributes from error collection.
219
+ # error_collector.attributes.enabled: false
220
+
221
+ # Prefix of attributes to exclude from error collection.
222
+ # Allows * as wildcard at end.
223
+ # error_collector.attributes.exclude: []
224
+
225
+ # Prefix of attributes to include in error collection.
226
+ # Allows * as wildcard at end.
227
+ # error_collector.attributes.include: []
228
+
229
+ # If true, the agent collects TransactionError events.
230
+ # error_collector.capture_events: true
231
+
232
+ # If true, the agent captures traced errors and error count metrics.
233
+ # error_collector.enabled: true
234
+
235
+ # A list of error classes that the agent should treat as expected.
236
+ # error_collector.expected_classes: []
237
+
238
+ # A map of error classes to a list of messages. When an error of one of the
239
+ # classes specified here occurs, if its error message contains one of the
240
+ # strings corresponding to it here, that error will be treated as expected.
241
+ # error_collector.expected_messages: {}
242
+
243
+ # A comma separated list of status codes, possibly including ranges. Errors
244
+ # associated with these status codes, where applicable, will be treated as
245
+ # expected.
246
+ # error_collector.expected_status_codes: ""
247
+
248
+ # A list of error classes that the agent should ignore.
249
+ # error_collector.ignore_classes: []
250
+
251
+ # A map of error classes to a list of messages. When an error of one of the
252
+ # classes specified here occurs, if its error message contains one of the
253
+ # strings corresponding to it here, that error will be ignored.
254
+ # error_collector.ignore_messages: ""
255
+
256
+ # A comma separated list of status codes, possibly including ranges. Errors
257
+ # associated with these status codes, where applicable, will be ignored.
258
+ # error_collector.ignore_status_codes: ""
259
+
260
+ # Defines the maximum number of frames in an error backtrace. Backtraces over
261
+ # this amount are truncated at the beginning and end.
262
+ # error_collector.max_backtrace_frames: 50
263
+
264
+ # Defines the maximum number of TransactionError events sent to Insights per
265
+ # harvest cycle.
266
+ # error_collector.max_event_samples_stored: 100
267
+
268
+ # Allows newrelic distributed tracing headers to be suppressed on outbound
269
+ # requests.
270
+ # exclude_newrelic_header: false
271
+
272
+ # Forces the exit handler that sends all cached data to collector before
273
+ # shutting down to be installed regardless of detecting scenarios where it
274
+ # generally should not be. Known use-case for this option is where Sinatra is
275
+ # running as an embedded service within another framework and the agent is
276
+ # detecting the Sinatra app and skipping the at_exit handler as a result.
277
+ # Sinatra classically runs the entire application in an at_exit block and would
278
+ # otherwise misbehave if the Agent's at_exit handler was also installed in
279
+ # those circumstances. Note: send_data_on_exit should also be set to true in
280
+ # tandem with this setting.
281
+ # force_install_exit_handler: false
282
+
283
+ # Ordinarily the agent reports dyno names with a trailing dot and process ID
284
+ # (for example, worker.3). You can remove this trailing data by specifying the
285
+ # prefixes you want to report without trailing data (for example, worker).
286
+ # heroku.dyno_name_prefixes_to_shorten: ["scheduler", "run"]
287
+
288
+ # If true, the agent uses Heroku dyno names as the hostname.
289
+ # heroku.use_dyno_names: true
290
+
291
+ # If true, enables high security mode. Ensure that you understand the
292
+ # implication of enabling high security mode before enabling this setting.
293
+ # https://docs.newrelic.com/docs/agents/manage-apm-agents/configuration/high-security-mode/
294
+ # high_security: false
295
+
296
+ # Configures the hostname for the Trace Observer Host. When configured, enables
297
+ # tail-based sampling by sending all recorded spans to a Trace Observer for
298
+ # further sampling decisions, irrespective of any usual agent sampling decision.
299
+ # infinite_tracing.trace_observer.host: ""
300
+
301
+ # Configures the TCP/IP port for the Trace Observer Host
302
+ # infinite_tracing.trace_observer.port: 443
303
+
304
+ # Configure the compression level for data sent to the Trace Observer
305
+ # May be one of [none|low|medium|high]
306
+ # By default, compression is not used (level = none)
307
+ # infinite_tracing.compression_level: none
308
+
309
+ # If true, data sent to the Trace Observer will be batched instead of
310
+ # the default of each span being sent individually
311
+ # infinite_tracing.batching: false
312
+
313
+ # Controls auto-instrumentation of bunny at start up.
314
+ # May be one of [auto|prepend|chain|disabled].
315
+ # instrumentation.bunny: auto
316
+
317
+ # Controls auto-instrumentation of Curb at start up.
318
+ # May be one of [auto|prepend|chain|disabled].
319
+ # instrumentation.curb: auto
320
+
321
+ # Controls auto-instrumentation of Delayed Job at start up.
322
+ # May be one of [auto|prepend|chain|disabled].
323
+ # instrumentation.delayed_job: auto
324
+
325
+ # Controls auto-instrumentation of the elasticsearch library at start up.
326
+ # May be one of [auto|prepend|chain|disabled].
327
+ # instrumentation.elasticsearch: auto
328
+
329
+ # Controls auto-instrumentation of Excon at start up.
330
+ # May be one of [enabled|disabled].
331
+ # instrumentation.excon: auto
332
+
333
+ # Controls auto-instrumentation of Grape at start up.
334
+ # May be one of [auto|prepend|chain|disabled].
335
+ # instrumentation.grape: auto
336
+
337
+ # Controls auto-instrumentation of HTTPClient at start up.
338
+ # May be one of [auto|prepend|chain|disabled].
339
+ # instrumentation.httpclient: auto
340
+
341
+ # Controls auto-instrumentation of http.rb gem at start up.
342
+ # May be one of [auto|prepend|chain|disabled].
343
+ # instrumentation.httprb: auto
344
+
345
+ # Controls auto-instrumentation of the Ruby standard library Logger.rb.
346
+ # May be one of [auto|prepend|chain|disabled].
347
+ # instrumentation.logger: auto
348
+
349
+ # Controls auto-instrumentation of ActiveSupport::Logger at start up.
350
+ # May be one of [auto|prepend|chain|disabled].
351
+ # instrumentation.active_support.logger: auto
352
+
353
+ # Controls auto-instrumentation of memcache-client gem for Memcache at start up.
354
+ # May be one of [auto|prepend|chain|disabled].
355
+ # instrumentation.memcache_client: auto
356
+
357
+ # Controls auto-instrumentation of dalli gem for Memcache at start up.
358
+ # May be one of [auto|prepend|chain|disabled].
359
+ # instrumentation.memcache: auto
360
+
361
+ # Controls auto-instrumentation of memcached gem for Memcache at start up.
362
+ # May be one of [auto|prepend|chain|disabled].
363
+ # instrumentation.memcached: auto
364
+
365
+ # Controls auto-instrumentation of Mongo at start up.
366
+ # May be one of [enabled|disabled].
367
+ # instrumentation.mongo: auto
368
+
369
+ # Controls auto-instrumentation of Net::HTTP at start up.
370
+ # May be one of [auto|prepend|chain|disabled].
371
+ # instrumentation.net_http: auto
372
+
373
+ # Controls auto-instrumentation of Puma::Rack::URLMap at start up.
374
+ # May be one of [auto|prepend|chain|disabled].
375
+ # instrumentation.puma_rack_urlmap: auto
376
+
377
+ # Controls auto-instrumentation of Puma::Rack. When enabled, the agent hooks
378
+ # into the to_app method in Puma::Rack::Builder to find gems to instrument
379
+ # during application startup. May be one of [auto|prepend|chain|disabled].
380
+ # instrumentation.puma_rack: auto
381
+
382
+ # Controls auto-instrumentation of Rack::URLMap at start up.
383
+ # May be one of [auto|prepend|chain|disabled].
384
+ # instrumentation.rack_urlmap: auto
385
+
386
+ # Controls auto-instrumentation of Rack. When enabled, the agent hooks into the
387
+ # to_app method in Rack::Builder to find gems to instrument during application
388
+ # startup. May be one of [auto|prepend|chain|disabled].
389
+ # instrumentation.rack: auto
390
+
391
+ # Controls auto-instrumentation of rake at start up.
392
+ # May be one of [auto|prepend|chain|disabled].
393
+ # instrumentation.rake: auto
394
+
395
+ # Controls auto-instrumentation of Redis at start up.
396
+ # May be one of [auto|prepend|chain|disabled].
397
+ # instrumentation.redis: auto
398
+
399
+ # Controls auto-instrumentation of resque at start up.
400
+ # May be one of [auto|prepend|chain|disabled].
401
+ # instrumentation.resque: auto
402
+
403
+ # Controls auto-instrumentation of Sinatra at start up.
404
+ # May be one of [auto|prepend|chain|disabled].
405
+ # instrumentation.sinatra: auto
406
+
407
+ # Controls auto-instrumentation of Tilt at start up.
408
+ # May be one of [auto|prepend|chain|disabled].
409
+ # instrumentation.tilt: auto
410
+
411
+ # Controls auto-instrumentation of Typhoeus at start up.
412
+ # May be one of [auto|prepend|chain|disabled].
413
+ # instrumentation.typhoeus: auto
414
+
415
+ # Controls auto-instrumentation of the Thread class at start up to allow the agent to correctly nest spans inside of an asynchronous transaction.
416
+ # May be one of [auto|prepend|chain|disabled].
417
+ # instrumentation.thread: auto
418
+
419
+ # Controls auto-instrumentation of the Thread class at start up to automatically add tracing to all Threads created in the application.
420
+ # instrumentation.thread.tracing: false
421
+
422
+ # Controls auto-instrumentation of gRPC clients at start up.
423
+ # May be one of [auto|prepend|chain|disabled].
424
+ # instrumentation.grpc_client: auto
425
+
426
+ # Controls auto-instrumentation of gRPC servers at start up.
427
+ # May be one of [auto|prepend|chain|disabled].
428
+ # instrumentation.grpc_server: auto
429
+
430
+ # Specifies a list of hostname patterns separated by commas that will match
431
+ # gRPC hostnames that traffic is to be ignored by New Relic for.
432
+ # New Relic's gRPC client instrumentation will ignore traffic streamed to a
433
+ # host matching any of these patterns, and New Relic's gRPC server
434
+ # instrumentation will ignore traffic for a server running on a host whose
435
+ # hostname matches any of these patterns. By default, no traffic is ignored
436
+ # when gRPC instrumentation is itself enabled.
437
+ # For example, "private.com$,exception.*"
438
+ # instrumentation.grpc.host_denylist: ""
439
+
440
+ # A dictionary of label names and values that will be applied to the data sent
441
+ # from this agent. May also be expressed as a semicolon-delimited ; string of
442
+ # colon-separated : pairs.
443
+ # For example,<var>Server</var>:<var>One</var>;<var>Data Center</var>:<var>Primary</var>.
444
+ # labels: ""
445
+
446
+ # Defines a name for the log file.
447
+ # log_file_name: "newrelic_agent.log"
448
+
449
+ # Defines a path to the agent log file, excluding the filename.
450
+ # log_file_path: "log/"
451
+
452
+ # Specifies a marshaller for transmitting data to the New Relic collector.
453
+ # Currently json is the only valid value for this setting.
454
+ # marshaller: json
455
+
456
+ # If true, the agent will collect metadata about messages and attach them as
457
+ # segment parameters.
458
+ # message_tracer.segment_parameters.enabled: true
459
+
460
+ # If true, the agent captures Mongo queries in transaction traces.
461
+ # mongo.capture_queries: true
462
+
463
+ # If true, the agent obfuscates Mongo queries in transaction traces.
464
+ # mongo.obfuscate_queries: true
465
+
466
+ # If true, the agent captures Elasticsearch queries in transaction traces.
467
+ # elasticsearch.capture_queries: true
468
+
469
+ # If true, the agent obfuscates Elasticsearch queries in transaction traces.
470
+ # elasticsearch.obfuscate_queries: true
471
+
472
+ # When true, the agent transmits data about your app to the New Relic collector.
473
+ # monitor_mode: true
474
+
475
+ # If true, uses Module#prepend rather than alias_method for Active Record
476
+ # instrumentation.
477
+ # prepend_active_record_instrumentation: false
478
+
479
+ # Specify a custom host name for display in the New Relic UI
480
+ # Be be aware that you cannot rename a hostname, so please rename
481
+ # process_host.display_name: "default hostname"
482
+
483
+ # Defines a host for communicating with the New Relic collector via a proxy
484
+ # server.
485
+ # proxy_host: nil
486
+
487
+ # Defines a password for communicating with the New Relic collector via a proxy
488
+ # server.
489
+ # proxy_pass: nil
490
+
491
+ # Defines a port for communicating with the New Relic collector via a proxy
492
+ # server.
493
+ # proxy_port: nil
494
+
495
+ # Defines a user for communicating with the New Relic collector via a proxy
496
+ # server.
497
+ # proxy_user: nil
498
+
499
+ # Timeout for waiting on connect to complete before a rake task
500
+ # rake.connect_timeout: 10
501
+
502
+ # Specify an array of Rake tasks to automatically instrument.
503
+ # This configuration option converts the Array to a RegEx list.
504
+ # If you'd like to allow all tasks by default, use `rake.tasks: [.+]`.
505
+ # Rake tasks will not be instrumented unless they're added to this list.
506
+ # For more information, visit the (New Relic Rake Instrumentation docs)[/docs/apm/agents/ruby-agent/background-jobs/rake-instrumentation].
507
+ # rake.tasks: []
508
+
509
+ # Define transactions you want the agent to ignore, by specifying a list of
510
+ # patterns matching the URI you want to ignore.
511
+ # rules.ignore_url_regexes: []
512
+
513
+ # Applies Language Agent Security Policy settings.
514
+ # security_policies_token: ""
515
+
516
+ # If true, enables the exit handler that sends data to the New Relic collector
517
+ # before shutting down.
518
+ # send_data_on_exit: true
519
+
520
+ # If true, the agent collects slow SQL queries.
521
+ # slow_sql.enabled: false
522
+
523
+ # If true, the agent collects explain plans in slow SQL queries. If this setting
524
+ # is omitted, the transaction_tracer.explain.enabled setting will be applied as
525
+ # the default setting for explain plans in slow SQL as well.
526
+ # slow_sql.explain_enabled: false
527
+
528
+ # Specify a threshold in seconds. The agent collects slow SQL queries and
529
+ # explain plans that exceed this threshold.
530
+ # slow_sql.explain_threshold: 1.0
531
+
532
+ # Defines an obfuscation level for slow SQL queries.
533
+ # Valid options are obfuscated, raw, or none.
534
+ # slow_sql.record_sql: none
535
+
536
+ # Generate a longer sql_id for slow SQL traces. sql_id is used for aggregation
537
+ # of similar queries.
538
+ # slow_sql.use_longer_sql_id: false
539
+
540
+ # If true, the agent captures attributes on span events.
541
+ # span_events_attributes.enabled: true
542
+
543
+ # Defines the maximum number of span events reported from a single harvest.
544
+ # This can be any integer between 1 and 10000. Increasing this value may impact
545
+ # memory usage.
546
+ # span_events.max_samples_stored: 2000
547
+
548
+ # Prefix of attributes to exclude from span events. Allows * as wildcard at end.
549
+ # span_events.attributes.exclude: []
550
+
551
+ # Prefix of attributes to include on span events. Allows * as wildcard at end.
552
+ # span_events.attributes.include: []
553
+
554
+ # If true, enables span event sampling.
555
+ # span_events.enabled: true
556
+
557
+ # Sets the maximum number of span events to buffer when streaming to the trace
558
+ # observer.
559
+ # span_events.queue_size: 10000
560
+
561
+ # Specify a list of exceptions you do not want the agent to strip when
562
+ # strip_exception_messages is true. Separate exceptions with a comma. For
563
+ # example, "ImportantException,PreserveMessageException".
564
+ # strip_exception_messages.allowed_classes: ""
565
+
566
+ # If true, the agent strips messages from all exceptions except those in the
567
+ # allowlist. Enabled automatically in high security mode.
568
+ # strip_exception_messages.enabled: true
569
+
570
+ # When set to true, forces a synchronous connection to the New Relic collector
571
+ # during application startup. For very short-lived processes, this helps ensure # the New Relic agent has time to report.
572
+ # sync_startup: false
573
+
574
+ # If true, enables use of the thread profiler.
575
+ # thread_profiler.enabled: false
576
+
577
+ # Defines the maximum number of seconds the agent should spend attempting to
578
+ # connect to the collector.
579
+ # timeout: 120
580
+
581
+ # If true, the agent captures attributes from transaction events.
582
+ # transaction_events_attributes.enabled: false
583
+
584
+ # Prefix of attributes to exclude from transaction events.
585
+ # Allows * as wildcard at end.
586
+ # transaction_events.attributes.exclude: []
587
+
588
+ # Prefix of attributes to include in transaction events.
589
+ # Allows * as wildcard at end.
590
+ # transaction_events.attributes.include: []
591
+
592
+ # If true, the agent captures attributes on transaction segments.
593
+ # transaction_segments_attributes.enabled: true
594
+
595
+ # Prefix of attributes to exclude from transaction segments.
596
+ # Allows * as wildcard at end.
597
+ # transaction_segments.attributes.exclude: []
598
+
599
+ # Prefix of attributes to include on transaction segments.
600
+ # Allows * as wildcard at end.
601
+ # transaction_segments.attributes.include: []
602
+
603
+ # If true, the agent captures attributes from transaction traces.
604
+ # transaction_tracer.attributes.enabled: false
605
+
606
+ # Prefix of attributes to exclude from transaction traces.
607
+ # Allows * as wildcard at end.
608
+ # transaction_tracer.attributes.exclude: []
609
+
610
+ # Prefix of attributes to include in transaction traces.
611
+ # Allows * as wildcard at end.
612
+ # transaction_tracer.attributes.include: []
613
+
614
+ # If true, enables collection of transaction traces.
615
+ # transaction_tracer.enabled: true
616
+
617
+ # Threshold (in seconds) above which the agent will collect explain plans.
618
+ # Relevant only when explain.enabled is true.
619
+ # transaction_tracer.explain_threshold: 0.5
620
+
621
+ # If true, enables the collection of explain plans in transaction traces.
622
+ # This setting will also apply to explain plans in slow SQL traces if
623
+ # slow_sql.explain enabled is not set separately.
624
+ # transaction_tracer.explain.enabled: true
625
+
626
+ # Maximum number of transaction trace nodes to record in a single transaction
627
+ # trace.
628
+ # transaction_tracer.limit_segments: 4000
629
+
630
+ # If true, the agent records Redis command arguments in transaction traces.
631
+ # transaction_tracer.record_redis_arguments: false
632
+
633
+ # Obfuscation level for SQL queries reported in transaction trace nodes.
634
+ # By default, this is set to obfuscated, which strips out the numeric and string
635
+ # literals. If you do not want the agent to capture query information, set this
636
+ # to 'none'. If you want the agent to capture all query information in its
637
+ # original form, set this to 'raw'. When you enable high security mode this is
638
+ # automatically set to 'obfuscated'
639
+ # transaction_tracer.record_sql: 'obfuscated'
640
+
641
+ # Specify a threshold in seconds. The agent includes stack traces in transaction
642
+ # trace nodes when the stack trace duration exceeds this threshold.
643
+ # transaction_tracer.stack_trace_threshold: 0.5
644
+
645
+ # Specify a threshold in seconds. Transactions with a duration longer than this
646
+ # threshold are eligible for transaction traces. Specify a float value or the
647
+ # string apdex_f.
648
+ # transaction_tracer.transaction_threshold: 1.0
649
+
650
+ # If true, the agent automatically detects that it is running in an AWS
651
+ # environment.
652
+ # utilization.detect_aws: true
653
+
654
+ # If true, the agent automatically detects that it is running in an Azure
655
+ # environment.
656
+ # utilization.detect_azure: true
657
+
658
+ # If true, the agent automatically detects that it is running in Docker.
659
+ # utilization.detect_docker: true
660
+
661
+ # If true, the agent automatically detects that it is running in an Google Cloud
662
+ # Platform environment.
663
+ # utilization.detect_gcp: true
664
+
665
+ # If true, the agent automatically detects that it is running in Kubernetes.
666
+ # utilization.detect_kubernetes: true
667
+
668
+ # If true, the agent automatically detects that it is running in a Pivotal Cloud Foundry environment.
669
+ # utilization.detect_pcf: true
25
670
 
26
671
  # Environment-specific settings are in this section.
27
672
  # RAILS_ENV or RACK_ENV (as appropriate) is used to determine the environment.