newrelic_rpm 6.11.0.365 → 6.15.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (287) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -0
  3. data/CHANGELOG.md +260 -5
  4. data/CONTRIBUTING.md +106 -19
  5. data/Gemfile +1 -1
  6. data/LICENSE +208 -38
  7. data/README.md +81 -85
  8. data/ROADMAP.md +24 -0
  9. data/THIRD_PARTY_NOTICES.md +213 -0
  10. data/bin/nrdebug +1 -1
  11. data/init.rb +1 -1
  12. data/install.rb +1 -1
  13. data/lib/new_relic/agent.rb +12 -4
  14. data/lib/new_relic/agent/adaptive_sampler.rb +1 -1
  15. data/lib/new_relic/agent/agent.rb +14 -5
  16. data/lib/new_relic/agent/agent_logger.rb +1 -1
  17. data/lib/new_relic/agent/attribute_filter.rb +1 -1
  18. data/lib/new_relic/agent/attribute_processing.rb +1 -1
  19. data/lib/new_relic/agent/attributes.rb +3 -1
  20. data/lib/new_relic/agent/audit_logger.rb +11 -1
  21. data/lib/new_relic/agent/autostart.rb +1 -1
  22. data/lib/new_relic/agent/chained_call.rb +1 -1
  23. data/lib/new_relic/agent/commands/agent_command.rb +1 -1
  24. data/lib/new_relic/agent/commands/agent_command_router.rb +1 -1
  25. data/lib/new_relic/agent/commands/thread_profiler_session.rb +1 -1
  26. data/lib/new_relic/agent/configuration.rb +1 -1
  27. data/lib/new_relic/agent/configuration/default_source.rb +28 -2
  28. data/lib/new_relic/agent/configuration/dotted_hash.rb +1 -1
  29. data/lib/new_relic/agent/configuration/environment_source.rb +1 -1
  30. data/lib/new_relic/agent/configuration/event_harvest_config.rb +1 -1
  31. data/lib/new_relic/agent/configuration/high_security_source.rb +1 -1
  32. data/lib/new_relic/agent/configuration/manager.rb +1 -1
  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 +1 -1
  37. data/lib/new_relic/agent/configuration/yaml_source.rb +1 -1
  38. data/lib/new_relic/agent/connect/request_builder.rb +1 -1
  39. data/lib/new_relic/agent/connect/response_handler.rb +1 -1
  40. data/lib/new_relic/agent/custom_event_aggregator.rb +1 -1
  41. data/lib/new_relic/agent/database.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 +1 -1
  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_adapter.rb +33 -0
  47. data/lib/new_relic/agent/datastores.rb +1 -1
  48. data/lib/new_relic/agent/datastores/metric_helper.rb +1 -1
  49. data/lib/new_relic/agent/datastores/mongo.rb +1 -1
  50. data/lib/new_relic/agent/datastores/mongo/event_formatter.rb +1 -1
  51. data/lib/new_relic/agent/datastores/mongo/metric_translator.rb +1 -1
  52. data/lib/new_relic/agent/datastores/mongo/obfuscator.rb +1 -1
  53. data/lib/new_relic/agent/datastores/mongo/statement_formatter.rb +1 -1
  54. data/lib/new_relic/agent/datastores/redis.rb +1 -1
  55. data/lib/new_relic/agent/deprecator.rb +1 -1
  56. data/lib/new_relic/agent/distributed_tracing.rb +1 -1
  57. data/lib/new_relic/agent/distributed_tracing/cross_app_payload.rb +1 -1
  58. data/lib/new_relic/agent/distributed_tracing/cross_app_tracing.rb +3 -3
  59. data/lib/new_relic/agent/distributed_tracing/{distributed_trace_intrinsics.rb → distributed_trace_attributes.rb} +9 -5
  60. data/lib/new_relic/agent/distributed_tracing/distributed_trace_metrics.rb +1 -1
  61. data/lib/new_relic/agent/distributed_tracing/distributed_trace_payload.rb +1 -1
  62. data/lib/new_relic/agent/distributed_tracing/distributed_trace_transport_type.rb +1 -1
  63. data/lib/new_relic/agent/distributed_tracing/trace_context.rb +1 -1
  64. data/lib/new_relic/agent/distributed_tracing/trace_context_payload.rb +1 -1
  65. data/lib/new_relic/agent/encoding_normalizer.rb +1 -1
  66. data/lib/new_relic/agent/error_collector.rb +1 -1
  67. data/lib/new_relic/agent/error_event_aggregator.rb +1 -1
  68. data/lib/new_relic/agent/error_trace_aggregator.rb +1 -1
  69. data/lib/new_relic/agent/event_aggregator.rb +1 -1
  70. data/lib/new_relic/agent/event_buffer.rb +1 -1
  71. data/lib/new_relic/agent/event_listener.rb +1 -1
  72. data/lib/new_relic/agent/event_loop.rb +1 -1
  73. data/lib/new_relic/agent/external.rb +1 -1
  74. data/lib/new_relic/agent/guid_generator.rb +1 -1
  75. data/lib/new_relic/agent/harvester.rb +1 -1
  76. data/lib/new_relic/agent/heap.rb +1 -1
  77. data/lib/new_relic/agent/hostname.rb +1 -1
  78. data/lib/new_relic/agent/http_clients/abstract.rb +1 -1
  79. data/lib/new_relic/agent/http_clients/curb_wrappers.rb +1 -1
  80. data/lib/new_relic/agent/http_clients/excon_wrappers.rb +1 -1
  81. data/lib/new_relic/agent/http_clients/http_rb_wrappers.rb +1 -1
  82. data/lib/new_relic/agent/http_clients/httpclient_wrappers.rb +1 -1
  83. data/lib/new_relic/agent/http_clients/net_http_wrappers.rb +1 -1
  84. data/lib/new_relic/agent/http_clients/typhoeus_wrappers.rb +1 -1
  85. data/lib/new_relic/agent/http_clients/uri_util.rb +9 -9
  86. data/lib/new_relic/agent/instrumentation.rb +1 -1
  87. data/lib/new_relic/agent/instrumentation/action_cable_subscriber.rb +1 -1
  88. data/lib/new_relic/agent/instrumentation/action_controller_subscriber.rb +1 -1
  89. data/lib/new_relic/agent/instrumentation/action_view_subscriber.rb +5 -6
  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 +84 -39
  93. data/lib/new_relic/agent/instrumentation/active_record_helper.rb +17 -6
  94. data/lib/new_relic/agent/instrumentation/active_record_notifications.rb +1 -1
  95. data/lib/new_relic/agent/instrumentation/active_record_prepend.rb +35 -11
  96. data/lib/new_relic/agent/instrumentation/active_record_subscriber.rb +1 -1
  97. data/lib/new_relic/agent/instrumentation/active_storage.rb +1 -1
  98. data/lib/new_relic/agent/instrumentation/active_storage_subscriber.rb +1 -1
  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 +3 -1
  102. data/lib/new_relic/agent/instrumentation/controller_instrumentation.rb +1 -1
  103. data/lib/new_relic/agent/instrumentation/curb.rb +7 -1
  104. data/lib/new_relic/agent/instrumentation/data_mapper.rb +1 -1
  105. data/lib/new_relic/agent/instrumentation/delayed_job_instrumentation.rb +3 -1
  106. data/lib/new_relic/agent/instrumentation/excon.rb +1 -1
  107. data/lib/new_relic/agent/instrumentation/excon/connection.rb +1 -1
  108. data/lib/new_relic/agent/instrumentation/excon/middleware.rb +1 -1
  109. data/lib/new_relic/agent/instrumentation/grape.rb +1 -1
  110. data/lib/new_relic/agent/instrumentation/http.rb +1 -1
  111. data/lib/new_relic/agent/instrumentation/httpclient.rb +1 -1
  112. data/lib/new_relic/agent/instrumentation/ignore_actions.rb +1 -1
  113. data/lib/new_relic/agent/instrumentation/memcache.rb +1 -1
  114. data/lib/new_relic/agent/instrumentation/memcache/dalli.rb +1 -1
  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 +1 -1
  120. data/lib/new_relic/agent/instrumentation/mongodb_command_subscriber.rb +25 -5
  121. data/lib/new_relic/agent/instrumentation/net.rb +46 -29
  122. data/lib/new_relic/agent/instrumentation/net_prepend.rb +40 -0
  123. data/lib/new_relic/agent/instrumentation/notifications_subscriber.rb +2 -2
  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/rails_notifications/action_cable.rb +1 -1
  133. data/lib/new_relic/agent/instrumentation/rails_notifications/action_controller.rb +1 -1
  134. data/lib/new_relic/agent/instrumentation/rails_notifications/action_view.rb +1 -1
  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 +3 -3
  138. data/lib/new_relic/agent/instrumentation/resque.rb +1 -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 +5 -5
  142. data/lib/new_relic/agent/instrumentation/sinatra.rb +1 -2
  143. data/lib/new_relic/agent/instrumentation/sinatra/ignorer.rb +1 -1
  144. data/lib/new_relic/agent/instrumentation/sinatra/transaction_namer.rb +1 -1
  145. data/lib/new_relic/agent/instrumentation/sunspot.rb +1 -1
  146. data/lib/new_relic/agent/instrumentation/typhoeus.rb +1 -1
  147. data/lib/new_relic/agent/internal_agent_error.rb +1 -1
  148. data/lib/new_relic/agent/javascript_instrumentor.rb +1 -1
  149. data/lib/new_relic/agent/log_once.rb +1 -1
  150. data/lib/new_relic/agent/logging.rb +1 -1
  151. data/lib/new_relic/agent/memory_logger.rb +1 -1
  152. data/lib/new_relic/agent/messaging.rb +1 -1
  153. data/lib/new_relic/agent/method_tracer.rb +7 -17
  154. data/lib/new_relic/agent/method_tracer_helpers.rb +1 -1
  155. data/lib/new_relic/agent/monitors.rb +1 -1
  156. data/lib/new_relic/agent/monitors/cross_app_monitor.rb +1 -1
  157. data/lib/new_relic/agent/monitors/distributed_tracing_monitor.rb +1 -1
  158. data/lib/new_relic/agent/monitors/inbound_request_monitor.rb +1 -1
  159. data/lib/new_relic/agent/monitors/synthetics_monitor.rb +1 -1
  160. data/lib/new_relic/agent/new_relic_service.rb +27 -4
  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/noticible_error.rb +1 -1
  166. data/lib/new_relic/agent/null_logger.rb +1 -1
  167. data/lib/new_relic/agent/obfuscator.rb +1 -1
  168. data/lib/new_relic/agent/parameter_filtering.rb +1 -1
  169. data/lib/new_relic/agent/payload_metric_mapping.rb +1 -1
  170. data/lib/new_relic/agent/pipe_channel_manager.rb +1 -1
  171. data/lib/new_relic/agent/pipe_service.rb +1 -1
  172. data/lib/new_relic/agent/prepend_supportability.rb +1 -1
  173. data/lib/new_relic/agent/priority_sampled_buffer.rb +8 -5
  174. data/lib/new_relic/agent/range_extensions.rb +1 -1
  175. data/lib/new_relic/agent/rules_engine.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/sampler.rb +1 -1
  179. data/lib/new_relic/agent/sampler_collection.rb +1 -1
  180. data/lib/new_relic/agent/samplers/cpu_sampler.rb +1 -1
  181. data/lib/new_relic/agent/samplers/delayed_job_sampler.rb +1 -1
  182. data/lib/new_relic/agent/samplers/memory_sampler.rb +2 -2
  183. data/lib/new_relic/agent/samplers/object_sampler.rb +1 -1
  184. data/lib/new_relic/agent/samplers/vm_sampler.rb +1 -1
  185. data/lib/new_relic/agent/span_event_aggregator.rb +1 -1
  186. data/lib/new_relic/agent/span_event_primitive.rb +26 -5
  187. data/lib/new_relic/agent/sql_sampler.rb +4 -4
  188. data/lib/new_relic/agent/stats.rb +1 -1
  189. data/lib/new_relic/agent/stats_engine.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/supported_versions.rb +1 -1
  193. data/lib/new_relic/agent/synthetics_event_aggregator.rb +1 -1
  194. data/lib/new_relic/agent/system_info.rb +1 -1
  195. data/lib/new_relic/agent/threading/agent_thread.rb +1 -1
  196. data/lib/new_relic/agent/threading/backtrace_node.rb +1 -1
  197. data/lib/new_relic/agent/threading/backtrace_service.rb +1 -1
  198. data/lib/new_relic/agent/threading/thread_profile.rb +1 -1
  199. data/lib/new_relic/agent/timestamp_sampled_buffer.rb +1 -1
  200. data/lib/new_relic/agent/tracer.rb +1 -1
  201. data/lib/new_relic/agent/transaction.rb +20 -3
  202. data/lib/new_relic/agent/transaction/abstract_segment.rb +4 -3
  203. data/lib/new_relic/agent/transaction/datastore_segment.rb +1 -1
  204. data/lib/new_relic/agent/transaction/distributed_tracer.rb +15 -9
  205. data/lib/new_relic/agent/transaction/distributed_tracing.rb +2 -2
  206. data/lib/new_relic/agent/transaction/external_request_segment.rb +3 -3
  207. data/lib/new_relic/agent/transaction/message_broker_segment.rb +2 -1
  208. data/lib/new_relic/agent/transaction/request_attributes.rb +1 -1
  209. data/lib/new_relic/agent/transaction/segment.rb +23 -3
  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 +1 -1
  213. data/lib/new_relic/agent/transaction/trace_builder.rb +1 -1
  214. data/lib/new_relic/agent/transaction/trace_context.rb +1 -1
  215. data/lib/new_relic/agent/transaction/trace_node.rb +1 -1
  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_error_primitive.rb +3 -3
  219. data/lib/new_relic/agent/transaction_event_aggregator.rb +1 -1
  220. data/lib/new_relic/agent/transaction_event_primitive.rb +3 -3
  221. data/lib/new_relic/agent/transaction_event_recorder.rb +1 -1
  222. data/lib/new_relic/agent/transaction_metrics.rb +1 -1
  223. data/lib/new_relic/agent/transaction_sampler.rb +1 -1
  224. data/lib/new_relic/agent/transaction_time_aggregator.rb +1 -1
  225. data/lib/new_relic/agent/utilization/aws.rb +1 -1
  226. data/lib/new_relic/agent/utilization/azure.rb +1 -1
  227. data/lib/new_relic/agent/utilization/gcp.rb +1 -1
  228. data/lib/new_relic/agent/utilization/pcf.rb +1 -1
  229. data/lib/new_relic/agent/utilization/vendor.rb +1 -1
  230. data/lib/new_relic/agent/utilization_data.rb +1 -1
  231. data/lib/new_relic/agent/vm.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/worker_loop.rb +1 -1
  237. data/lib/new_relic/cli/command.rb +1 -1
  238. data/lib/new_relic/cli/commands/deployments.rb +1 -2
  239. data/lib/new_relic/cli/commands/install.rb +1 -1
  240. data/lib/new_relic/coerce.rb +1 -1
  241. data/lib/new_relic/collection_helper.rb +1 -1
  242. data/lib/new_relic/constants.rb +5 -1
  243. data/lib/new_relic/control.rb +1 -1
  244. data/lib/new_relic/control/class_methods.rb +1 -1
  245. data/lib/new_relic/control/frameworks.rb +1 -1
  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/rails_notifications.rb +1 -1
  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/instance_methods.rb +1 -1
  255. data/lib/new_relic/control/instrumentation.rb +1 -1
  256. data/lib/new_relic/control/server_methods.rb +1 -1
  257. data/lib/new_relic/delayed_job_injection.rb +1 -1
  258. data/lib/new_relic/dependency_detection.rb +5 -1
  259. data/lib/new_relic/environment_report.rb +2 -8
  260. data/lib/new_relic/helper.rb +1 -1
  261. data/lib/new_relic/language_support.rb +1 -1
  262. data/lib/new_relic/latest_changes.rb +2 -2
  263. data/lib/new_relic/local_environment.rb +1 -1
  264. data/lib/new_relic/metric_data.rb +1 -1
  265. data/lib/new_relic/metric_spec.rb +1 -1
  266. data/lib/new_relic/noticed_error.rb +1 -1
  267. data/lib/new_relic/rack.rb +1 -1
  268. data/lib/new_relic/rack/agent_hooks.rb +1 -1
  269. data/lib/new_relic/rack/agent_middleware.rb +1 -1
  270. data/lib/new_relic/rack/browser_monitoring.rb +1 -1
  271. data/lib/new_relic/recipes.rb +1 -1
  272. data/lib/new_relic/recipes/capistrano3.rb +1 -1
  273. data/lib/new_relic/recipes/capistrano_legacy.rb +1 -1
  274. data/lib/new_relic/supportability_helper.rb +3 -1
  275. data/lib/new_relic/version.rb +2 -2
  276. data/lib/newrelic_rpm.rb +1 -1
  277. data/lib/sequel/extensions/newrelic_instrumentation.rb +1 -1
  278. data/lib/sequel/plugins/newrelic_instrumentation.rb +1 -1
  279. data/lib/tasks/all.rb +1 -1
  280. data/lib/tasks/multiverse.rb +10 -1
  281. data/lib/tasks/newrelic.rb +1 -1
  282. data/newrelic_rpm.gemspec +8 -7
  283. data/recipes/newrelic.rb +1 -1
  284. data/test/agent_helper.rb +26 -11
  285. metadata +14 -13
  286. data/.travis.yml +0 -241
  287. data/lib/new_relic/metrics.rb +0 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5c57ffc3785e824375bddaddea5ff0a281b9b3e6bb1d9a8df8ec8ee4514b5f87
