newrelic_rpm 6.2.0.354 → 6.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (310) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +8 -0
  3. data/CHANGELOG.md +646 -6
  4. data/CONTRIBUTING.md +106 -19
  5. data/Gemfile +6 -2
  6. data/Guardfile +18 -1
  7. data/LICENSE +208 -38
  8. data/README.md +81 -85
  9. data/ROADMAP.md +24 -0
  10. data/Rakefile +2 -0
  11. data/THIRD_PARTY_NOTICES.md +213 -0
  12. data/bin/nrdebug +1 -1
  13. data/init.rb +1 -1
  14. data/install.rb +1 -1
  15. data/lib/new_relic/agent/adaptive_sampler.rb +1 -1
  16. data/lib/new_relic/agent/agent.rb +168 -185
  17. data/lib/new_relic/agent/agent_logger.rb +5 -1
  18. data/lib/new_relic/agent/attribute_filter.rb +8 -8
  19. data/lib/new_relic/agent/attribute_processing.rb +1 -1
  20. data/lib/new_relic/agent/attributes.rb +152 -0
  21. data/lib/new_relic/agent/audit_logger.rb +11 -1
  22. data/lib/new_relic/agent/autostart.rb +20 -15
  23. data/lib/new_relic/agent/chained_call.rb +1 -1
  24. data/lib/new_relic/agent/commands/agent_command.rb +1 -1
  25. data/lib/new_relic/agent/commands/agent_command_router.rb +3 -22
  26. data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
  27. data/lib/new_relic/agent/configuration/default_source.rb +234 -51
  28. data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
  29. data/lib/new_relic/agent/configuration/environment_source.rb +5 -3
  30. data/lib/new_relic/agent/configuration/event_harvest_config.rb +45 -0
  31. data/lib/new_relic/agent/configuration/high_security_source.rb +2 -1
  32. data/lib/new_relic/agent/configuration/manager.rb +14 -10
  33. data/lib/new_relic/agent/configuration/manual_source.rb +1 -1
  34. data/lib/new_relic/agent/configuration/mask_defaults.rb +1 -1
  35. data/lib/new_relic/agent/configuration/security_policy_source.rb +1 -1
  36. data/lib/new_relic/agent/configuration/server_source.rb +37 -3
  37. data/lib/new_relic/agent/configuration/yaml_source.rb +12 -7
  38. data/lib/new_relic/agent/configuration.rb +1 -1
  39. data/lib/new_relic/agent/connect/request_builder.rb +61 -0
  40. data/lib/new_relic/agent/connect/response_handler.rb +61 -0
  41. data/lib/new_relic/agent/custom_event_aggregator.rb +1 -1
  42. data/lib/new_relic/agent/database/explain_plan_helpers.rb +1 -1
  43. data/lib/new_relic/agent/database/obfuscation_helpers.rb +2 -2
  44. data/lib/new_relic/agent/database/obfuscator.rb +1 -1
  45. data/lib/new_relic/agent/database/postgres_explain_obfuscator.rb +1 -1
  46. data/lib/new_relic/agent/database.rb +2 -3
  47. data/lib/new_relic/agent/database_adapter.rb +33 -0
  48. data/lib/new_relic/agent/datastores/metric_helper.rb +1 -1
  49. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +3 -3
  50. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
  51. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +9 -9
  52. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
  53. data/lib/new_relic/agent/datastores/mongo.rb +2 -2
  54. data/lib/new_relic/agent/datastores/redis.rb +1 -1
  55. data/lib/new_relic/agent/datastores.rb +1 -1
  56. data/lib/new_relic/agent/deprecator.rb +1 -1
  57. data/lib/new_relic/agent/{cross_app_payload.rb → distributed_tracing/cross_app_payload.rb} +3 -2
  58. data/lib/new_relic/agent/{cross_app_tracing.rb → distributed_tracing/cross_app_tracing.rb} +61 -46
  59. data/lib/new_relic/agent/distributed_tracing/distributed_trace_attributes.rb +84 -0
  60. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +75 -0
  61. data/lib/new_relic/agent/{distributed_trace_payload.rb → distributed_tracing/distributed_trace_payload.rb} +25 -102
  62. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +39 -0
  63. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +246 -0
  64. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +126 -0
  65. data/lib/new_relic/agent/distributed_tracing.rb +156 -7
  66. data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
  67. data/lib/new_relic/agent/error_collector.rb +36 -19
  68. data/lib/new_relic/agent/error_event_aggregator.rb +10 -7
  69. data/lib/new_relic/agent/error_trace_aggregator.rb +2 -1
  70. data/lib/new_relic/agent/event_aggregator.rb +27 -33
  71. data/lib/new_relic/agent/event_buffer.rb +1 -1
  72. data/lib/new_relic/agent/event_listener.rb +1 -1
  73. data/lib/new_relic/agent/event_loop.rb +1 -1
  74. data/lib/new_relic/agent/external.rb +8 -8
  75. data/lib/new_relic/agent/guid_generator.rb +28 -0
  76. data/lib/new_relic/agent/harvester.rb +1 -1
  77. data/lib/new_relic/agent/heap.rb +1 -1
  78. data/lib/new_relic/agent/hostname.rb +9 -3
  79. data/lib/new_relic/agent/http_clients/abstract.rb +82 -0
  80. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +25 -20
  81. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +29 -14
  82. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +18 -22
  83. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +11 -12
  84. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +17 -5
  85. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +5 -7
  86. data/lib/new_relic/agent/http_clients/uri_util.rb +12 -11
  87. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +26 -46
  88. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +51 -75
  89. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +81 -56
  90. data/lib/new_relic/agent/instrumentation/active_job.rb +1 -1
  91. data/lib/new_relic/agent/instrumentation/active_merchant.rb +1 -1
  92. data/lib/new_relic/agent/instrumentation/active_record.rb +85 -38
  93. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +17 -6
  94. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +168 -0
  95. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +35 -11
  96. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +46 -48
  97. data/lib/new_relic/agent/instrumentation/active_storage.rb +1 -1
  98. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +12 -8
  99. data/lib/new_relic/agent/instrumentation/acts_as_solr.rb +10 -9
  100. data/lib/new_relic/agent/instrumentation/authlogic.rb +1 -1
  101. data/lib/new_relic/agent/instrumentation/bunny.rb +48 -29
  102. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +1 -1
  103. data/lib/new_relic/agent/instrumentation/curb.rb +66 -19
  104. data/lib/new_relic/agent/instrumentation/data_mapper.rb +4 -2
  105. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -1
  106. data/lib/new_relic/agent/instrumentation/excon/connection.rb +7 -4
  107. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +3 -2
  108. data/lib/new_relic/agent/instrumentation/excon.rb +2 -2
  109. data/lib/new_relic/agent/instrumentation/grape.rb +8 -14
  110. data/lib/new_relic/agent/instrumentation/http.rb +7 -4
  111. data/lib/new_relic/agent/instrumentation/httpclient.rb +6 -4
  112. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  113. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +7 -3
  114. data/lib/new_relic/agent/instrumentation/memcache.rb +4 -2
  115. data/lib/new_relic/agent/instrumentation/merb/controller.rb +1 -1
  116. data/lib/new_relic/agent/instrumentation/merb/errors.rb +1 -1
  117. data/lib/new_relic/agent/instrumentation/middleware_proxy.rb +1 -1
  118. data/lib/new_relic/agent/instrumentation/middleware_tracing.rb +9 -7
  119. data/lib/new_relic/agent/instrumentation/mongo.rb +10 -4
  120. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +36 -3
  121. data/lib/new_relic/agent/instrumentation/net.rb +48 -28
  122. data/lib/new_relic/agent/instrumentation/net_prepend.rb +40 -0
  123. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +100 -0
  124. data/lib/new_relic/agent/instrumentation/padrino.rb +3 -1
  125. data/lib/new_relic/agent/instrumentation/passenger_instrumentation.rb +1 -1
  126. data/lib/new_relic/agent/instrumentation/queue_time.rb +1 -1
  127. data/lib/new_relic/agent/instrumentation/rack.rb +3 -1
  128. data/lib/new_relic/agent/instrumentation/rails/action_controller.rb +1 -1
  129. data/lib/new_relic/agent/instrumentation/rails/action_web_service.rb +1 -1
  130. data/lib/new_relic/agent/instrumentation/rails3/action_controller.rb +1 -1
  131. data/lib/new_relic/agent/instrumentation/rails_middleware.rb +1 -1
  132. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_cable.rb +6 -7
  133. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_controller.rb +4 -4
  134. data/lib/new_relic/agent/instrumentation/{rails5 → rails_notifications}/action_view.rb +4 -4
  135. data/lib/new_relic/agent/instrumentation/rainbows_instrumentation.rb +1 -1
  136. data/lib/new_relic/agent/instrumentation/rake.rb +2 -1
  137. data/lib/new_relic/agent/instrumentation/redis.rb +12 -6
  138. data/lib/new_relic/agent/instrumentation/resque.rb +4 -1
  139. data/lib/new_relic/agent/instrumentation/sequel.rb +1 -1
  140. data/lib/new_relic/agent/instrumentation/sequel_helper.rb +1 -1
  141. data/lib/new_relic/agent/instrumentation/sidekiq.rb +48 -24
  142. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  143. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  144. data/lib/new_relic/agent/instrumentation/sinatra.rb +1 -2
  145. data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
  146. data/lib/new_relic/agent/instrumentation/typhoeus.rb +24 -7
  147. data/lib/new_relic/agent/instrumentation.rb +1 -1
  148. data/lib/new_relic/agent/internal_agent_error.rb +1 -1
  149. data/lib/new_relic/agent/javascript_instrumentor.rb +2 -2
  150. data/lib/new_relic/agent/log_once.rb +1 -1
  151. data/lib/new_relic/agent/logging.rb +139 -0
  152. data/lib/new_relic/agent/memory_logger.rb +1 -1
  153. data/lib/new_relic/agent/messaging.rb +6 -74
  154. data/lib/new_relic/agent/method_tracer.rb +10 -8
  155. data/lib/new_relic/agent/method_tracer_helpers.rb +3 -3
  156. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +110 -0
  157. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +27 -0
  158. data/lib/new_relic/agent/{inbound_request_monitor.rb → monitors/inbound_request_monitor.rb} +4 -4
  159. data/lib/new_relic/agent/{synthetics_monitor.rb → monitors/synthetics_monitor.rb} +3 -5
  160. data/lib/new_relic/agent/monitors.rb +27 -0
  161. data/lib/new_relic/agent/new_relic_service/encoders.rb +1 -1
  162. data/lib/new_relic/agent/new_relic_service/json_marshaller.rb +1 -1
  163. data/lib/new_relic/agent/new_relic_service/marshaller.rb +1 -1
  164. data/lib/new_relic/agent/new_relic_service/security_policy_settings.rb +1 -1
  165. data/lib/new_relic/agent/new_relic_service.rb +34 -14
  166. data/lib/new_relic/agent/noticible_error.rb +22 -0
  167. data/lib/new_relic/agent/null_logger.rb +1 -1
  168. data/lib/new_relic/agent/obfuscator.rb +1 -1
  169. data/lib/new_relic/agent/parameter_filtering.rb +19 -6
  170. data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
  171. data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
  172. data/lib/new_relic/agent/pipe_service.rb +1 -1
  173. data/lib/new_relic/agent/prepend_supportability.rb +1 -1
  174. data/lib/new_relic/agent/priority_sampled_buffer.rb +9 -4
  175. data/lib/new_relic/agent/range_extensions.rb +1 -1
  176. data/lib/new_relic/agent/rules_engine/replacement_rule.rb +1 -1
  177. data/lib/new_relic/agent/rules_engine/segment_terms_rule.rb +1 -1
  178. data/lib/new_relic/agent/rules_engine.rb +1 -1
  179. data/lib/new_relic/agent/sampler.rb +1 -1
  180. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  181. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  182. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
  183. data/lib/new_relic/agent/samplers/memory_sampler.rb +2 -2
  184. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  185. data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
  186. data/lib/new_relic/agent/span_event_aggregator.rb +3 -5
  187. data/lib/new_relic/agent/span_event_primitive.rb +108 -54
  188. data/lib/new_relic/agent/sql_sampler.rb +6 -6
  189. data/lib/new_relic/agent/stats.rb +1 -1
  190. data/lib/new_relic/agent/stats_engine/gc_profiler.rb +2 -2
  191. data/lib/new_relic/agent/stats_engine/stats_hash.rb +1 -1
  192. data/lib/new_relic/agent/stats_engine.rb +1 -1
  193. data/lib/new_relic/agent/supported_versions.rb +3 -3
  194. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  195. data/lib/new_relic/agent/system_info.rb +13 -4
  196. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  197. data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
  198. data/lib/new_relic/agent/threading/backtrace_service.rb +4 -4
  199. data/lib/new_relic/agent/threading/thread_profile.rb +10 -24
  200. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  201. data/lib/new_relic/agent/tracer.rb +66 -19
  202. data/lib/new_relic/agent/transaction/abstract_segment.rb +32 -5
  203. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  204. data/lib/new_relic/agent/transaction/distributed_tracer.rb +177 -0
  205. data/lib/new_relic/agent/transaction/distributed_tracing.rb +58 -147
  206. data/lib/new_relic/agent/transaction/external_request_segment.rb +32 -39
  207. data/lib/new_relic/agent/transaction/message_broker_segment.rb +5 -12
  208. data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
  209. data/lib/new_relic/agent/transaction/segment.rb +28 -2
  210. data/lib/new_relic/agent/transaction/slowest_sample_buffer.rb +1 -1
  211. data/lib/new_relic/agent/transaction/synthetics_sample_buffer.rb +1 -1
  212. data/lib/new_relic/agent/transaction/trace.rb +6 -13
  213. data/lib/new_relic/agent/transaction/trace_builder.rb +1 -2
  214. data/lib/new_relic/agent/transaction/trace_context.rb +168 -0
  215. data/lib/new_relic/agent/transaction/trace_node.rb +11 -9
  216. data/lib/new_relic/agent/transaction/tracing.rb +1 -1
  217. data/lib/new_relic/agent/transaction/transaction_sample_buffer.rb +1 -1
  218. data/lib/new_relic/agent/transaction.rb +104 -84
  219. data/lib/new_relic/agent/transaction_error_primitive.rb +11 -16
  220. data/lib/new_relic/agent/transaction_event_aggregator.rb +1 -1
  221. data/lib/new_relic/agent/transaction_event_primitive.rb +29 -40
  222. data/lib/new_relic/agent/transaction_event_recorder.rb +4 -4
  223. data/lib/new_relic/agent/transaction_metrics.rb +1 -1
  224. data/lib/new_relic/agent/transaction_sampler.rb +2 -6
  225. data/lib/new_relic/agent/transaction_time_aggregator.rb +1 -1
  226. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  227. data/lib/new_relic/agent/utilization/azure.rb +1 -1
  228. data/lib/new_relic/agent/utilization/gcp.rb +1 -1
  229. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  230. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  231. data/lib/new_relic/agent/utilization_data.rb +1 -1
  232. data/lib/new_relic/agent/vm/jruby_vm.rb +1 -1
  233. data/lib/new_relic/agent/vm/monotonic_gc_profiler.rb +1 -1
  234. data/lib/new_relic/agent/vm/mri_vm.rb +7 -5
  235. data/lib/new_relic/agent/vm/snapshot.rb +1 -1
  236. data/lib/new_relic/agent/vm.rb +1 -1
  237. data/lib/new_relic/agent/worker_loop.rb +1 -1
  238. data/lib/new_relic/agent.rb +98 -8
  239. data/lib/new_relic/cli/command.rb +1 -1
  240. data/lib/new_relic/cli/commands/deployments.rb +2 -3
  241. data/lib/new_relic/cli/commands/install.rb +4 -3
  242. data/lib/new_relic/coerce.rb +32 -7
  243. data/lib/new_relic/collection_helper.rb +1 -1
  244. data/lib/new_relic/constants.rb +42 -0
  245. data/lib/new_relic/control/class_methods.rb +8 -2
  246. data/lib/new_relic/control/frameworks/external.rb +1 -1
  247. data/lib/new_relic/control/frameworks/merb.rb +1 -1
  248. data/lib/new_relic/control/frameworks/rails.rb +1 -1
  249. data/lib/new_relic/control/frameworks/rails3.rb +1 -1
  250. data/lib/new_relic/control/frameworks/rails4.rb +1 -1
  251. data/lib/new_relic/control/frameworks/{rails5.rb → rails_notifications.rb} +2 -2
  252. data/lib/new_relic/control/frameworks/ruby.rb +1 -1
  253. data/lib/new_relic/control/frameworks/sinatra.rb +1 -1
  254. data/lib/new_relic/control/frameworks.rb +1 -1
  255. data/lib/new_relic/control/instance_methods.rb +11 -2
  256. data/lib/new_relic/control/instrumentation.rb +1 -1
  257. data/lib/new_relic/control/server_methods.rb +1 -1
  258. data/lib/new_relic/control.rb +1 -1
  259. data/lib/new_relic/delayed_job_injection.rb +1 -1
  260. data/lib/new_relic/dependency_detection.rb +9 -5
  261. data/lib/new_relic/environment_report.rb +2 -4
  262. data/lib/new_relic/helper.rb +1 -1
  263. data/lib/new_relic/language_support.rb +1 -1
  264. data/lib/new_relic/latest_changes.rb +2 -2
  265. data/lib/new_relic/local_environment.rb +1 -1
  266. data/lib/new_relic/metric_data.rb +1 -1
  267. data/lib/new_relic/metric_spec.rb +1 -1
  268. data/lib/new_relic/noticed_error.rb +39 -18
  269. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  270. data/lib/new_relic/rack/agent_middleware.rb +1 -1
  271. data/lib/new_relic/rack/browser_monitoring.rb +16 -9
  272. data/lib/new_relic/rack.rb +1 -1
  273. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  274. data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
  275. data/lib/new_relic/recipes.rb +1 -1
  276. data/lib/new_relic/supportability_helper.rb +17 -1
  277. data/lib/new_relic/version.rb +2 -2
  278. data/lib/newrelic_rpm.rb +1 -1
  279. data/lib/sequel/extensions/newrelic_instrumentation.rb +1 -1
  280. data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -1
  281. data/lib/tasks/all.rb +1 -1
  282. data/lib/tasks/config.rake +1 -2
  283. data/lib/tasks/multiverse.rb +35 -1
  284. data/lib/tasks/newrelic.rb +1 -1
  285. data/lib/tasks/tests.rake +6 -1
  286. data/newrelic_rpm.gemspec +22 -10
  287. data/recipes/newrelic.rb +1 -1
  288. data/test/agent_helper.rb +356 -76
  289. metadata +116 -52
  290. data/.travis.yml +0 -153
  291. data/lib/new_relic/agent/commands/xray_session.rb +0 -55
  292. data/lib/new_relic/agent/commands/xray_session_collection.rb +0 -161
  293. data/lib/new_relic/agent/cross_app_monitor.rb +0 -110
  294. data/lib/new_relic/agent/distributed_trace_monitor.rb +0 -40
  295. data/lib/new_relic/agent/http_clients/abstract_request.rb +0 -31
  296. data/lib/new_relic/agent/instrumentation/active_record_4.rb +0 -42
  297. data/lib/new_relic/agent/instrumentation/active_record_5.rb +0 -41
  298. data/lib/new_relic/agent/instrumentation/evented_subscriber.rb +0 -104
  299. data/lib/new_relic/agent/instrumentation/rails4/action_controller.rb +0 -32
  300. data/lib/new_relic/agent/instrumentation/rails4/action_view.rb +0 -27
  301. data/lib/new_relic/agent/transaction/attributes.rb +0 -154
  302. data/lib/new_relic/agent/transaction/xray_sample_buffer.rb +0 -64
  303. data/lib/new_relic/build.rb +0 -2
  304. data/lib/new_relic/control/frameworks/rails6.rb +0 -14
  305. data/lib/new_relic/metrics.rb +0 -13
  306. data/lib/tasks/versions.html.erb +0 -28
  307. data/lib/tasks/versions.postface.html +0 -8
  308. data/lib/tasks/versions.preface.html +0 -9
  309. data/lib/tasks/versions.rake +0 -65
  310. data/lib/tasks/versions.txt.erb +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 61ee707dd3738565b01b05857ed9ae7de00a6ab3e9cc0522ba5d651819c24634