4
- data.tar.gz: 72b4889613aca4855ebffc39a1c09419871560cbbe5d2311457ec53181d861ca
3
+ metadata.gz: 59fdb006789ae2f1cb776c15084ad1bc7f854abf000573fd11dd2c14882b4273
4
+ data.tar.gz: 7b8d00cdaa547832fb34c1f76a697b694ff28c9a74be046545e7d3b0866d97e6
5
5
  SHA512:
6
- metadata.gz: 39bbe0afde8eb032928ee3582b5ceb0d6870be12f63c45785d575e93a2d1516bbc15c306bd82681535cde1816aed074dd23795af036eb409f53dfc2d20f5c66f
7
- data.tar.gz: 2a59cdff3bbfe3fb18b1b028a1d64f9b8a452783277313ca78b964c8cf9d8a2362b8872e2405549a3a594c5b2fa20c8439df05e4a76d608b5f3f79d880577a29
6
+ metadata.gz: 5cadb8ca1d02feadc30a85871d1e8cd6c24064bfc3b1bed98680573bb4c29075e07447f4290dfc360d9607c1ff3a5433d0c36be9eaeae515c725547424ee92cc
7
+ data.tar.gz: c3901a54a577cdab2159ee6a93bf4bd6acf82d6629d4d4ba99c4565d7155efc7d653387f9fcee8cd246d19cecfe662b60bd63f05cbf19d38194e0b6d9d6ce0b9
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
+ .ruby-version
1
2
  Gemfile.lock
2
3
  Guard*
3
4
  .DS\_Store
@@ -30,3 +31,7 @@ test/performance/log/
30
31
  test/performance/script/log/
31
32
  infinite_tracing/log/
32
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
@@ -1,5 +1,260 @@
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
+
3
258
  ## v6.11.0
4
259
 
5
260
  * **Infinite Tracing**
@@ -171,7 +426,7 @@
171
426
  level custom attributes, more granular tagging of events is possible for
172
427
  easier isolation and review of trace events. For more information:
173
428
 
174
- * [`Agent#add_custom_span_attributes`](https://www.rubydoc.info/github/newrelic/rpm/NewRelic/Agent#add_custom_span_attributes)
429
+ * [`Agent#add_custom_span_attributes`](https://www.rubydoc.info/github/newrelic/newrelic-ruby-agent/NewRelic/Agent#add_custom_span_attributes)
175
430
 
176
431
  * **Enables ability to migrate to Configurable Security Policies (CSP) on a per agent
177
432
  basis for accounts already using High Security Mode (HSM).**
@@ -239,10 +494,10 @@
239
494
  * **Trace and Entity Metadata API**
240
495
 
241
496
  Several new API methods have been added to the agent:
242
- * [`Agent#linking_metadata`](https://www.rubydoc.info/github/newrelic/rpm/NewRelic/Agent#linking_metadata-instance_method)
243
- * [`Tracer#trace_id`](https://www.rubydoc.info/github/newrelic/rpm/NewRelic/Agent/Tracer#trace_id-class_method)
244
- * [`Tracer#span_id`](https://www.rubydoc.info/github/newrelic/rpm/NewRelic/Agent/Tracer#span_id-class_method)
245
- * [`Tracer#sampled?`](https://www.rubydoc.info/github/newrelic/rpm/NewRelic/Agent/Tracer#sampled?-class_method)
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)
246
501
 
247
502
  These API methods allow you to access information that can be used to link data of your choosing to a trace or entity.
248
503
 
@@ -1,13 +1,13 @@
1
1
  # Guidelines for Contributing Code
2
2
 
3
- At New Relic we welcome community code contributions to the Ruby agent, and have
4
- taken effort to make this process easy for both contributors and our development
5
- team.
3
+ New Relic welcomes code contributions by the Ruby community, and
4
+ have taken effort to make this process easy for both contributors and our
5
+ development team.
6
6
 
7
7
  When contributing, keep in mind that the agent runs in a wide variety of Ruby
8
8
  language implementations (e.g. 2.x.x, jruby, etc.) as well as a wide variety of
9
- application environments (e.g. Rails, Sinatra, roll-your-own, etc.) See
10
- https://docs.newrelic.com/docs/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks
9
+ application environments (e.g. Rails, Sinatra, roll-your-own, etc.) See [Ruby agent requirements and supported frameworks]
10
+ (https://docs.newrelic.com/docs/agents/ruby-agent/getting-started/ruby-agent-requirements-supported-frameworks)
11
11
  for the current full list.
12
12
 
13
13
  Because of this, we need to be more defensive in our coding practices than most
@@ -15,10 +15,72 @@ projects. Syntax must be compatible with all supported Ruby implementations and
15
15
  we can't assume the presence of any specific libraries, including `ActiveSupport`,
16
16
  `ActiveRecord`, etc.
17
17
 
18
+ ## Process
19
+
20
+ ### Version Support
21
+
22
+ When contributing, keep in mind that New Relic customers (that's you!) are
23
+ running many different versions of Ruby, some of them pretty old. Changes that
24
+ depend on the newest version of Ruby will probably be rejected, especially if
25
+ they replace something backwards compatible.
26
+
27
+ Be aware that the instrumentation needs to work with a wide range of versions of
28
+ the instrumented modules, and that code that looks nonsensical or
29
+ overcomplicated may be that way for compatibility-related reasons. Read all the
30
+ comments and check the related tests before deciding whether existing code is
31
+ incorrect.
32
+
33
+ If you are planning on contributing a new feature or an otherwise complex
34
+ contribution, we kindly ask you to start a conversation with the maintainer team
35
+ by opening up an Github issue first.
36
+
37
+
38
+ ### General Guidelines
39
+ The Ruby agent avoids requiring any dependencies in the main agent code base.
40
+ Instrumentations and features that would otherwise require a dependency (such as
41
+ Infinite Tracing, which require gRPC and protobuf) are built as separate gems.
42
+ If you have a feature or instrumentation request that would require a
43
+ dependency, please open an Issue to discuss with the maintainers before
44
+ proceeding.
45
+
46
+ Your code will be evaluated for completeness and accuracy in
47
+ implementation and must be accompanied with appropriate unit tests. New
48
+ additions that do not break existing tests are the easiest and quickest to be
49
+ accepted and merged. New features and improvements that break existing
50
+ functionality are slower to be accepted and merged as they require agreement
51
+ with maintainers across a majority of the languages New Relic supports. Any
52
+ such breaking changes will require a major version bump whereas non-breaking
53
+ additions only lead to minor version bumps.
54
+
55
+ Please be aware that the maintainers of New Relic’s agents aim to have as much
56
+ commonality of functionality across all language agents as makes sense, so we are
57
+ always working to reconcile language-specific changes against the cross-language
58
+ community set of agreements.
59
+
60
+ ### Feature Requests
61
+
62
+ Feature requests should be submitted in the [Issue tracker](../../issues), with
63
+ a description of the expected behavior & use case. Before submitting an Issue,
64
+ please search for similar ones in the [closed
65
+ issues](../../issues?q=is%3Aissue+is%3Aclosed).
66
+
67
+ ### Pull Requests
68
+
69
+ We can only accept PRs for version v6.12.0 or greater due to open source
70
+ licensing restrictions.
71
+
72
+ ### Code of Conduct
73
+
74
+ Before contributing please read the [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md)
75
+
76
+ Note that our [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md) applies to all platforms
77
+ and venues related to this project; please follow it in all your interactions
78
+ with the project and its participants.
79
+
18
80
  ## Branches
19
81
 
20
- The head of master will generally have New Relic's latest release. However,
21
- New Relic reserves the ability to push an edge to the master. If you download a
82
+ The head of `main` will generally have New Relic's latest release. However,
83
+ New Relic reserves the ability to push an edge to the `main`. If you download a
22
84
  release from this repo, use the appropriate tag. New Relic usually pushes beta
23
85
  versions of a release to a working branch before tagging them for General
24
86
  Availability.
@@ -39,13 +101,16 @@ Running the test suite is simple. Just invoke:
39
101
  bundle
40
102
  bundle exec rake
41
103
 
42
- This will run the unit tests in standalone mode, bootstrapping a basic Rails
43
- 3.2 environment for the agent to instrument, then executing the test suite.
104
+ This will run the unit tests in standalone mode. You can run against a specific Rails version
105
+ by passing the version name (which should match the name of a subdirectory in test/environments)
106
+ as an argument to the test:env rake task, like this:
107
+
108
+ bundle exec rake test:env[rails60]
44
109
 
45
110
  These tests are setup to run automatically in
46
- [Travis CI](https://travis-ci.org/newrelic/rpm) under several Ruby implementations.
47
- When you've pushed your changes to GitHub, you can confirm that the Travis
48
- build passes for your fork.
111
+ [GitHub Actions](https://github.com/newrelic/newrelic-ruby-agent/actions) under several
112
+ Ruby implementations. When you've pushed your changes to GitHub, you can confirm that
113
+ the GitHub Actions test matrix passes for your fork.
49
114
 
50
115
  Additionally, our own CI jobs runs these tests under multiple versions of Rails
51
116
  to verify compatibility.
@@ -74,15 +139,37 @@ These tests can be run by invoking:
74
139
  bundle exec rake test:multiverse
75
140
 
76
141
  More details are available in
77
- [test/multiverse/README.md](https://github.com/newrelic/rpm/blob/master/test/multiverse/README.md).
142
+ [test/multiverse/README.md](https://github.com/newrelic/newrelic-ruby-agent/blob/main/test/multiverse/README.md).
143
+
144
+ ## Contributor License Agreement
145
+
146
+ Keep in mind that when you submit your Pull Request, you'll need to sign the CLA
147
+ via the click-through using CLA-Assistant. If you'd like to execute our
148
+ corporate CLA, or if you have any questions, please drop us an email at
149
+ opensource@newrelic.com.
150
+
151
+ For more information about CLAs, please check out Alex Russell’s excellent post,
152
+ [“Why Do I Need to Sign This?”](https://infrequently.org/2008/06/why-do-i-need-to-sign-this/).
153
+
154
+ ## Slack
155
+
156
+ We host a public Slack with a dedicated channel for contributors and maintainers
157
+ of open source projects hosted by New Relic. If you are contributing to this
158
+ project, you're welcome to request access to the #oss-contributors channel in
159
+ the newrelicusers.slack.com workspace. To request access, see
160
+ https://newrelicusers-signup.herokuapp.com/.
161
+
162
+ ## Explorer's Hub
163
+
164
+ New Relic hosts and moderates an online forum where customers can interact with
165
+ New Relic employees as well as other customers to get help and share best
166
+ practices. Like all official New Relic open source projects, there's a related
167
+ Community topic in the New Relic Explorers Hub. You can find this project's
168
+ topic/threads here:
78
169
 
79
- ### And Finally...
170
+ [Explorer's Hub](https://discuss.newrelic.com/tags/rubyagent)
80
171
 
81
- You are welcome to send pull requests to us - however, by doing so you agree
82
- that you are granting New Relic a non-exclusive, non-revokable, no-cost license
83
- to use the code, algorithms, patents, and ideas in that code in our products if
84
- we so choose. Fortunately, you also agree the code is provided as-is and you provide no
85
- warranties as to its fitness or correctness for any purpose.
172
+ ## And Finally...
86
173
 
87
174
  If you have any feedback on how we can make contributing easier, please get in
88
175
  touch at [support.newrelic.com](http://support.newrelic.com) and let us know!