4
- data.tar.gz: e8b630ad8f1c69a51dae797a046f90bd8d87683dcc4a2fb97f2960dcf6f90b4b
3
+ metadata.gz: 59fdb006789ae2f1cb776c15084ad1bc7f854abf000573fd11dd2c14882b4273
4
+ data.tar.gz: 7b8d00cdaa547832fb34c1f76a697b694ff28c9a74be046545e7d3b0866d97e6
5
5
  SHA512:
6
- metadata.gz: 9ee286b42523ceca71287a9463a6e6a66e825f27956fd460c72aacb640780a20db0e5c688951f2d0a4bb648a4d8bd5dad98220d1f5a98e9abcc51843bd71aa1e
7
- data.tar.gz: 1a5070f668fd0b4f802ee71fe3909c123d0b38a53a1491ec07a496177cf9f392015c95ae62284b086a4fd27952fa0e62a7d720813de09449f5b4b8b8c4331a5e
6
+ metadata.gz: 5cadb8ca1d02feadc30a85871d1e8cd6c24064bfc3b1bed98680573bb4c29075e07447f4290dfc360d9607c1ff3a5433d0c36be9eaeae515c725547424ee92cc
7
+ data.tar.gz: c3901a54a577cdab2159ee6a93bf4bd6acf82d6629d4d4ba99c4565d7155efc7d653387f9fcee8cd246d19cecfe662b60bd63f05cbf19d38194e0b6d9d6ce0b9
data/.gitignore CHANGED
@@ -1,4 +1,6 @@
1
+ .ruby-version
1
2
  Gemfile.lock
3
+ Guard*
2
4
  .DS\_Store
3
5
  .svn/
4
6
  *~
@@ -27,3 +29,9 @@ lib/new_relic/build.rb
27
29
  artifacts/
28
30
  test/performance/log/
29
31
  test/performance/script/log/
32
+ infinite_tracing/log/
33
+ infinite_tracing/test/new_relic/infinite_tracing/log
34
+ test/fixtures/cross_agent_tests/*/README.md
35
+ node_modules/
36
+ yarn.lock
37
+ errors.txt
data/CHANGELOG.md CHANGED
@@ -1,19 +1,659 @@
1
1
  # New Relic Ruby Agent Release Notes #
2
2
 
3
+ ## v6.15.0
4
+
5
+ * **Official Ruby 3.0 support**
6
+
7
+ The ruby agent has been verified to run on ruby 3.0.0
8
+
9
+ * **Added support for Rails 6.1**
10
+
11
+ The ruby agent has been verified to run with Rails 6.1
12
+ Special thanks to @hasghari for setting this up!
13
+
14
+ * **Added support for Sidekiq 6.0, 6.1**
15
+
16
+ The ruby agent has been verified to run with both 6.0 and 6.1 versions of sidekiq
17
+
18
+ * **Bugfix: No longer overwrites sidekiq trace data**
19
+
20
+ Distributed traing data is now added to the job trace info rather than overwriting the existing data.
21
+
22
+ * **Bugfix: Fixes cases where errors are reported for spans with no other attributes**
23
+
24
+ Previously, in cases where a span does not have any agent/custom attributes on it, but an error
25
+ is noticed and recorded against the span, a `FrozenError: can't modify frozen Hash` is thrown.
26
+ This is now fixed and errors are now correctly recorded against such span events.
27
+
28
+ * **Bugfix: `DistributedTracing.insert_distributed_trace_headers` Supportability metric now recorded**
29
+
30
+ Previously, API calls to `DistributedTracing.insert_distributed_trace_headers` would lead to an exception
31
+ about the missing supportability metric rather than flowing through the API implementation as intended.
32
+ This would potentially lead to broken distributed traces as the trace headers were not inserted on the API call.
33
+ `DistributedTracing.insert_distributed_trace_headers` now correctly records the supportability metric and
34
+ inserts the distributed trace headers as intended.
35
+
36
+ * **Bugfix: child completions after parent completes sometimes throws exception attempting to access nil parent**
37
+
38
+ In scenarios where the child segment/span is completing after the parent in jRuby, the parent may have already
39
+ been freed and no longer accessible. This would lead to attempting to calll `descendant_complete` on a Nil
40
+ object. This is fixed to protect against calling the `descendant_complete` in such cases.
41
+
42
+ * **Feature: implements `force_install_exit_handler` config flag**
43
+
44
+ The `force_install_exit_handler` configuration flag allows an application to instruct the agent to install it's
45
+ graceful shutdown exit handler, which will send any locally cached data to the New Relic collector prior to the
46
+ application shutting down. This useful for when the primary framework has an embedded Sinatra application that
47
+ is otherwise detected and skips installing the exit hook for graceful shutdowns.
48
+
49
+ * **Default prepend_net_instrumentation to false**
50
+
51
+ Previously, `prepend_net_instrumentation` defaulted to true. However, many gems are still using monkey patching on Net::HTTP, which causes compatibility issues with using prepend. Defaulting this to false minimizes instances of
52
+ unexpected compatibilty issues.
53
+
54
+ ## v6.14.0
55
+
56
+ * **Bugfix: Method tracers no longer cloning arguments**
57
+
58
+ Previously, when calling add_method_tracer with certain combination of arguments, it would lead to the wrapped method's arguments being cloned rather than passed to the original method for manipulation as intended. This has been fixed.
59
+
60
+ * **Bugfix: Delayed Job instrumentation fixed for Ruby 2.7+**
61
+
62
+ Previously, the agent was erroneousy separating positional and keyword arguments on the instrumented method calls into
63
+ Delayed Job's library. The led to Delayed job not auto-instrumenting correctly and has been fixed.
64
+
65
+ * **Bugfix: Ruby 2.7+ methods sometimes erroneously attributed compiler warnings to the Agent's `add_method_tracer`**
66
+
67
+ The specific edge cases presented are now fixed by this release of the agent. There are still some known corner-cases
68
+ that will be resolved with upcoming changes in next major release of the Agent. If you encounter a problem with adding
69
+ method tracers and compiler warnings raised, please continue to submit small repoducible examples.
70
+
71
+ * **Bugfix: Ruby 2.7+ fix for keyword arguments on Rack apps is unnecessary and removed**
72
+
73
+ A common fix for positional and keyword arguments for method parameters was implemented where it was not needed and
74
+ led to RackApps getting extra arguments converted to keyword arguments rather than Hash when it expected one. This
75
+ Ruby 2.7+ change was reverted so that Rack apps behave correctly for Ruby >= 2.7.
76
+
77
+ * **Feature: captures incoming and outgoing request headers for distributed tracing**
78
+
79
+ HTTP request headers will be logged when log level is at least debug level. Similarly, request headers
80
+ for exchanges with New Relic servers are now audit logged when audit logging is enabled.
81
+
82
+ * **Bugfix: `newrelic.yml.erb` added to the configuration search path**
83
+
84
+ Previously, when a user specifies a `newrelic.yml.erb` and no `newrelic.yml` file, the agent fails to find
85
+ the `.erb` file because it was not in the list of files searched at startup. The Ruby agent has long supported this as a
86
+ means of configuring the agent programatically. The `newrelic.yml.erb` filename is restored to the search
87
+ path and will be utilized if present. NOTE: `newrelic.yml` still takes precedence over `newrelic.yml.erb` If found,
88
+ the `.yml` file is used instead of the `.erb` file. Search directories and order of traversal remain unchanged.
89
+
90
+ * **Bugfix: dependency detection of Redis now works without raising an exception**
91
+
92
+ Previously, when detecting if Redis was available to instrument, the dependency detection would fail with an Exception raised
93
+ (with side effect of not attempting to instrument Redis). This is now fixed with a better dependency check that resolves falsly without raising an `Exception`.
94
+
95
+ * **Bugfix: Gracefully handles NilClass as a Middleware Class when instrumenting**
96
+
97
+ Previously, if a NilClass is passed as the Middleware Class to instrument when processing the middleware stack,
98
+ the agent would fail to fully load and instrument the middleware stack. This fix gracefully skips over nil classes.
99
+
100
+ * **Memory Sampler updated to recognize macOS Big Sur**
101
+
102
+ Previously, the agent was unable to recognize the platform macOS Big Sur in the memory sampler, resulting in an error being logged. The memory sampler is now able to recognize Big Sur.
103
+
104
+ * **Prepend implementation of Net::HTTP instrumentation available**
105
+
106
+ There is now a config option (`prepend_net_instrumentation`) that will enable the agent to use prepend while instrumenting Net::HTTP. This option is set to true by default.
107
+
108
+ ## v6.13.1
109
+
110
+ * **Bugfix: obfuscating URLs to external services no longer modifying original URI**
111
+
112
+ A recent change to the Ruby agent to obfuscate URIs sent to external services had the unintended side-effect of removing query parameters
113
+ from the original URI. This is fixed to obfuscate while also preserving the original URI.
114
+
115
+ Thanks to @VictorJimenezKwast for pinpointing and helpful unit test to demonstrate.
116
+
117
+ ## v6.13.0
118
+
119
+ * **Bugfix: never use redirect host when accessing preconnect endpoint**
120
+
121
+ When connecting to New Relic, the Ruby Agent uses the value in `Agent.config[:host]` to post a request to the New Relic preconnect endpoint. This endpoint returns a "redirect host" which is the URL to which agents send data from that point on.
122
+
123
+ Previously, if the agent needed to reconnect to the collector, it would incorrectly use this redirect host to call the preconnect
124
+ endpoint, when it should have used the original configured value in `Agent.config[:host]`. The agent now uses the correct host
125
+ for all calls to preconnect.
126
+
127
+ * **Bugfix: calling `add_custom_attributes` no longer modifies the params of the caller**
128
+
129
+ The previous agent's improvements to recording attributes at the span level had an unexpected
130
+ side-effect of modifying the params passed to the API call as duplicated attributes were deleted
131
+ in the process. This is now fixed and params passed in are no longer modified.
132
+
133
+ Thanks to Pete Johns (@johnsyweb) for the PR that resolves this bug.
134
+
135
+ * **Bugfix: `http.url` query parameters spans are now obfuscated**
136
+
137
+ Previously, the agent was recording the full URL of the external requests, including
138
+ the query and fragment parts of the URL as part of the attributes on the external request
139
+ span. This has been fixed so that the URL is obfuscated to filter out potentially sensitive data.
140
+
141
+ * **Use system SSL certificates by default**
142
+
143
+ The Ruby agent previously used a root SSL/TLS certificate bundle by default. Now the agent will attempt to use
144
+ the default system certificates, but will fall back to the bundled certs if there is an issue (and log that this occurred).
145
+
146
+ * **Bugfix: reduce allocations for segment attributes**
147
+
148
+ Previously, every segment received an `Attributes` object on initialization. The agent now lazily creates attributes
149
+ on segments, resulting in a significant reduction in object allocations for a typical transaction.
150
+
151
+ * **Bugfix: eliminate errors around Rake::VERSION with Rails**
152
+
153
+ When running a Rails application with rake tasks, customers could see the following error:
154
+
155
+ * **Prevent connecting agent thread from hanging on shutdown**
156
+
157
+ A bug in `Net::HTTP`'s Gzip decoder can cause the (un-catchable)
158
+ thread-kill exception to be replaced with a (catchable) `Zlib` exception,
159
+ which prevents a connecting agent thread from exiting during shutdown,
160
+ causing the Ruby process to hang indefinitely.
161
+ This workaround checks for an `aborting` thread in the `#connect` exception handler
162
+ and re-raises the exception, allowing a killed thread to continue exiting.
163
+
164
+ Thanks to Will Jordan (@wjordan) for chasing this one down and patching with tests.
165
+
166
+ * **Fix error messages about Rake instrumentation**
167
+
168
+ When running a Rails application with rake tasks, customers could see the following error in logs resulting from
169
+ a small part of rake functionality being loaded with the Rails test runner:
170
+
171
+ ```
172
+ ERROR : Error while detecting rake_instrumentation:
173
+ ERROR : NameError: uninitialized constant Rake::VERSION
174
+ ```
175
+
176
+ Such error messages should no longer appear in this context.
177
+
178
+ Thanks to @CamilleDrapier for pointing out this issue.
179
+
180
+ * **Remove NewRelic::Metrics**
181
+
182
+ The `NewRelic::Metrics` module has been removed from the agent since it is no longer used.
183
+
184
+ Thanks to @csaura for the contribution!
185
+
186
+ ## v6.12.0
187
+
188
+ * The New Relic Ruby Agent is now open source under the [Apache 2 license](LICENSE)
189
+ and you can now observe the project roadmap. See our [Contributing guide](https://github.com/newrelic/newrelic-ruby-agent/blob/main/CONTRIBUTING.md)
190
+ and [Code of Conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md) for details on contributing!
191
+
192
+ * **Security: Updated all uses of Rake to >= 12.3.3**
193
+
194
+ All versions of Rake testing prior to 12.3.3 were removed to address
195
+ [CVE-2020-8130](https://nvd.nist.gov/vuln/detail/CVE-2020-8130).
196
+ No functionality in the agent was removed nor deprecated with this change, and older versions
197
+ of rake are expected to continue to work as they have in the past. However, versions of
198
+ rake < 12.3.3 are no longer tested nor supported.
199
+
200
+ * **Bugfix: fixes an error capturing content length in middleware on multi-part responses**
201
+
202
+ In the middleware tracing, the `Content-Length` header is sometimes returned as an array of
203
+ values when content is a multi-part response. Previously, the agent would fail with
204
+ "NoMethodError: undefined method `to_i` for Array" Error. This bug is now fixed and
205
+ multi-part content lengths are summed for a total when an `Array` is present.
206
+
207
+ * **Added support for auto-instrumenting Mongo gem versions 2.6 to 2.12**
208
+
209
+ * **Bugfix: MongoDB instrumentation did not handle CommandFailed events when noticing errors**
210
+
211
+ The mongo gem sometimes returns a CommandFailed object instead of a CommandSucceeded object with
212
+ error attributes populated. The instrumentation did not handle noticing errors on CommandFailed
213
+ objects and resulted in logging an error and backtrace to the log file.
214
+
215
+ Additionally, a bug in recording the metric for "findAndModify" as all lowercased "findandmodify"
216
+ for versions 2.1 through 2.5 was fixed.
217
+
218
+ * **Bugfix: Priority Sampler causes crash in high throughput environents in rare cases**
219
+
220
+ Previously, the priority sampling buffer would, in rare cases, generate an error in high-throughput
221
+ environments once capacity is reached and the sampling algorthym engages. This issue is fixed.
222
+
223
+ * **Additional Transaction Information applied to Span Events**
224
+
225
+ When Distributed Tracing and/or Infinite Tracing are enabled, the Agent will now incorporate additional information from the Transaction Event on to the root Span Event of the transaction.
226
+
227
+ The following items are affected:
228
+ * Custom attribute values applied to the Transaction via our [add_custom_attributes](http://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent#add_custom_attributes-instance_method) API method.
229
+ * Request parameters: `request.parameters.*`
230
+ * Request headers: `request.headers.*`
231
+ * Response headers: `response.headers.*`
232
+ * Resque job arguments: `job.resque.args.*`
233
+ * Sidekiq job arguments: `job.sidekiq.args.*`
234
+ * Messaging arguments: `message.*`
235
+ * `httpResponseCode` (deprecated in this version; see note below)/`http.statusCode`
236
+ * `response.status`
237
+ * `request.uri`
238
+ * `request.method`
239
+ * `host.displayName`
240
+
241
+ * **Security Recommendation**
242
+
243
+ Review your Transaction attributes [include](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#transaction_events-attributes-include) and [exclude](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#transaction_events-attributes-exclude) configurations. Any attribute include or exclude settings specific to Transaction Events should be applied
244
+ to your Span attributes [include](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#span-events-attributes-include) and [exclude](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#span-events-attributes-exclude) configuration or your global attributes [include](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#attributes-include) and [exclude](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/enable-disable-attributes-ruby#attributes-exclude) configuration.
245
+
246
+ * **Agent attribute deprecation: httpResponseCode**
247
+
248
+ Starting in this agent version, the [agent attribute](https://docs.newrelic.com/docs/agents/ruby-agent/attributes/ruby-agent-attributes#attributes) `httpResponseCode` (string value) has been deprecated. Customers can begin using `http.statusCode`
249
+ (integer value) immediately, and `httpResponseCode` will be removed in the agent's next major version update.
250
+
251
+ * **Bugfix: Eliminate warnings for distributed tracing when using sidekiq**
252
+
253
+ Previously, using sidekiq with distributed tracing disabled resulted in warning messages\
254
+ `WARN : Not configured to accept distributed trace headers`\
255
+ ` WARN : Not configured to insert distributed trace headers`\
256
+ These messages no longer appear.
257
+
258
+ ## v6.11.0
259
+
260
+ * **Infinite Tracing**
261
+
262
+ This release adds support for [Infinite Tracing](https://docs.newrelic.com/docs/understand-dependencies/distributed-tracing/enable-configure/enable-distributed-tracing). Infinite Tracing observes 100% of your distributed traces and provides visualizations for the most actionable data. With Infinite Tracing, you get examples of errors and long-running traces so you can better diagnose and troubleshoot your systems.
263
+
264
+ Configure your agent to send traces to a trace observer in New Relic Edge. View distributed traces through New Relic’s UI. There is no need to install a collector on your network.
265
+
266
+ Infinite Tracing is currently available on a sign-up basis. If you would like to participate, please contact your sales representative.
267
+
268
+ * **Bugfix: Cross Application Tracing (CAT) adds a missing field to response**
269
+
270
+ Previously, the Ruby agent's Cross Application Tracing header was missing a reserved field that would lead to an error
271
+ in the Go agent's processing of incoming headers from the Ruby agent. This fix adds that missing field to the headers, eliminating
272
+ the issue with traces involving the Ruby agent and the Go agent.
273
+
274
+ * **Bugfix: Environment Report now supports Rails >= 6.1**
275
+
276
+ Previously, users of Rails 6.1 would see the following deprecation warning appear when the Ruby agent attempted to
277
+ collect enviroment data: `DEPRECATION WARNING: [] is deprecated and will be removed from Rails 6.2`. These deprecation methods
278
+ no longer appear.
279
+
280
+ Thanks to Sébastien Dubois (sedubois) for reporting this issue and for the contribution!
281
+
282
+ * **Added distributed tracing to Sidekiq jobs**
283
+
284
+ Previously, Sidekiq jobs were not included in portions of <a href="https://docs.newrelic.com/docs/understand-dependencies/distributed-tracing/get-started/introduction-distributed-tracing">distributed traces</a> captured by the Ruby agent. Now you can view distributed
285
+ traces that include Sidekiq jobs instrumented by the Ruby agent.
286
+
287
+ Thanks to andreaseger for the contribution!
288
+
289
+ * **Bugfix: Eliminate warnings appearing when using `add_method_tracer` with Ruby 2.7**
290
+
291
+ Previously, using `add_method_tracer` with Ruby 2.7 to trace a method that included keyword arguments resulted in warning messages:
292
+ `warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call`. These messages no
293
+ longer appear.
294
+
295
+ Thanks to Harm de Wit and Atsuo Fukaya for reporting the issue!
296
+
297
+ ## v6.10.0
298
+
299
+ * **Error attributes now added to each span that exits with an error or exception**
300
+
301
+ Error attributes `error.class` and `error.message` are now included on the span event in which an error
302
+ or exception was noticed, and, in the case of unhandled exceptions, on any ancestor spans that also exit with an error.
303
+ The public API method `notice_error` now attaches these error attributes to the currently executing span.
304
+
305
+ <a href="https://docs.newrelic.com/docs/apm/distributed-tracing/ui-data/understand-use-distributed-tracing-data#rules-limits">Spans with error details are now highlighted red in the Distributed Tracing UI</a>, and error details will expose the associated
306
+ `error.class` and `error.message`. It is also now possible to see when an exception leaves the boundary of the span,
307
+ and if it is caught in an ancestor span without reaching the entry span. NOTE: This “bubbling up” of exceptions will impact
308
+ the error count when compared to prior behavior for the same trace. It is possible to have a trace that now has span errors
309
+ without the trace level showing an error.
310
+
311
+ If multiple errors occur on the same span, only the most recent error information is added to the attributes. Prior errors on the same span are overwritten.
312
+
313
+ These span event attributes conform to <a href="https://docs.newrelic.com/docs/agents/manage-apm-agents/agent-data/manage-errors-apm-collect-ignore-or-mark-expected#ignore">ignored errors</a> and <a href="https://docs.newrelic.com/docs/agents/manage-apm-agents/agent-data/manage-errors-apm-collect-ignore-or-mark-expected#expected">expected errors</a>.
314
+
315
+ * **Added tests for latest Grape / Rack combination**
316
+
317
+ For a short period of time, the latest versions of Grape and Rack had compatibility issues.
318
+ Generally, Rack 2.1.0 should be avoided in all cases due to breaking changes in many gems
319
+ reliant on Rack. We recommend using either Rack <= 2.0.9, or using latest Rack when using Grape
320
+ (2.2.2 at the time of this writing).
321
+
322
+ * **Bugfix: Calculate Content-Length in bytes**
323
+
324
+ Previously, the Content-Length HTTP header would be incorrect after injecting the Browser Monitoring
325
+ JS when the response contained Unicode characters because the value was not calculated in bytes.
326
+ The Content-Length is now correctly updated.
327
+
328
+ Thanks to thaim for the contribution!
329
+
330
+ * **Bugfix: Fix Content-Length calculation when response is nil**
331
+
332
+ Previously, calculating the Content-Length HTTP header would result in a `NoMethodError` in the case of
333
+ a nil response. These errors will no longer occur in such a case.
334
+
335
+ Thanks to Johan Van Ryseghem for the contribution!
336
+
337
+ * **Bugfix: DecoratingFormatter now logs timestamps as millisecond Integers**
338
+
339
+ Previously the agent sent timestamps as a Float with milliseconds as part of the
340
+ fractional value. Logs in Context was changed to only accept Integer values and this
341
+ release changes DecoratingFormatter to match.
342
+
343
+ * **Added --force option to `newrelic install` cli command to allow overwriting newrelic.yml**
344
+
345
+ * **Bugfix: The fully qualified hostname now works correctly for BSD and Solaris**
346
+
347
+ Previously, when running on systems such as BSD and Solaris, the agent was unable to determine the fully
348
+ qualified domain name, which is used to help link Ruby agent data with data from New Relic Infrastructure.
349
+ This information is now successfully collected on various BSD distros and Solaris.
350
+
351
+
352
+ ## v6.9.0
353
+
354
+ * **Added support for W3C Trace Context, with easy upgrade from New Relic trace context**
355
+
356
+ * [Distributed Tracing now supports W3C Trace Context headers](https://docs.newrelic.com/docs/understand-dependencies/distributed-tracing/get-started/introduction-distributed-tracing#w3c-support) for HTTP protocols when distributed tracing is enabled. Our implementation can accept and emit both
357
+ the W3C trace header format and the New Relic trace header format. This simplifies
358
+ agent upgrades, allowing trace context to be propagated between services with older
359
+ and newer releases of New Relic agents. W3C trace header format will always be
360
+ accepted and emitted. New Relic trace header format will be accepted, and you can
361
+ optionally disable emission of the New Relic trace header format.
362
+
363
+ * When distributed tracing is enabled by setting `distributed_tracing.enabled` to `true`,
364
+ the Ruby agent will now accept W3C's `traceparent` and `tracestate` headers when
365
+ calling `DistributedTracing.accept_distributed_trace_headers` or automatically via
366
+ `http` instrumentation. When calling `DistributedTracing.insert_distributed_trace_headers`,
367
+ or automatically via `http` instrumentation, the Ruby agent will include the W3C
368
+ headers along with the New Relic distributed tracing header, unless the New Relic
369
+ trace header format is disabled by setting `exclude_newrelic_header` setting to `true`.
370
+
371
+ * Added `DistributedTracing.accept_distributed_trace_headers` API for accepting both
372
+ New Relic and W3C TraceContext distributed traces.
373
+
374
+ * Deprecated `DistributedTracing.accept_distributed_trace_payload` which will be removed
375
+ in a future major release.
376
+
377
+ * Added `DistributedTracing.insert_distributed_trace_headers` API for adding outbound
378
+ distributed trace headers. Both W3C TraceContext and New Relic formats will be
379
+ included unless `distributed_tracing.exclude_newrelic_header: true`.
380
+
381
+ * Deprecated `DistributedTracing.create_distributed_trace_payload` which will be removed
382
+ in a future major release.
383
+
384
+ Known Issues and Workarounds
385
+
386
+ * If a .NET agent is initiating traces as the root service, do not upgrade your
387
+ downstream Ruby New Relic agents to this agent release.
388
+
389
+ * **Official Ruby 2.7 support**
390
+
391
+ The Ruby agent has been verified to run with Ruby 2.7.0.
392
+
393
+ * **Reduced allocations when tracing transactions using API calls**
394
+
395
+ Default empty hashes for `options` parameter were not frozen, leading to
396
+ excessive and unnecessary allocations when calling APIs for tracing transactions.
397
+
398
+ Thanks to Joel Turkel (jturkel) for the contribution!
399
+
400
+ * **Bugfix for Resque worker thread race conditions**
401
+
402
+ Recent changes in Rack surfaced issues marshalling data for resque, surfaced a potential race-condition with closing out the worker-threads before flushing the data pipe. This
403
+ is now fixed.
404
+
405
+ Thanks to Bertrand Paquet (bpaquet) for the contribution!
406
+
407
+ * **Bugfix for Content-Length when injecting Browser Monitoring JS**
408
+
409
+ The Content-Length HTTP header would be incorrect after injecting the Browser Monitoring
410
+ JS into the HEAD tag of the HTML source with Content-Length and lead to the HTML BODY content
411
+ being truncated in some cases. The Content-Length is now correctly updated after injecting the
412
+ Browser Monitoring JS script.
413
+
414
+ Thanks to Slava Kardakov (ojab) for the contribution!
415
+
416
+ ## v6.8.0
417
+
418
+ * **Initial Ruby 2.7 support**
419
+
420
+ The Ruby agent has been verified to run with Ruby 2.7.0-preview1.
421
+
422
+ * **New API method to add custom attributes to Spans**
423
+
424
+ New API method for adding custom attributes to spans. Previously, custom
425
+ attributes were only available at the Transaction level. Now, with Span
426
+ level custom attributes, more granular tagging of events is possible for
427
+ easier isolation and review of trace events. For more information:
428
+
429
+ * [`Agent#add_custom_span_attributes`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent#add_custom_span_attributes)
430
+
431
+ * **Enables ability to migrate to Configurable Security Policies (CSP) on a per agent
432
+ basis for accounts already using High Security Mode (HSM).**
433
+
434
+ When both [HSM](https://docs.newrelic.com/docs/agents/manage-apm-agents/configuration/high-security-mode) and [CSP](https://docs.newrelic.com/docs/agents/manage-apm-agents/configuration/enable-configurable-security-policies) are enabled for an account, an agent (this version or later)
435
+ can successfully connect with either `high_security: true` or the appropriate
436
+ `security_policies_token` configured. `high_security` has been added as part of
437
+ the preconnect payload.
438
+
439
+ * **Bugfix for Logs in Context combined with act-fluent-logger-rails**
440
+
441
+ Previously, when using the Ruby agent's Logs in Context logger
442
+ to link logging data with trace and entity metadata for an
443
+ improved experience in the UI, customers who were also using
444
+ the `act-fluent-logger-rails` gem would see a `NoMethodError`
445
+ for `clear_tags!` that would interfere with the use of this
446
+ feature. This error no longer appears, allowing customers to
447
+ combine the use of Logs in Context with the use of this gem.
448
+
449
+ Please note that the Logs in Context logger does not support
450
+ tagged logging; if you are initializing your logger with a
451
+ `log_tags` argument, your custom tags may not appear on the
452
+ final version of your logs.
453
+
454
+ * **Bugfix for parsing invalid newrelic.yml**
455
+
456
+ Previously, if the newrelic.yml configuration file was invalid, and the agent
457
+ could not start as a result, the agent would not log any indication of
458
+ the problem.
459
+
460
+ This version of the agent will emit a FATAL message to STDOUT when this scenario
461
+ occurs so that customers can address issues with newrelic.yml that prevent startup.
462
+
463
+ * **Configuration options containing the terms "whitelist" and "blacklist" deprecated**
464
+
465
+ The following local configuration settings have been deprecated:
466
+
467
+ * `autostart.blacklisted_constants`: use `autostart.denylisted_constants` instead.
468
+ * `autostart.blacklisted_executables`: use `autostart.denylisted_executables` instead.
469
+ * `autostart.blacklisted_rake_tasks`: use `autostart.denylisted_rake_tasks` instead.
470
+ * `strip_exception_messages.whitelist`: use `strip_exception_messages.allowed_classes` instead.
471
+
472
+ * **Bugfix for module loading and constant resolution in Rails**
473
+
474
+ Starting in version 6.3, the Ruby agent has caused module loading and constant
475
+ resolution to sometimes fail, which caused errors in some Rails applications.
476
+ These errors were generally `NoMethodError` exceptions or I18n errors
477
+ `translation missing` or `invalid locale`. These errors would not appear if the agent
478
+ was removed from the application's Gemfile.
479
+ This version of the agent fixes these issues with module loading and constant
480
+ resolution, so these errors no longer occur.
481
+
482
+ * **Bugfix: failed to get urandom**
483
+
484
+ Previous versions of the agent would fail unexpectedly when the Ruby process used
485
+ every available file descriptor. The failures would include this message:
486
+ ```
487
+ ERROR : RuntimeError: failed to get urandom
488
+ ```
489
+ This version of the agent uses a different strategy for generating random IDs, and
490
+ will not fail in the same way when no file descriptors are available.
491
+
492
+ ## v6.7.0
493
+
494
+ * **Trace and Entity Metadata API**
495
+
496
+ Several new API methods have been added to the agent:
497
+ * [`Agent#linking_metadata`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent#linking_metadata-instance_method)
498
+ * [`Tracer#trace_id`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent/Tracer#trace_id-class_method)
499
+ * [`Tracer#span_id`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent/Tracer#span_id-class_method)
500
+ * [`Tracer#sampled?`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent/Tracer#sampled?-class_method)
501
+
502
+ These API methods allow you to access information that can be used to link data of your choosing to a trace or entity.
503
+
504
+ * **Logs in Context**
505
+
506
+ This version of the agent includes a logger, which can be used in place of `::Logger`
507
+ from the standard library, or `ActiveSupport::Logger` from Rails. This logger
508
+ leverages the new trace and entity metadata API to decorate log statements with entity
509
+ and trace metadata, so they can be correlated together in the New Relic UI.
510
+
511
+ For more information on how to use logs in context, see https://docs.newrelic.com/docs/enable-logs-context-ruby
512
+
513
+ * **Project metadata in Gemspec**
514
+
515
+ Project metadata has been added to the gemspec file. This means our Rubygems page will allow users to more easily
516
+ access the agent's source code, raise issues, and read the changelog.
517
+
518
+ Thanks to Orien Madgwick for the contribution!
519
+
520
+ ## v6.6.0
521
+
522
+ * **Bugfix for ActionCable Instrumentation**
523
+
524
+ Previous versions of the agent sometimes caused application crashes with some versions
525
+ of ActionCable. The application would exit quickly after startup with the error:
526
+ `uninitialized constant ActionCable::Engine`.
527
+
528
+ Version 6.6.0 of the agent no longer crashes in this way.
529
+
530
+
531
+ * **Handling of disabling Error Collection**
532
+
533
+ When the agent first starts, it begins collecting Error Events and Traces before
534
+ fetching configuration from New Relic. In previous versions of the agent, those
535
+ events or traces would be sent to New Relic, even if _Error Collection_ is disabled in
536
+ the application's server-side configuration.
537
+
538
+ Version 6.6.0 of the agent drops all collected Error Events and Traces if the
539
+ configuration from the server disables _Error Collection_.
540
+
541
+ ## v6.5.0
542
+
543
+ * **Change to default setting for ActiveRecord connection resolution**
544
+
545
+ Due to incompatibilities between the faster ActiveRecord connection resolution
546
+ released in v6.3.0 of the agent and other gems which patch ActiveRecord,
547
+ `backport_fast_active_record_connection_lookup` will now be set to `false` by default.
548
+ Because it results in a significant performance improvement, we recommend customers
549
+ whose environments include ActiveRecord change this setting to `true`
550
+ _unless_ they are using other gems which measure ActiveRecord performance, which may
551
+ lose functionality when combined with this setting. If unsure whether to enable
552
+ `backport_fast_active_record_connection_lookup`, we recommend enabling it in a
553
+ development environment to make sure other gems which patch ActiveRecord are still
554
+ working as expected.
555
+
556
+ * **Bugfix for ActiveStorage instrumentation error**
557
+
558
+ Version 6.4.0 of the agent introduced a bug that interfered with ActiveStorage
559
+ callbacks, resulting in the agent being unable to instrument ActiveStorage operations.
560
+ ActiveStorage segments are now correctly recorded.
561
+
562
+ * **Bugfix for ActiveRecord 4.1 and 4.2 exception logging**
563
+
564
+ Version 6.3.0 of the agent introduced a bug that prevented ActiveRecord versions 4.1
565
+ and 4.2 from logging exceptions that occurred within a database transaction. This
566
+ version of the agent restores the exception logging functionality from previous agent
567
+ versions.
568
+ Thanks to Oleksiy Kovyrin for the contribution!
569
+
570
+ ## v6.4.0
571
+
572
+ * **Custom Metadata Collection**
573
+
574
+ The agent now collects environment variables prefixed by `NEW_RELIC_METADATA_`. These
575
+ may be added to transaction events to provide context between your Kubernetes cluster
576
+ and your services. For details on the behavior, see
577
+ [this blog post](https://blog.newrelic.com/engineering/monitoring-application-performance-in-kubernetes/).
578
+
579
+ * **Bugfix for faster ActiveRecord connection resolution**
580
+
581
+ Version 6.3.0 of the agent backported the faster ActiveRecord connection resolution
582
+ from Rails 6.0 to previous versions, but the implementation caused certain other gems
583
+ which measured ActiveRecord performance to stop working. This version of the agent
584
+ changes the implementation of this performance improvement so no such conflicts occur.
585
+
586
+ * **Bugfix for Grape instrumentation error**
587
+
588
+ Previous versions of the agent would fail to install Grape instrumentation in Grape
589
+ versions 1.2.0 and up if the API being instrumented subclassed `Grape::API::Instance`
590
+ rather than `Grape::API`. A warning would also print to the newrelic_agent log:
591
+ ```
592
+ WARN : Error in Grape instrumentation
593
+ WARN : NoMethodError: undefined method `name' for nil:NilClass
594
+ ```
595
+
596
+ This version of the agent successfully installs instrumentation for subclasses
597
+ of `Grape::API::Instance`, and these log messages should no longer appear.
598
+
599
+ * **Bugfix for streaming responses**
600
+
601
+ Previous versions of the agent would attempt to insert JavaScript instrumentation into
602
+ any streaming response that did not make use of `ActionController::Live`. This resulted
603
+ in an empty, non-streamed response being sent to the client.
604
+
605
+ This version of the agent will not attempt to insert JavaScript instrumentation into
606
+ a response which includes the header `Transfer-Encoding=chunked`, which indicates a
607
+ streaming response.
608
+
609
+ This should exclude JavaScript instrumentation for all streamed responses. To include
610
+ this instrumentation manually, see
611
+ [Manually instrument via agent API](https://docs.newrelic.com/docs/agents/ruby-agent/features/new-relic-browser-ruby-agent#manual_instrumentation)
612
+ in our documentation.
613
+
614
+ ## v6.3.0
615
+
616
+ * **Official Rails 6.0 support**
617
+
618
+ This version of the agent has been verified against the Rails 6.0.0 release.
619
+
620
+ As ActiveRecord 4, 5, and 6 use the same New Relic instrumentation, the
621
+ `disable_active_record_4` and `disable_active_record_5` settings in NewRelic.yml are being
622
+ deprecated in favor of the new `disable_active_record_notifications`. This new
623
+ setting will affect the instrumentation of ActiveRecord 4, 5, and 6. The deprecated settings
624
+ will be removed in a future release.
625
+
626
+ * **Bugfix for `newrelic deployments` script**
627
+
628
+ For applications housed in the EU, the `newrelic deployments` script included with previous
629
+ versions of the agent would fail with the following message: `Deployment not recorded:
630
+ Application does not exist.` This is because the script would attempt to send the deployment
631
+ notification to the US region. The deployment script now sends deployments to the correct region.
632
+
633
+ * **Faster ActiveRecord connection resolution**
634
+
635
+ This version of the agent uses the faster ActiveRecord connection resolution that Rails 6.0 uses, even on previous versions of Rails.
636
+ Thanks to Callum Jones for the contribution!
637
+
638
+ * **Support non-ascii characters in hostnames**
639
+
640
+ Previous versions of the agent would frequently log warnings like: `log writing failed. "\xE2" from ASCII-8BIT to UTF-8` if the hostname contained a non-ascii character. This version of the agent will no longer log these warnings.
641
+ Thanks to Rafael Petry for the contribution!
642
+
3
643
  ## v6.2.0
4
644
 
5
645
  * Bugfix for superfluous `Empty JSON response` error messages
6
646
 
7
- Version 6.1.0 of the agent frequently logged error messages about an empty
8
- JSON response, when no error had occurred. These logs no longer appear.
647
+ Version 6.1.0 of the agent frequently logged error messages about an empty
648
+ JSON response, when no error had occurred. These logs no longer appear.
9
649
 
10
650
  * Bugfix for `Unable to calculate elapsed transaction time` warning messages
11
651
 
12
- Ruby Agent versions 5.4 through 6.1, when running in jruby without
13
- ObjectSpace enabled, would occasionally log a warning indicating that the
652
+ Ruby Agent versions 5.4 through 6.1, when running in jruby without
653
+ ObjectSpace enabled, would occasionally log a warning indicating that the
14
654
  agent was unable to calculate the elapsed transaction time. When this log
15
- statement appeared, the affected transactions would not be included in the
16
- data displayed on the capacity analysis page. These transactions are now
655
+ statement appeared, the affected transactions would not be included in the
656
+ data displayed on the capacity analysis page. These transactions are now
17
657
  correctly recorded.
18
658
 
19
659
  ## v6.1.0