ddtrace 0.41.0 → 0.52.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (572) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +22 -0
  3. data/.gitignore +7 -1
  4. data/CHANGELOG.md +1496 -354
  5. data/CONTRIBUTING.md +3 -7
  6. data/LICENSE-3rdparty.csv +2 -0
  7. data/README.md +1 -0
  8. data/bin/ddtracerb +15 -0
  9. data/ddtrace.gemspec +18 -38
  10. data/docs/DevelopmentGuide.md +55 -2
  11. data/docs/GettingStarted.md +338 -79
  12. data/docs/ProfilingDevelopment.md +107 -0
  13. data/ext/ddtrace_profiling_native_extension/extconf.rb +28 -0
  14. data/ext/ddtrace_profiling_native_extension/profiling.c +17 -0
  15. data/lib/datadog/ci.rb +17 -0
  16. data/lib/datadog/ci/configuration/components.rb +31 -0
  17. data/lib/datadog/ci/configuration/settings.rb +37 -0
  18. data/lib/datadog/ci/context_flush.rb +29 -0
  19. data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +31 -0
  20. data/lib/datadog/ci/contrib/cucumber/ext.rb +20 -0
  21. data/lib/datadog/ci/contrib/cucumber/formatter.rb +98 -0
  22. data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +27 -0
  23. data/lib/datadog/ci/contrib/cucumber/integration.rb +48 -0
  24. data/lib/datadog/ci/contrib/cucumber/patcher.rb +26 -0
  25. data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +31 -0
  26. data/lib/datadog/ci/contrib/rspec/example.rb +74 -0
  27. data/lib/datadog/ci/contrib/rspec/ext.rb +19 -0
  28. data/lib/datadog/ci/contrib/rspec/integration.rb +49 -0
  29. data/lib/datadog/ci/contrib/rspec/patcher.rb +26 -0
  30. data/lib/datadog/ci/ext/app_types.rb +10 -0
  31. data/lib/datadog/ci/ext/environment.rb +443 -0
  32. data/lib/datadog/ci/ext/settings.rb +11 -0
  33. data/lib/datadog/ci/ext/test.rb +35 -0
  34. data/lib/datadog/ci/extensions.rb +18 -0
  35. data/lib/datadog/ci/test.rb +77 -0
  36. data/lib/datadog/contrib.rb +69 -0
  37. data/lib/datadog/core/environment/cgroup.rb +52 -0
  38. data/lib/datadog/core/environment/class_count.rb +20 -0
  39. data/lib/datadog/core/environment/container.rb +91 -0
  40. data/lib/datadog/core/environment/ext.rb +27 -0
  41. data/lib/datadog/core/environment/gc.rb +19 -0
  42. data/lib/datadog/core/environment/identity.rb +51 -0
  43. data/lib/datadog/core/environment/socket.rb +17 -0
  44. data/lib/datadog/core/environment/thread_count.rb +19 -0
  45. data/lib/datadog/core/environment/variable_helpers.rb +42 -0
  46. data/lib/ddtrace.rb +22 -48
  47. data/lib/ddtrace/analytics.rb +3 -0
  48. data/lib/ddtrace/auto_instrument.rb +5 -0
  49. data/lib/ddtrace/auto_instrument_base.rb +7 -0
  50. data/lib/ddtrace/buffer.rb +233 -135
  51. data/lib/ddtrace/chunker.rb +1 -0
  52. data/lib/ddtrace/configuration.rb +132 -24
  53. data/lib/ddtrace/configuration/agent_settings_resolver.rb +231 -0
  54. data/lib/ddtrace/configuration/base.rb +9 -11
  55. data/lib/ddtrace/configuration/components.rb +167 -26
  56. data/lib/ddtrace/configuration/dependency_resolver.rb +1 -0
  57. data/lib/ddtrace/configuration/option.rb +1 -0
  58. data/lib/ddtrace/configuration/option_definition.rb +2 -3
  59. data/lib/ddtrace/configuration/option_definition_set.rb +1 -0
  60. data/lib/ddtrace/configuration/option_set.rb +1 -0
  61. data/lib/ddtrace/configuration/options.rb +7 -9
  62. data/lib/ddtrace/configuration/pin_setup.rb +1 -0
  63. data/lib/ddtrace/configuration/settings.rb +132 -12
  64. data/lib/ddtrace/context.rb +41 -20
  65. data/lib/ddtrace/context_flush.rb +15 -2
  66. data/lib/ddtrace/context_provider.rb +17 -5
  67. data/lib/ddtrace/contrib/action_cable/configuration/settings.rb +1 -0
  68. data/lib/ddtrace/contrib/action_cable/event.rb +6 -4
  69. data/lib/ddtrace/contrib/action_cable/events.rb +1 -0
  70. data/lib/ddtrace/contrib/action_cable/events/broadcast.rb +1 -0
  71. data/lib/ddtrace/contrib/action_cable/events/perform_action.rb +1 -0
  72. data/lib/ddtrace/contrib/action_cable/events/transmit.rb +1 -0
  73. data/lib/ddtrace/contrib/action_cable/ext.rb +1 -0
  74. data/lib/ddtrace/contrib/action_cable/instrumentation.rb +1 -0
  75. data/lib/ddtrace/contrib/action_cable/integration.rb +8 -0
  76. data/lib/ddtrace/contrib/action_cable/patcher.rb +1 -0
  77. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +22 -13
  78. data/lib/ddtrace/contrib/action_pack/action_controller/patcher.rb +2 -1
  79. data/lib/ddtrace/contrib/action_pack/configuration/settings.rb +1 -0
  80. data/lib/ddtrace/contrib/action_pack/ext.rb +1 -0
  81. data/lib/ddtrace/contrib/action_pack/integration.rb +8 -0
  82. data/lib/ddtrace/contrib/action_pack/patcher.rb +1 -0
  83. data/lib/ddtrace/contrib/action_pack/utils.rb +2 -1
  84. data/lib/ddtrace/contrib/action_view/configuration/settings.rb +1 -0
  85. data/lib/ddtrace/contrib/action_view/event.rb +4 -7
  86. data/lib/ddtrace/contrib/action_view/events.rb +1 -0
  87. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +2 -0
  88. data/lib/ddtrace/contrib/action_view/events/render_template.rb +2 -0
  89. data/lib/ddtrace/contrib/action_view/ext.rb +1 -0
  90. data/lib/ddtrace/contrib/action_view/instrumentation/partial_renderer.rb +1 -0
  91. data/lib/ddtrace/contrib/action_view/instrumentation/template_renderer.rb +1 -0
  92. data/lib/ddtrace/contrib/action_view/integration.rb +8 -0
  93. data/lib/ddtrace/contrib/action_view/patcher.rb +5 -4
  94. data/lib/ddtrace/contrib/action_view/utils.rb +2 -1
  95. data/lib/ddtrace/contrib/active_model_serializers/configuration/settings.rb +1 -0
  96. data/lib/ddtrace/contrib/active_model_serializers/event.rb +3 -2
  97. data/lib/ddtrace/contrib/active_model_serializers/events.rb +1 -0
  98. data/lib/ddtrace/contrib/active_model_serializers/events/render.rb +1 -0
  99. data/lib/ddtrace/contrib/active_model_serializers/events/serialize.rb +1 -0
  100. data/lib/ddtrace/contrib/active_model_serializers/ext.rb +1 -0
  101. data/lib/ddtrace/contrib/active_model_serializers/integration.rb +1 -0
  102. data/lib/ddtrace/contrib/active_model_serializers/patcher.rb +1 -0
  103. data/lib/ddtrace/contrib/active_record/configuration/makara_resolver.rb +31 -0
  104. data/lib/ddtrace/contrib/active_record/configuration/resolver.rb +108 -18
  105. data/lib/ddtrace/contrib/active_record/configuration/settings.rb +1 -0
  106. data/lib/ddtrace/contrib/active_record/event.rb +3 -2
  107. data/lib/ddtrace/contrib/active_record/events.rb +1 -0
  108. data/lib/ddtrace/contrib/active_record/events/instantiation.rb +1 -0
  109. data/lib/ddtrace/contrib/active_record/events/sql.rb +1 -0
  110. data/lib/ddtrace/contrib/active_record/ext.rb +1 -0
  111. data/lib/ddtrace/contrib/active_record/integration.rb +8 -0
  112. data/lib/ddtrace/contrib/active_record/patcher.rb +1 -0
  113. data/lib/ddtrace/contrib/active_record/utils.rb +69 -21
  114. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +105 -3
  115. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +26 -4
  116. data/lib/ddtrace/contrib/active_support/cache/redis.rb +2 -5
  117. data/lib/ddtrace/contrib/active_support/configuration/settings.rb +1 -0
  118. data/lib/ddtrace/contrib/active_support/ext.rb +4 -0
  119. data/lib/ddtrace/contrib/active_support/integration.rb +8 -1
  120. data/lib/ddtrace/contrib/active_support/notifications/event.rb +15 -3
  121. data/lib/ddtrace/contrib/active_support/notifications/subscriber.rb +3 -1
  122. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +10 -5
  123. data/lib/ddtrace/contrib/active_support/patcher.rb +1 -0
  124. data/lib/ddtrace/contrib/analytics.rb +1 -0
  125. data/lib/ddtrace/contrib/auto_instrument.rb +49 -0
  126. data/lib/ddtrace/contrib/aws/configuration/settings.rb +1 -0
  127. data/lib/ddtrace/contrib/aws/ext.rb +1 -0
  128. data/lib/ddtrace/contrib/aws/instrumentation.rb +32 -1
  129. data/lib/ddtrace/contrib/aws/integration.rb +1 -0
  130. data/lib/ddtrace/contrib/aws/parsed_context.rb +1 -0
  131. data/lib/ddtrace/contrib/aws/patcher.rb +6 -1
  132. data/lib/ddtrace/contrib/aws/services.rb +4 -0
  133. data/lib/ddtrace/contrib/concurrent_ruby/configuration/settings.rb +1 -0
  134. data/lib/ddtrace/contrib/concurrent_ruby/context_composite_executor_service.rb +1 -0
  135. data/lib/ddtrace/contrib/concurrent_ruby/ext.rb +1 -0
  136. data/lib/ddtrace/contrib/concurrent_ruby/future_patch.rb +1 -0
  137. data/lib/ddtrace/contrib/concurrent_ruby/integration.rb +1 -0
  138. data/lib/ddtrace/contrib/concurrent_ruby/patcher.rb +3 -1
  139. data/lib/ddtrace/contrib/configurable.rb +65 -38
  140. data/lib/ddtrace/contrib/configuration/resolver.rb +71 -5
  141. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +21 -20
  142. data/lib/ddtrace/contrib/configuration/settings.rb +8 -6
  143. data/lib/ddtrace/contrib/dalli/configuration/settings.rb +1 -0
  144. data/lib/ddtrace/contrib/dalli/ext.rb +1 -0
  145. data/lib/ddtrace/contrib/dalli/instrumentation.rb +2 -1
  146. data/lib/ddtrace/contrib/dalli/integration.rb +1 -0
  147. data/lib/ddtrace/contrib/dalli/patcher.rb +2 -39
  148. data/lib/ddtrace/contrib/dalli/quantize.rb +1 -0
  149. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +3 -0
  150. data/lib/ddtrace/contrib/delayed_job/ext.rb +3 -0
  151. data/lib/ddtrace/contrib/delayed_job/integration.rb +1 -0
  152. data/lib/ddtrace/contrib/delayed_job/patcher.rb +1 -0
  153. data/lib/ddtrace/contrib/delayed_job/plugin.rb +39 -15
  154. data/lib/ddtrace/contrib/elasticsearch/configuration/settings.rb +1 -0
  155. data/lib/ddtrace/contrib/elasticsearch/ext.rb +1 -0
  156. data/lib/ddtrace/contrib/elasticsearch/integration.rb +1 -0
  157. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +2 -0
  158. data/lib/ddtrace/contrib/elasticsearch/quantize.rb +6 -2
  159. data/lib/ddtrace/contrib/ethon/configuration/settings.rb +1 -0
  160. data/lib/ddtrace/contrib/ethon/easy_patch.rb +13 -11
  161. data/lib/ddtrace/contrib/ethon/ext.rb +2 -0
  162. data/lib/ddtrace/contrib/ethon/integration.rb +1 -0
  163. data/lib/ddtrace/contrib/ethon/multi_patch.rb +2 -1
  164. data/lib/ddtrace/contrib/ethon/patcher.rb +4 -2
  165. data/lib/ddtrace/contrib/excon/configuration/settings.rb +1 -0
  166. data/lib/ddtrace/contrib/excon/ext.rb +1 -0
  167. data/lib/ddtrace/contrib/excon/integration.rb +1 -0
  168. data/lib/ddtrace/contrib/excon/middleware.rb +10 -7
  169. data/lib/ddtrace/contrib/excon/patcher.rb +1 -0
  170. data/lib/ddtrace/contrib/extensions.rb +90 -14
  171. data/lib/ddtrace/contrib/faraday/configuration/settings.rb +1 -0
  172. data/lib/ddtrace/contrib/faraday/connection.rb +1 -0
  173. data/lib/ddtrace/contrib/faraday/ext.rb +1 -0
  174. data/lib/ddtrace/contrib/faraday/integration.rb +1 -0
  175. data/lib/ddtrace/contrib/faraday/middleware.rb +2 -3
  176. data/lib/ddtrace/contrib/faraday/patcher.rb +3 -38
  177. data/lib/ddtrace/contrib/faraday/rack_builder.rb +1 -0
  178. data/lib/ddtrace/contrib/grape/configuration/settings.rb +8 -0
  179. data/lib/ddtrace/contrib/grape/endpoint.rb +68 -32
  180. data/lib/ddtrace/contrib/grape/ext.rb +2 -0
  181. data/lib/ddtrace/contrib/grape/instrumentation.rb +4 -3
  182. data/lib/ddtrace/contrib/grape/integration.rb +1 -0
  183. data/lib/ddtrace/contrib/grape/patcher.rb +2 -43
  184. data/lib/ddtrace/contrib/graphql/configuration/settings.rb +1 -0
  185. data/lib/ddtrace/contrib/graphql/ext.rb +1 -0
  186. data/lib/ddtrace/contrib/graphql/integration.rb +1 -0
  187. data/lib/ddtrace/contrib/graphql/patcher.rb +1 -0
  188. data/lib/ddtrace/contrib/grpc/configuration/settings.rb +2 -0
  189. data/lib/ddtrace/contrib/grpc/datadog_interceptor.rb +13 -8
  190. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +2 -1
  191. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +4 -4
  192. data/lib/ddtrace/contrib/grpc/ext.rb +1 -0
  193. data/lib/ddtrace/contrib/grpc/integration.rb +1 -0
  194. data/lib/ddtrace/contrib/grpc/intercept_with_datadog.rb +1 -0
  195. data/lib/ddtrace/contrib/grpc/patcher.rb +3 -37
  196. data/lib/ddtrace/contrib/http/circuit_breaker.rb +2 -3
  197. data/lib/ddtrace/contrib/http/configuration/settings.rb +1 -0
  198. data/lib/ddtrace/contrib/http/ext.rb +1 -0
  199. data/lib/ddtrace/contrib/http/instrumentation.rb +9 -8
  200. data/lib/ddtrace/contrib/http/integration.rb +1 -0
  201. data/lib/ddtrace/contrib/http/patcher.rb +2 -1
  202. data/lib/ddtrace/contrib/http_annotation_helper.rb +1 -0
  203. data/lib/ddtrace/contrib/httpclient/configuration/settings.rb +33 -0
  204. data/lib/ddtrace/contrib/httpclient/ext.rb +18 -0
  205. data/lib/ddtrace/contrib/httpclient/instrumentation.rb +148 -0
  206. data/lib/ddtrace/contrib/httpclient/integration.rb +44 -0
  207. data/lib/ddtrace/contrib/httpclient/patcher.rb +39 -0
  208. data/lib/ddtrace/contrib/httprb/configuration/settings.rb +1 -0
  209. data/lib/ddtrace/contrib/httprb/ext.rb +1 -0
  210. data/lib/ddtrace/contrib/httprb/instrumentation.rb +17 -22
  211. data/lib/ddtrace/contrib/httprb/integration.rb +1 -0
  212. data/lib/ddtrace/contrib/httprb/patcher.rb +8 -4
  213. data/lib/ddtrace/contrib/integration.rb +4 -3
  214. data/lib/ddtrace/contrib/kafka/configuration/settings.rb +1 -0
  215. data/lib/ddtrace/contrib/kafka/consumer_event.rb +1 -0
  216. data/lib/ddtrace/contrib/kafka/consumer_group_event.rb +1 -0
  217. data/lib/ddtrace/contrib/kafka/event.rb +4 -3
  218. data/lib/ddtrace/contrib/kafka/events.rb +1 -0
  219. data/lib/ddtrace/contrib/kafka/events/connection/request.rb +1 -0
  220. data/lib/ddtrace/contrib/kafka/events/consumer/process_batch.rb +1 -0
  221. data/lib/ddtrace/contrib/kafka/events/consumer/process_message.rb +1 -0
  222. data/lib/ddtrace/contrib/kafka/events/consumer_group/heartbeat.rb +1 -0
  223. data/lib/ddtrace/contrib/kafka/events/consumer_group/join_group.rb +1 -0
  224. data/lib/ddtrace/contrib/kafka/events/consumer_group/leave_group.rb +1 -0
  225. data/lib/ddtrace/contrib/kafka/events/consumer_group/sync_group.rb +1 -0
  226. data/lib/ddtrace/contrib/kafka/events/produce_operation/send_messages.rb +1 -0
  227. data/lib/ddtrace/contrib/kafka/events/producer/deliver_messages.rb +1 -0
  228. data/lib/ddtrace/contrib/kafka/ext.rb +1 -0
  229. data/lib/ddtrace/contrib/kafka/integration.rb +1 -0
  230. data/lib/ddtrace/contrib/kafka/patcher.rb +1 -0
  231. data/lib/ddtrace/contrib/lograge/configuration/settings.rb +19 -0
  232. data/lib/ddtrace/contrib/lograge/ext.rb +11 -0
  233. data/lib/ddtrace/contrib/lograge/instrumentation.rb +39 -0
  234. data/lib/ddtrace/contrib/lograge/integration.rb +46 -0
  235. data/lib/ddtrace/contrib/lograge/patcher.rb +26 -0
  236. data/lib/ddtrace/contrib/mongodb/configuration/settings.rb +1 -0
  237. data/lib/ddtrace/contrib/mongodb/ext.rb +1 -0
  238. data/lib/ddtrace/contrib/mongodb/instrumentation.rb +5 -2
  239. data/lib/ddtrace/contrib/mongodb/integration.rb +1 -0
  240. data/lib/ddtrace/contrib/mongodb/parsers.rb +1 -0
  241. data/lib/ddtrace/contrib/mongodb/patcher.rb +3 -2
  242. data/lib/ddtrace/contrib/mongodb/subscribers.rb +3 -3
  243. data/lib/ddtrace/contrib/mysql2/configuration/settings.rb +1 -0
  244. data/lib/ddtrace/contrib/mysql2/ext.rb +1 -0
  245. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +2 -1
  246. data/lib/ddtrace/contrib/mysql2/integration.rb +1 -0
  247. data/lib/ddtrace/contrib/mysql2/patcher.rb +2 -1
  248. data/lib/ddtrace/contrib/patchable.rb +21 -9
  249. data/lib/ddtrace/contrib/patcher.rb +12 -8
  250. data/lib/ddtrace/contrib/presto/configuration/settings.rb +1 -0
  251. data/lib/ddtrace/contrib/presto/ext.rb +1 -0
  252. data/lib/ddtrace/contrib/presto/instrumentation.rb +2 -1
  253. data/lib/ddtrace/contrib/presto/integration.rb +1 -0
  254. data/lib/ddtrace/contrib/presto/patcher.rb +7 -3
  255. data/lib/ddtrace/contrib/qless/configuration/settings.rb +36 -0
  256. data/lib/ddtrace/contrib/qless/ext.rb +21 -0
  257. data/lib/ddtrace/contrib/qless/integration.rb +39 -0
  258. data/lib/ddtrace/contrib/qless/patcher.rb +35 -0
  259. data/lib/ddtrace/contrib/qless/qless_job.rb +74 -0
  260. data/lib/ddtrace/contrib/qless/tracer_cleaner.rb +34 -0
  261. data/lib/ddtrace/contrib/que/configuration/settings.rb +2 -0
  262. data/lib/ddtrace/contrib/que/ext.rb +20 -19
  263. data/lib/ddtrace/contrib/que/integration.rb +1 -0
  264. data/lib/ddtrace/contrib/que/patcher.rb +1 -0
  265. data/lib/ddtrace/contrib/que/tracer.rb +4 -2
  266. data/lib/ddtrace/contrib/racecar/configuration/settings.rb +1 -0
  267. data/lib/ddtrace/contrib/racecar/event.rb +4 -2
  268. data/lib/ddtrace/contrib/racecar/events.rb +1 -0
  269. data/lib/ddtrace/contrib/racecar/events/batch.rb +1 -0
  270. data/lib/ddtrace/contrib/racecar/events/consume.rb +1 -0
  271. data/lib/ddtrace/contrib/racecar/events/message.rb +1 -0
  272. data/lib/ddtrace/contrib/racecar/ext.rb +1 -0
  273. data/lib/ddtrace/contrib/racecar/integration.rb +1 -0
  274. data/lib/ddtrace/contrib/racecar/patcher.rb +1 -0
  275. data/lib/ddtrace/contrib/rack/configuration/settings.rb +4 -3
  276. data/lib/ddtrace/contrib/rack/ext.rb +1 -0
  277. data/lib/ddtrace/contrib/rack/integration.rb +8 -0
  278. data/lib/ddtrace/contrib/rack/middlewares.rb +8 -12
  279. data/lib/ddtrace/contrib/rack/patcher.rb +2 -3
  280. data/lib/ddtrace/contrib/rack/request_queue.rb +7 -1
  281. data/lib/ddtrace/contrib/rails/auto_instrument_railtie.rb +11 -0
  282. data/lib/ddtrace/contrib/rails/configuration/settings.rb +1 -0
  283. data/lib/ddtrace/contrib/rails/ext.rb +1 -0
  284. data/lib/ddtrace/contrib/rails/framework.rb +26 -1
  285. data/lib/ddtrace/contrib/rails/integration.rb +1 -0
  286. data/lib/ddtrace/contrib/rails/log_injection.rb +1 -40
  287. data/lib/ddtrace/contrib/rails/middlewares.rb +1 -0
  288. data/lib/ddtrace/contrib/rails/patcher.rb +29 -8
  289. data/lib/ddtrace/contrib/rails/railtie.rb +1 -0
  290. data/lib/ddtrace/contrib/rails/utils.rb +5 -0
  291. data/lib/ddtrace/contrib/rake/configuration/settings.rb +1 -0
  292. data/lib/ddtrace/contrib/rake/ext.rb +1 -0
  293. data/lib/ddtrace/contrib/rake/instrumentation.rb +6 -3
  294. data/lib/ddtrace/contrib/rake/integration.rb +2 -1
  295. data/lib/ddtrace/contrib/rake/patcher.rb +2 -1
  296. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +15 -5
  297. data/lib/ddtrace/contrib/redis/configuration/settings.rb +6 -0
  298. data/lib/ddtrace/contrib/redis/ext.rb +2 -0
  299. data/lib/ddtrace/contrib/redis/integration.rb +1 -0
  300. data/lib/ddtrace/contrib/redis/patcher.rb +21 -3
  301. data/lib/ddtrace/contrib/redis/quantize.rb +29 -0
  302. data/lib/ddtrace/contrib/redis/tags.rb +6 -1
  303. data/lib/ddtrace/contrib/redis/vendor/LICENSE +20 -0
  304. data/lib/ddtrace/contrib/redis/vendor/resolver.rb +7 -7
  305. data/lib/ddtrace/contrib/registerable.rb +5 -4
  306. data/lib/ddtrace/contrib/registry.rb +3 -2
  307. data/lib/ddtrace/contrib/resque/configuration/settings.rb +19 -1
  308. data/lib/ddtrace/contrib/resque/ext.rb +1 -0
  309. data/lib/ddtrace/contrib/resque/integration.rb +3 -2
  310. data/lib/ddtrace/contrib/resque/patcher.rb +5 -4
  311. data/lib/ddtrace/contrib/resque/resque_job.rb +26 -2
  312. data/lib/ddtrace/contrib/rest_client/configuration/settings.rb +1 -0
  313. data/lib/ddtrace/contrib/rest_client/ext.rb +1 -0
  314. data/lib/ddtrace/contrib/rest_client/integration.rb +1 -0
  315. data/lib/ddtrace/contrib/rest_client/patcher.rb +3 -1
  316. data/lib/ddtrace/contrib/rest_client/request_patch.rb +3 -4
  317. data/lib/ddtrace/contrib/semantic_logger/configuration/settings.rb +19 -0
  318. data/lib/ddtrace/contrib/semantic_logger/ext.rb +11 -0
  319. data/lib/ddtrace/contrib/semantic_logger/instrumentation.rb +43 -0
  320. data/lib/ddtrace/contrib/semantic_logger/integration.rb +48 -0
  321. data/lib/ddtrace/contrib/semantic_logger/patcher.rb +26 -0
  322. data/lib/ddtrace/contrib/sequel/configuration/settings.rb +1 -0
  323. data/lib/ddtrace/contrib/sequel/database.rb +2 -1
  324. data/lib/ddtrace/contrib/sequel/dataset.rb +2 -1
  325. data/lib/ddtrace/contrib/sequel/ext.rb +1 -0
  326. data/lib/ddtrace/contrib/sequel/integration.rb +1 -0
  327. data/lib/ddtrace/contrib/sequel/patcher.rb +3 -2
  328. data/lib/ddtrace/contrib/sequel/utils.rb +6 -6
  329. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +3 -0
  330. data/lib/ddtrace/contrib/shoryuken/ext.rb +1 -0
  331. data/lib/ddtrace/contrib/shoryuken/integration.rb +1 -0
  332. data/lib/ddtrace/contrib/shoryuken/patcher.rb +1 -0
  333. data/lib/ddtrace/contrib/shoryuken/tracer.rb +9 -2
  334. data/lib/ddtrace/contrib/sidekiq/client_tracer.rb +1 -0
  335. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +2 -0
  336. data/lib/ddtrace/contrib/sidekiq/ext.rb +1 -0
  337. data/lib/ddtrace/contrib/sidekiq/integration.rb +1 -0
  338. data/lib/ddtrace/contrib/sidekiq/patcher.rb +1 -0
  339. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +6 -7
  340. data/lib/ddtrace/contrib/sidekiq/tracing.rb +1 -1
  341. data/lib/ddtrace/contrib/sinatra/configuration/settings.rb +1 -0
  342. data/lib/ddtrace/contrib/sinatra/env.rb +2 -3
  343. data/lib/ddtrace/contrib/sinatra/ext.rb +1 -0
  344. data/lib/ddtrace/contrib/sinatra/headers.rb +2 -3
  345. data/lib/ddtrace/contrib/sinatra/integration.rb +1 -0
  346. data/lib/ddtrace/contrib/sinatra/patcher.rb +3 -1
  347. data/lib/ddtrace/contrib/sinatra/tracer.rb +14 -6
  348. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +13 -6
  349. data/lib/ddtrace/contrib/sneakers/configuration/settings.rb +2 -0
  350. data/lib/ddtrace/contrib/sneakers/ext.rb +12 -11
  351. data/lib/ddtrace/contrib/sneakers/integration.rb +1 -0
  352. data/lib/ddtrace/contrib/sneakers/patcher.rb +1 -0
  353. data/lib/ddtrace/contrib/sneakers/tracer.rb +17 -21
  354. data/lib/ddtrace/contrib/status_code_matcher.rb +70 -0
  355. data/lib/ddtrace/contrib/sucker_punch/configuration/settings.rb +1 -0
  356. data/lib/ddtrace/contrib/sucker_punch/exception_handler.rb +5 -6
  357. data/lib/ddtrace/contrib/sucker_punch/ext.rb +1 -0
  358. data/lib/ddtrace/contrib/sucker_punch/instrumentation.rb +5 -0
  359. data/lib/ddtrace/contrib/sucker_punch/integration.rb +1 -0
  360. data/lib/ddtrace/contrib/sucker_punch/patcher.rb +2 -0
  361. data/lib/ddtrace/correlation.rb +3 -1
  362. data/lib/ddtrace/diagnostics/environment_logger.rb +9 -7
  363. data/lib/ddtrace/diagnostics/health.rb +1 -0
  364. data/lib/ddtrace/distributed_tracing/headers/b3.rb +1 -0
  365. data/lib/ddtrace/distributed_tracing/headers/b3_single.rb +1 -0
  366. data/lib/ddtrace/distributed_tracing/headers/datadog.rb +1 -0
  367. data/lib/ddtrace/distributed_tracing/headers/headers.rb +2 -0
  368. data/lib/ddtrace/distributed_tracing/headers/helpers.rb +2 -3
  369. data/lib/ddtrace/encoding.rb +3 -0
  370. data/lib/ddtrace/error.rb +78 -8
  371. data/lib/ddtrace/event.rb +1 -0
  372. data/lib/ddtrace/ext/analytics.rb +1 -0
  373. data/lib/ddtrace/ext/app_types.rb +1 -0
  374. data/lib/ddtrace/ext/correlation.rb +1 -0
  375. data/lib/ddtrace/ext/diagnostics.rb +1 -0
  376. data/lib/ddtrace/ext/distributed.rb +9 -2
  377. data/lib/ddtrace/ext/environment.rb +8 -0
  378. data/lib/ddtrace/ext/errors.rb +1 -0
  379. data/lib/ddtrace/ext/forced_tracing.rb +1 -0
  380. data/lib/ddtrace/ext/git.rb +20 -0
  381. data/lib/ddtrace/ext/http.rb +2 -1
  382. data/lib/ddtrace/ext/integration.rb +1 -0
  383. data/lib/ddtrace/ext/manual_tracing.rb +1 -0
  384. data/lib/ddtrace/ext/metrics.rb +1 -0
  385. data/lib/ddtrace/ext/net.rb +1 -0
  386. data/lib/ddtrace/ext/priority.rb +1 -0
  387. data/lib/ddtrace/ext/profiling.rb +56 -0
  388. data/lib/ddtrace/ext/runtime.rb +2 -7
  389. data/lib/ddtrace/ext/sampling.rb +1 -0
  390. data/lib/ddtrace/ext/sql.rb +1 -0
  391. data/lib/ddtrace/ext/test.rb +9 -0
  392. data/lib/ddtrace/ext/transport.rb +3 -0
  393. data/lib/ddtrace/forced_tracing.rb +3 -0
  394. data/lib/ddtrace/logger.rb +2 -1
  395. data/lib/ddtrace/metrics.rb +84 -24
  396. data/lib/ddtrace/opentelemetry/extensions.rb +2 -1
  397. data/lib/ddtrace/opentelemetry/span.rb +1 -0
  398. data/lib/ddtrace/opentracer.rb +21 -39
  399. data/lib/ddtrace/opentracer/binary_propagator.rb +1 -0
  400. data/lib/ddtrace/opentracer/carrier.rb +1 -0
  401. data/lib/ddtrace/opentracer/distributed_headers.rb +4 -0
  402. data/lib/ddtrace/opentracer/global_tracer.rb +1 -0
  403. data/lib/ddtrace/opentracer/propagator.rb +1 -0
  404. data/lib/ddtrace/opentracer/rack_propagator.rb +1 -0
  405. data/lib/ddtrace/opentracer/scope.rb +1 -0
  406. data/lib/ddtrace/opentracer/scope_manager.rb +1 -0
  407. data/lib/ddtrace/opentracer/span.rb +3 -6
  408. data/lib/ddtrace/opentracer/span_context.rb +1 -0
  409. data/lib/ddtrace/opentracer/span_context_factory.rb +1 -0
  410. data/lib/ddtrace/opentracer/text_map_propagator.rb +1 -0
  411. data/lib/ddtrace/opentracer/thread_local_scope.rb +2 -0
  412. data/lib/ddtrace/opentracer/thread_local_scope_manager.rb +1 -0
  413. data/lib/ddtrace/opentracer/tracer.rb +1 -0
  414. data/lib/ddtrace/patcher.rb +28 -6
  415. data/lib/ddtrace/pin.rb +9 -61
  416. data/lib/ddtrace/pipeline.rb +1 -0
  417. data/lib/ddtrace/pipeline/span_filter.rb +2 -1
  418. data/lib/ddtrace/pipeline/span_processor.rb +1 -0
  419. data/lib/ddtrace/profiling.rb +151 -0
  420. data/lib/ddtrace/profiling/backtrace_location.rb +33 -0
  421. data/lib/ddtrace/profiling/buffer.rb +42 -0
  422. data/lib/ddtrace/profiling/collectors/stack.rb +257 -0
  423. data/lib/ddtrace/profiling/encoding/profile.rb +38 -0
  424. data/lib/ddtrace/profiling/event.rb +14 -0
  425. data/lib/ddtrace/profiling/events/stack.rb +81 -0
  426. data/lib/ddtrace/profiling/exporter.rb +24 -0
  427. data/lib/ddtrace/profiling/ext/cpu.rb +67 -0
  428. data/lib/ddtrace/profiling/ext/cthread.rb +156 -0
  429. data/lib/ddtrace/profiling/ext/forking.rb +98 -0
  430. data/lib/ddtrace/profiling/flush.rb +44 -0
  431. data/lib/ddtrace/profiling/native_extension.rb +18 -0
  432. data/lib/ddtrace/profiling/pprof/builder.rb +120 -0
  433. data/lib/ddtrace/profiling/pprof/converter.rb +90 -0
  434. data/lib/ddtrace/profiling/pprof/message_set.rb +15 -0
  435. data/lib/ddtrace/profiling/pprof/payload.rb +19 -0
  436. data/lib/ddtrace/profiling/pprof/pprof.proto +212 -0
  437. data/lib/ddtrace/profiling/pprof/pprof_pb.rb +82 -0
  438. data/lib/ddtrace/profiling/pprof/stack_sample.rb +117 -0
  439. data/lib/ddtrace/profiling/pprof/string_table.rb +11 -0
  440. data/lib/ddtrace/profiling/pprof/template.rb +119 -0
  441. data/lib/ddtrace/profiling/preload.rb +4 -0
  442. data/lib/ddtrace/profiling/profiler.rb +31 -0
  443. data/lib/ddtrace/profiling/recorder.rb +96 -0
  444. data/lib/ddtrace/profiling/scheduler.rb +134 -0
  445. data/lib/ddtrace/profiling/tasks/setup.rb +82 -0
  446. data/lib/ddtrace/profiling/trace_identifiers/ddtrace.rb +41 -0
  447. data/lib/ddtrace/profiling/trace_identifiers/helper.rb +46 -0
  448. data/lib/ddtrace/profiling/transport/client.rb +15 -0
  449. data/lib/ddtrace/profiling/transport/http.rb +120 -0
  450. data/lib/ddtrace/profiling/transport/http/api.rb +44 -0
  451. data/lib/ddtrace/profiling/transport/http/api/endpoint.rb +101 -0
  452. data/lib/ddtrace/profiling/transport/http/api/instance.rb +37 -0
  453. data/lib/ddtrace/profiling/transport/http/api/spec.rb +41 -0
  454. data/lib/ddtrace/profiling/transport/http/builder.rb +29 -0
  455. data/lib/ddtrace/profiling/transport/http/client.rb +34 -0
  456. data/lib/ddtrace/profiling/transport/http/response.rb +22 -0
  457. data/lib/ddtrace/profiling/transport/io.rb +31 -0
  458. data/lib/ddtrace/profiling/transport/io/client.rb +28 -0
  459. data/lib/ddtrace/profiling/transport/io/response.rb +17 -0
  460. data/lib/ddtrace/profiling/transport/parcel.rb +18 -0
  461. data/lib/ddtrace/profiling/transport/request.rb +16 -0
  462. data/lib/ddtrace/profiling/transport/response.rb +9 -0
  463. data/lib/ddtrace/propagation/grpc_propagator.rb +18 -4
  464. data/lib/ddtrace/propagation/http_propagator.rb +18 -2
  465. data/lib/ddtrace/quantization/hash.rb +1 -0
  466. data/lib/ddtrace/quantization/http.rb +4 -0
  467. data/lib/ddtrace/runtime/metrics.rb +21 -14
  468. data/lib/ddtrace/sampler.rb +2 -1
  469. data/lib/ddtrace/sampling.rb +1 -0
  470. data/lib/ddtrace/sampling/matcher.rb +1 -0
  471. data/lib/ddtrace/sampling/rate_limiter.rb +66 -16
  472. data/lib/ddtrace/sampling/rule.rb +2 -1
  473. data/lib/ddtrace/sampling/rule_sampler.rb +6 -10
  474. data/lib/ddtrace/span.rb +44 -19
  475. data/lib/ddtrace/sync_writer.rb +17 -15
  476. data/lib/ddtrace/tasks/exec.rb +47 -0
  477. data/lib/ddtrace/tasks/help.rb +15 -0
  478. data/lib/ddtrace/tracer.rb +68 -57
  479. data/lib/ddtrace/transport/http.rb +51 -38
  480. data/lib/ddtrace/transport/http/adapters/net.rb +28 -8
  481. data/lib/ddtrace/transport/http/adapters/registry.rb +2 -0
  482. data/lib/ddtrace/transport/http/adapters/test.rb +1 -0
  483. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +3 -4
  484. data/lib/ddtrace/transport/http/api.rb +1 -0
  485. data/lib/ddtrace/transport/http/api/endpoint.rb +1 -0
  486. data/lib/ddtrace/transport/http/api/fallbacks.rb +1 -0
  487. data/lib/ddtrace/transport/http/api/instance.rb +1 -0
  488. data/lib/ddtrace/transport/http/api/map.rb +1 -0
  489. data/lib/ddtrace/transport/http/api/spec.rb +1 -0
  490. data/lib/ddtrace/transport/http/builder.rb +8 -1
  491. data/lib/ddtrace/transport/http/client.rb +3 -1
  492. data/lib/ddtrace/transport/http/env.rb +9 -0
  493. data/lib/ddtrace/transport/http/response.rb +1 -0
  494. data/lib/ddtrace/transport/http/statistics.rb +3 -2
  495. data/lib/ddtrace/transport/http/traces.rb +6 -6
  496. data/lib/ddtrace/transport/io.rb +2 -1
  497. data/lib/ddtrace/transport/io/client.rb +17 -9
  498. data/lib/ddtrace/transport/io/response.rb +2 -3
  499. data/lib/ddtrace/transport/io/traces.rb +10 -1
  500. data/lib/ddtrace/transport/parcel.rb +7 -0
  501. data/lib/ddtrace/transport/request.rb +1 -0
  502. data/lib/ddtrace/transport/response.rb +1 -0
  503. data/lib/ddtrace/transport/statistics.rb +1 -0
  504. data/lib/ddtrace/transport/traces.rb +21 -3
  505. data/lib/ddtrace/utils.rb +23 -12
  506. data/lib/ddtrace/utils/compression.rb +28 -0
  507. data/lib/ddtrace/utils/database.rb +1 -0
  508. data/lib/ddtrace/utils/forking.rb +53 -0
  509. data/lib/ddtrace/utils/object_set.rb +40 -0
  510. data/lib/ddtrace/utils/only_once.rb +41 -0
  511. data/lib/ddtrace/utils/sequence.rb +18 -0
  512. data/lib/ddtrace/utils/string_table.rb +46 -0
  513. data/lib/ddtrace/utils/time.rb +34 -2
  514. data/lib/ddtrace/vendor/active_record/MIT-LICENSE +20 -0
  515. data/lib/ddtrace/vendor/active_record/connection_specification.rb +1 -0
  516. data/lib/ddtrace/vendor/multipart-post/LICENSE +11 -0
  517. data/lib/ddtrace/vendor/multipart-post/multipart.rb +13 -0
  518. data/lib/ddtrace/vendor/multipart-post/multipart/post.rb +9 -0
  519. data/lib/ddtrace/vendor/multipart-post/multipart/post/composite_read_io.rb +117 -0
  520. data/lib/ddtrace/vendor/multipart-post/multipart/post/multipartable.rb +58 -0
  521. data/lib/ddtrace/vendor/multipart-post/multipart/post/parts.rb +136 -0
  522. data/lib/ddtrace/vendor/multipart-post/multipart/post/version.rb +10 -0
  523. data/lib/ddtrace/vendor/multipart-post/net/http/post/multipart.rb +33 -0
  524. data/lib/ddtrace/version.rb +15 -2
  525. data/lib/ddtrace/worker.rb +1 -0
  526. data/lib/ddtrace/workers.rb +8 -2
  527. data/lib/ddtrace/workers/async.rb +15 -5
  528. data/lib/ddtrace/workers/loop.rb +32 -5
  529. data/lib/ddtrace/workers/polling.rb +13 -5
  530. data/lib/ddtrace/workers/queue.rb +3 -1
  531. data/lib/ddtrace/workers/runtime_metrics.rb +22 -4
  532. data/lib/ddtrace/workers/trace_writer.rb +14 -16
  533. data/lib/ddtrace/writer.rb +33 -8
  534. metadata +149 -388
  535. data/.circleci/config.yml +0 -548
  536. data/.circleci/images/primary/Dockerfile-2.0.0 +0 -73
  537. data/.circleci/images/primary/Dockerfile-2.1.10 +0 -73
  538. data/.circleci/images/primary/Dockerfile-2.2.10 +0 -73
  539. data/.circleci/images/primary/Dockerfile-2.3.8 +0 -75
  540. data/.circleci/images/primary/Dockerfile-2.4.6 +0 -73
  541. data/.circleci/images/primary/Dockerfile-2.5.6 +0 -73
  542. data/.circleci/images/primary/Dockerfile-2.6.4 +0 -73
  543. data/.circleci/images/primary/Dockerfile-2.7.0 +0 -73
  544. data/.circleci/images/primary/Dockerfile-jruby-9.2 +0 -77
  545. data/.dockerignore +0 -1
  546. data/.env +0 -26
  547. data/.github/CODEOWNERS +0 -1
  548. data/.gitlab-ci.yml +0 -27
  549. data/.rspec +0 -1
  550. data/.rubocop.yml +0 -85
  551. data/.simplecov +0 -38
  552. data/Appraisals +0 -1071
  553. data/Gemfile +0 -7
  554. data/Rakefile +0 -768
  555. data/benchmarks/postgres_database.yml +0 -9
  556. data/benchmarks/sidekiq_test.rb +0 -154
  557. data/docker-compose.yml +0 -370
  558. data/lib/ddtrace/augmentation.rb +0 -13
  559. data/lib/ddtrace/augmentation/method_wrapper.rb +0 -20
  560. data/lib/ddtrace/augmentation/method_wrapping.rb +0 -38
  561. data/lib/ddtrace/augmentation/shim.rb +0 -102
  562. data/lib/ddtrace/environment.rb +0 -41
  563. data/lib/ddtrace/monkey.rb +0 -58
  564. data/lib/ddtrace/runtime/cgroup.rb +0 -44
  565. data/lib/ddtrace/runtime/class_count.rb +0 -17
  566. data/lib/ddtrace/runtime/container.rb +0 -73
  567. data/lib/ddtrace/runtime/gc.rb +0 -16
  568. data/lib/ddtrace/runtime/identity.rb +0 -41
  569. data/lib/ddtrace/runtime/object_space.rb +0 -19
  570. data/lib/ddtrace/runtime/socket.rb +0 -14
  571. data/lib/ddtrace/runtime/thread_count.rb +0 -16
  572. data/tasks/release_gem.rake +0 -28
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0bbda933f09b8f29d20edc57d6825f6491158161b7e5164252deb006931e0e7d
4
- data.tar.gz: b3aaa6718e835fbfe97db64faa62f82b2f3ff76aefadb53cb27fb9b236b842e3
3
+ metadata.gz: 8f5ee0735d05ecdadc38bbc0978a2087141d136f31b1848845518d2086f877d2
4
+ data.tar.gz: dd677af05b413d5593440aedca7b36dc9aba0c9ba08e9213eb8eb9c5443cb2d9
5
5
  SHA512:
6
- metadata.gz: 60d239de8c63091ede6a810127ad580629428b96181982cf543e77f45a89087dfdd238b98418fe72f0e27ebefae6d5f730208c5f6149541dfe1d1c6923579826
7
- data.tar.gz: 1d3657bc28458d0b50d0c2c68d3397b20ef6b2d4c2a0adf2ec834f701fd2c7701bcdac7f6fbce913743482e5eb2492a6409baf7c9c37c3467677ead705fd752e
6
+ metadata.gz: 9f964c58615348135d915933cea46dac145c1266fa7d573fd8609c7eaf13be8667a8917af8ad5d93340935c00d2dc4bcd89adc7e14db7667eadf005448594f91
7
+ data.tar.gz: 23ee7b6812d641a0f6bdc65e43baac6f7f17cc68ca2c07a42e87158400a9b97944aa0f6416c2002fdbbfd0e00f92b1e0a6907de7ee3df39e0840f408a6ec1aec
data/.editorconfig ADDED
@@ -0,0 +1,22 @@
1
+ # EditorConfig is awesome: https://EditorConfig.org
2
+
3
+ # top-most EditorConfig file
4
+ root = true
5
+
6
+ # Unix-style newlines with a newline ending every file
7
+ [*]
8
+ end_of_line = lf
9
+ insert_final_newline = true
10
+ trim_trailing_whitespace = true
11
+
12
+ [*.h]
13
+ indent_style = space
14
+ indent_size = 2
15
+
16
+ [*.c]
17
+ indent_style = space
18
+ indent_size = 2
19
+
20
+ [*.yml]
21
+ indent_style = space
22
+ indent_size = 2
data/.gitignore CHANGED
@@ -55,7 +55,13 @@ build-iPhoneSimulator/
55
55
 
56
56
  # lock files
57
57
  Gemfile.lock
58
- gemfiles/*
59
58
 
60
59
  # bundle config
61
60
  gemfiles/.bundle
61
+
62
+ # Native extension binaries
63
+ lib/*.bundle
64
+ lib/*.so
65
+
66
+ # Extra file kept by sorbet for debugging usage, as documented in https://sorbet.org/docs/adopting#step-6-source-control
67
+ sorbet/rbi/hidden-definitions/errors.txt
data/CHANGELOG.md CHANGED
@@ -2,6 +2,389 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.52.0] - 2021-08-09
6
+
7
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.52.0
8
+
9
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
10
+
11
+ ### Added
12
+
13
+ - Add Sorbet typechecker to dd-trace-rb ([#1607][])
14
+
15
+ Note that no inline type signatures were added, to avoid a hard dependency on sorbet.
16
+
17
+ - Profiler: Add support for annotating profiler stacks with the resource of the active web trace, if any ([#1623][])
18
+
19
+ Note that this data is not yet visible on the profiling interface.
20
+
21
+ - Add error_handler option to GRPC tracer configuration ([#1583][]) ([@fteem][])
22
+ - User-friendly handling of slow submissions on shutdown ([#1601][])
23
+ - Profiler: Add experimental toggle to disable the profiling native extension ([#1594][])
24
+ - Profiler: Bootstrap profiling native extension ([#1584][])
25
+
26
+ ### Changed
27
+
28
+ - Profiler: Profiling data is no longer reported when there's less than 1 second of data to report ([#1630][])
29
+ - Move Grape span resource setting to beginning of request ([#1629][])
30
+ - Set resource in Sinatra spans at the beginning of requests, and delay setting fallback resource to end of requests ([#1628][])
31
+ - Move Rails span resource setting to beginning of request ([#1626][])
32
+ - Make registry a global constant repository ([#1572][])
33
+ - Profiler: Remove automatic agentless support ([#1590][])
34
+
35
+ ### Fixed
36
+
37
+ - Profiler: Fix CPU-time accounting in Profiling when fibers are used ([#1636][])
38
+ - Don't set peer.service tag on grpc.server spans ([#1632][])
39
+ - CI-App: Fix GitHub actions environment variable extraction ([#1622][])
40
+ - Additional Faraday 1.4+ cgroup parsing formats ([#1595][])
41
+ - Avoid shipping development cruft files in gem releases ([#1585][])
42
+
43
+ ## [0.51.1] - 2021-07-13
44
+
45
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.1
46
+
47
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
48
+
49
+ ### Fixed
50
+
51
+ - AWS-SDK instrumentation without `aws-sdk-s3` ([#1592][])
52
+
53
+ ## [0.51.0] - 2021-07-12
54
+
55
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.0
56
+
57
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
58
+
59
+ ### Added
60
+
61
+ - Semantic Logger trace correlation injection ([#1566][])
62
+ - New and improved Lograge trace correlation injection ([#1555][])
63
+ - Profiler: Start profiler on `ddtrace/auto_instrument`
64
+ - CI-App: Add runtime and OS information ([#1587][])
65
+ - CI-App: Read metadata from local git repository ([#1561][])
66
+
67
+ ### Changed
68
+
69
+ - Rename `Datadog::Runtime` to `Datadog::Core::Environment` ([#1570][])
70
+
71
+ As we prepare the `Datadog` Ruby namespace to better accommodate new products, we are moving a few internal modules to a different location to avoid conflicts.
72
+
73
+ None of the affected files are exposed publicly in our documentation, and they are only expected to be used internally and may change at any time, even between patch releases.
74
+
75
+ * The following modules have been moved:
76
+ ```ruby
77
+ Datadog::Runtime::Cgroup -> Datadog::Core::Environment::Cgroup
78
+ Datadog::Runtime::ClassCount -> Datadog::Core::Environment::ClassCount
79
+ Datadog::Runtime::Container -> Datadog::Core::Environment::Container
80
+ Datadog::Runtime::GC -> Datadog::Core::Environment::GC
81
+ Datadog::Runtime::Identity -> Datadog::Core::Environment::Identity
82
+ Datadog::Runtime::ObjectSpace -> Datadog::Core::Environment::ObjectSpace
83
+ Datadog::Runtime::Socket -> Datadog::Core::Environment::Socket
84
+ Datadog::Runtime::ThreadCount -> Datadog::Core::Environment::ThreadCount
85
+ ```
86
+ * Most constants from `Datadog::Ext::Runtime` have been moved to a new module: `Datadog::Core::Environment::Ext`.
87
+ - Skip CPU time instrumentation if logging gem is detected ([#1557][])
88
+
89
+ ### Fixed
90
+
91
+ - Initialize `dogstatsd-ruby` in single threaded mode ([#1576][])
92
+
93
+ This should alleviate any existing issues with `dogstatsd-ruby` resource leaks.
94
+
95
+ - Do not use configured `dogstatsd-ruby` instance when it's an incompatible version ([#1560][])
96
+ - Ensure tags with special Datadog processing are consistently serialized ([#1556][])
97
+ - Profiler: NameError during initialization ([#1552][])
98
+
99
+ ### Refactored
100
+ - Improvements to test suite & CI ([#1586][])
101
+ - Improvements to documentation ([#1397][])
102
+
103
+ ## [0.50.0] - 2021-06-07
104
+
105
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.50.0
106
+
107
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.49.0...v0.50.0
108
+
109
+ ### Added
110
+
111
+ - Add warning, update documentation, for incompatible dogstastd-ruby version ([#1544][][#1533][])
112
+ - Add CI mode and Test mode feature ([#1504][])
113
+ - Add Gem.loaded_specs fallback behavior if protobuf or dogstatsd-ruby already loaded([#1506][][#1510][])
114
+
115
+ ### Changed
116
+
117
+ - Declare EOL for Ruby 2.0 support ([#1534][])
118
+ - Rename Thread#native_thread_id to #pthread_thread_id to avoid conflict with Ruby 3.1 ([#1537][])
119
+
120
+ ### Fixed
121
+
122
+ - Fix tracer ignoring value for service tag (service.name) in DD_TAGS ([#1543][])
123
+ - Fix nested error reporting to correctly walk clause chain ([#1535][])
124
+ - Fix AWS integration to prevent S3 URL presigning from generating a remote request span ([#1494][])
125
+ - Fix backtrace handling of exception classes that return nil message ([#1500][]) ([@masato-hi][])
126
+
127
+ ### Refactored
128
+
129
+ - Cleanup Ruby 2.0 Code (dropping Ruby 2.0 support) ([#1529][][#1523][][#1524][][#1509][][#1507][][#1503][][#1502][])
130
+
131
+ ## [0.49.0] - 2021-05-12
132
+
133
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.49.0
134
+
135
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.48.0...v0.49.0
136
+
137
+ ### Added
138
+
139
+ - Add cause to error stack trace ([#1472][])
140
+
141
+ ### Changed
142
+
143
+ ### Fixed
144
+
145
+ - Prevent double initialization when auto instrumenting non-Rails applications ([#1497][])
146
+ - Support kwargs in Ruby 3.0 for sucker_punch ([#1495][]) ([@lloeki][])
147
+ - Fargate fixes and Container parsing for CGroups ([#1487][][#1480][][#1475][])
148
+ - Fix ActionPack instrumentation `#starts_with?` error([#1489][])
149
+ - Doc fixes ([#1473][]) ([@kexoth][])
150
+
151
+ ### Refactored
152
+
153
+ ## [0.48.0] - 2021-04-19
154
+
155
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.48.0
156
+
157
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
158
+
159
+ ### Added
160
+
161
+ - Makara support with ActiveRecord ([#1447][])
162
+ - `tag_body` configuration for Shoryuken ([#1449][]) ([@gkampjes][])
163
+
164
+ ### Changed
165
+
166
+ - Add deprecation warning for Ruby 2.0 support ([#1441][])
167
+
168
+ Support for Ruby 2.0 will be available up to release `0.49.x`, and dropped from release `0.50.0` and greater.
169
+ Users are welcome to continue using version `< 0.50.0` for their Ruby 2.0 deployments going forward.
170
+
171
+ - Auto instrument Resque workers by default ([#1400][])
172
+
173
+ ### Fixed
174
+
175
+ - Ensure DD_TRACE_SAMPLE_RATE enables full RuleSampler ([#1416][])
176
+ - Fix Fargate 1.4 container ID not being read ([#1457][])
177
+ - Correctly close all StatsD clients ([#1429][])
178
+
179
+ ### Refactored
180
+ - Improvements to test suite & CI ([#1421][], [#1435][], [#1445][], [#1453][], [#1456][], [#1461][])
181
+ - Improvements to documentation ([#1455][])
182
+
183
+ ## [0.47.0] - 2021-03-29
184
+
185
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.47.0
186
+
187
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
188
+
189
+ ### Added
190
+
191
+ - Document support for httpx integration ([#1396][]) ([@HoneyryderChuck][])
192
+ - Schemas to list of supported AWS services ([#1415][]) ([@tomgi][])
193
+ - Branch test coverage report ([#1343][])
194
+
195
+ ### Changed
196
+
197
+ - **BREAKING** Separate Resolver configuration and resolution steps ([#1319][])
198
+
199
+ ### ActiveRecord `describes` configuration now supports partial matching
200
+
201
+ Partial matching of connection fields (adapter, username, host, port, database) is now allowed. Previously, only an exact match of connections fields would be considered matching. This should help greatly simplify database configuration matching, as you will only need to provide enough fields to correctly separate your distinct database connections.
202
+
203
+ If you have a `c.use active_record, describe:` statement in your application that is currently not matching any connections, you might start seeing them match after this release.
204
+
205
+ `c.use active_record, describe:` statements that are currently matching a connection will continue to match that same connection.
206
+
207
+ You can refer to the [expanded ActiveSupport documentation for details on how to use the new partial matchers and configuration code examples](https://github.com/DataDog/dd-trace-rb/blob/0794be4cd455caf32e7a9c8f79d80a4b77c4087a/docs/GettingStarted.md#active-record).
208
+
209
+ ### `Datadog::Contrib::Configuration::Resolver` interface changed
210
+
211
+ The interface for `Datadog::Contrib::Configuration::Resolver` has changed: custom configuration resolvers that inherit from ``Datadog::Contrib::Configuration::Resolver`` will need be changed to fulfill the new interface. See [code documentation for `Datadog::Contrib::Configuration::Resolver` for specific API requirements](https://github.com/DataDog/dd-trace-rb/blob/0794be4cd455caf32e7a9c8f79d80a4b77c4087a/lib/ddtrace/contrib/configuration/resolver.rb).
212
+
213
+
214
+ - Remove type check from ThreadLocalContext#local. ([#1399][]) ([@orekyuu][])
215
+
216
+ ### Fixed
217
+
218
+ - Support for JRuby 9.2.0.0 ([#1409][])
219
+ - Failed integration message ([#1394][]) ([@e1senh0rn][])
220
+ - Addressed "warning: instance variable [@components][] not initialized" ([#1419][])
221
+ - Close /proc/self/cgroup file after reading ([#1414][])
222
+ - Improve internal "only once" behavior across the tracer ([#1398][])
223
+ - Increase thread-safety during tracer initialization ([#1418][])
224
+
225
+ ### Refactored
226
+
227
+ - Use MINIMUM_VERSION in resque compatible? check ([#1426][]) ([@mriddle][])
228
+ - Lint fixes for Rubocop 1.12.0 release ([#1430][])
229
+ - Internal tracer improvements ([#1403][])
230
+ - Improvements to test suite & CI ([#1334][], [#1379][], [#1393][], [#1406][], [#1408][], [#1412][], [#1417][], [#1420][], [#1422][], [#1427][], [#1428][], [#1431][], [#1432][])
231
+
232
+ ## [0.46.0] - 2021-03-03
233
+
234
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.46.0
235
+
236
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
237
+
238
+ ### Added
239
+
240
+ - Add EventBridge to supported AWS services ([#1368][]) ([@tomgi][])
241
+ - Add `time_now_provider` configuration option ([#1224][])
242
+ - This new option allows the span `start_time` and `end_time` to be configured in environments that change the default time provider, like with *Timecop*. More information in the [official documentation](https://docs.datadoghq.com/tracing/setup_overview/setup/ruby/#tracer-settings).
243
+ - Add name to background threads created by ddtrace ([#1366][])
244
+
245
+ ### Changed
246
+
247
+ - Rework RSpec instrumentation as separate traces for each test ([#1381][])
248
+
249
+ ### Fixed
250
+
251
+ - ArgumentError: wrong number of arguments (given 2, expected 0) due to concurrent `require` ([#1306][], [#1354][]) ([@EvNomad][])
252
+ - Fix Rails' deprecation warnings ([#1352][])
253
+ - Fully populate Rake span fields on exceptions ([#1377][])
254
+ - Fix a typo in `httpclient` integration ([#1365][]) ([@y-yagi][])
255
+ - Add missing license files for vendor'd code ([#1346][])
256
+
257
+ ### Refactored
258
+
259
+ - Improvements to test suite & CI ([#1277][], [#1305][], [#1336][], [#1350][], [#1353][], [#1357][], [#1367][], [#1369][], [#1370][], [#1371][], [#1374][], [#1380][])
260
+ - Improvements to documentation ([#1332][])
261
+
262
+ ### Removed
263
+
264
+ - Remove deprecated Datadog::Monkey ([#1341][])
265
+ - Remove deprecated Datadog::DeprecatedPin ([#1342][])
266
+ - Remove unused Shim/MethodWrapper/MethodWrapping ([#1347][])
267
+ - Remove APP_ANALYTICS from tests instrumentation ([#1378][]) ([@AdrianLC][])
268
+
269
+ ## [0.45.0] - 2021-01-26
270
+
271
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.45.0
272
+
273
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
274
+
275
+ ### Added
276
+
277
+ - Option to auto enable all instrumentations ([#1260][])
278
+ - httpclient support ([#1311][]) ([@agrobbin][])
279
+
280
+ ### Changed
281
+
282
+ - Promote request_queuing out of experimental ([#1320][])
283
+ - Safeguards around distributed HTTP propagator ([#1304][])
284
+ - Improvements to test integrations ([#1291][], [#1303][], [#1307][])
285
+
286
+ ### Refactored
287
+
288
+ - Direct object_id lookup for ActiveRecord connections ([#1317][])
289
+ - Avoid multiple parsing of Ethon URIs ([#1302][]) ([@callumj][])
290
+ - Improvements to test suite & CI ([#1309][], [#1318][], [#1321][], [#1323][], [#1325][], [#1331][])
291
+ - Improvements to documentation ([#1326][])
292
+
293
+ ## [0.44.0] - 2021-01-06
294
+
295
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.44.0
296
+
297
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
298
+
299
+ ### Added
300
+
301
+ - Ruby 3.0 support ([#1281][], [#1296][], [#1298][])
302
+ - Rails 6.1 support ([#1295][])
303
+ - Qless integration ([#1237][]) ([@sco11morgan][])
304
+ - AWS Textract service to AWS integration ([#1270][]) ([@Sticksword][])
305
+ - Ability to disable Redis argument capture ([#1276][]) ([@callumj][])
306
+ - Upload coverage report to Codecov ([#1289][])
307
+
308
+ ### Changed
309
+
310
+ - Reduce Runtime Metrics frequency to every 10 seconds ([#1269][])
311
+
312
+ ### Fixed
313
+
314
+ - Disambiguate resource names for Grape endpoints with shared paths ([#1279][]) ([@pzaich][])
315
+ - Remove invalid Jenkins URL from CI integration ([#1283][])
316
+
317
+ ### Refactored
318
+
319
+ - Reduce memory allocation when unnecessary ([#1273][], [#1275][]) ([@callumj][])
320
+ - Improvements to test suite & CI ([#847][], [#1256][], [#1257][], [#1266][], [#1272][], [#1277][], [#1278][], [#1284][], [#1286][], [#1287][], [#1293][], [#1299][])
321
+ - Improvements to documentation ([#1262][], [#1263][], [#1264][], [#1267][], [#1268][], [#1297][])
322
+
323
+ ## [0.43.0] - 2020-11-18
324
+
325
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.43.0
326
+
327
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
328
+
329
+ ### Added
330
+
331
+ - Background job custom error handlers ([#1212][]) ([@norbertnytko][])
332
+ - Add "multi" methods instrumentation for Rails cache ([#1217][]) ([@michaelkl][])
333
+ - Support custom error status codes for Grape ([#1238][])
334
+ - Cucumber integration ([#1216][])
335
+ - RSpec integration ([#1234][])
336
+ - Validation to `:on_error` argument on `Datadog::Tracer#trace` ([#1220][])
337
+
338
+ ### Changed
339
+
340
+ - Update `TokenBucket#effective_rate` calculation ([#1236][])
341
+
342
+ ### Fixed
343
+
344
+ - Avoid writer reinitialization during shutdown ([#1235][], [#1248][])
345
+ - Fix configuration multiplexing ([#1204][], [#1227][])
346
+ - Fix misnamed B3 distributed headers ([#1226][], [#1229][])
347
+ - Correct span type for AWS SDK ([#1233][])
348
+ - Correct span type for internal Pin on HTTP clients ([#1239][])
349
+ - Reset trace context after fork ([#1225][])
350
+
351
+ ### Refactored
352
+
353
+ - Improvements to test suite ([#1232][], [#1244][])
354
+ - Improvements to documentation ([#1243][], [#1218][]) ([@cjford][])
355
+
356
+ ### Removed
357
+
358
+ ## [0.42.0] - 2020-10-21
359
+
360
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
361
+
362
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
363
+
364
+ ### Added
365
+
366
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
367
+
368
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
369
+
370
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
371
+
372
+ - Access active correlation by Thread ([#1200][])
373
+
374
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
375
+
376
+ ### Changed
377
+
378
+ ### Fixed
379
+
380
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
381
+
382
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
383
+
384
+ ### Refactored
385
+
386
+ - Refactor Trace buffer into multiple components ([#1195][])
387
+
5
388
  ## [0.41.0] - 2020-09-30
6
389
 
7
390
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.41.0
@@ -10,29 +393,29 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
10
393
 
11
394
  ### Added
12
395
 
13
- - Improve duration counting using monotonic clock (#424, #1173) (@soulcutter)
396
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
14
397
 
15
398
  ### Changed
16
399
 
17
- - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics (#934, #935, #1180)
400
+ - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics ([#934][], [#935][], [#1180][])
18
401
  - This helps support the way runtime metrics are associated with spans in the UI.
19
- - Faster TraceBuffer for CRuby (#1172)
20
- - Reduce memory usage during gem statup (#1090)
21
- - Reduce memory usage of the HTTP transport (#1165)
402
+ - Faster TraceBuffer for CRuby ([#1172][])
403
+ - Reduce memory usage during gem startup ([#1090][])
404
+ - Reduce memory usage of the HTTP transport ([#1165][])
22
405
 
23
406
  ### Fixed
24
407
 
25
- - Improved prepared statement support for Sequel integrations (#1186)
26
- - Fix Sequel instrumentation when executing literal strings (#1185) (@matchbookmac)
27
- - Remove explicit `Logger` class verification (#1181) (@bartekbsh)
408
+ - Improved prepared statement support for Sequel integrations ([#1186][])
409
+ - Fix Sequel instrumentation when executing literal strings ([#1185][]) ([@matchbookmac][])
410
+ - Remove explicit `Logger` class verification ([#1181][]) ([@bartekbsh][])
28
411
  - This allows users to pass in a custom logger that does not inherit from `Logger` class.
29
- - Correct tracer buffer metric counting (#1182)
30
- - Fix Span#pretty_print for empty duration (#1183)
412
+ - Correct tracer buffer metric counting ([#1182][])
413
+ - Fix Span#pretty_print for empty duration ([#1183][])
31
414
 
32
415
  ### Refactored
33
416
 
34
- - Improvements to test suite & CI (#1179, #1184, #1177, #1178, #1176)
35
- - Reduce generated Span ID range to fit in Fixnum (#1189)
417
+ - Improvements to test suite & CI ([#1179][], [#1184][], [#1177][], [#1178][], [#1176][])
418
+ - Reduce generated Span ID range to fit in Fixnum ([#1189][])
36
419
 
37
420
  ## [0.40.0] - 2020-09-08
38
421
 
@@ -42,19 +425,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
42
425
 
43
426
  ### Added
44
427
 
45
- - Rails `log_injection` option to auto enable log correlation (#1157)
46
- - Que integration (#1141, #1146) (@hs-bguven)
47
- - `Components#startup!` hook (#1151)
48
- - Code coverage report (#1159)
428
+ - Rails `log_injection` option to auto enable log correlation ([#1157][])
429
+ - Que integration ([#1141][], [#1146][]) ([@hs-bguven][])
430
+ - `Components#startup!` hook ([#1151][])
431
+ - Code coverage report ([#1159][])
49
432
  - Every commit now has a `coverage` CI step that contains the code coverage report. This report can be found in the `Artifacts` tab of that CI step, under `coverage/index.html`.
50
433
 
51
434
  ### Changed
52
435
 
53
- - Use a single top level span for Racecar consumers (#1150) (@dasch)
436
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
54
437
 
55
438
  ### Fixed
56
439
 
57
- - Sinatra nested modular applications possibly leaking spans (#1035, #1145)
440
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
58
441
 
59
442
  * **BREAKING** for nested modular Sinatra applications only:
60
443
  ```ruby
@@ -67,7 +450,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
67
450
  ```
68
451
  * Non-breaking for classic applications nor modular non-nested applications.
69
452
 
70
- Fixes issues introduced by #1015 (in 0.35.0), when we first introduced Sinatra support for modular applications.
453
+ Fixes issues introduced by [#1015][] (in 0.35.0), when we first introduced Sinatra support for modular applications.
71
454
 
72
455
  The main issue we had to solve for modular support is how to handle nested applications, as only one application is actually responsible for handling the route. A naive implementation would cause the creation of nested `sinatra.request` spans, even for applications that did not handle the request. This is technically correct, as Sinatra is traversing that middleware, accruing overhead, but that does not aligned with our existing behavior of having a single `sinatra.request` span.
73
456
 
@@ -75,24 +458,24 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
75
458
 
76
459
  This change now address these implementation issues by creating multiple `sinatra.request`, one for each traversed Sinatra application, even non-matching ones. This instrumentation is more correct, but at the cost of being a breaking change for nested modular applications.
77
460
 
78
- Please see #1145 for more information, and example screenshots on how traces for affected applications will look like.
461
+ Please see [#1145][] for more information, and example screenshots on how traces for affected applications will look like.
79
462
 
80
- - Rack/Rails span error propagation with `rescue_from` (#1155, #1162)
81
- - Prevent logger recursion during startup (#1158)
82
- - Race condition on new worker classes (#1154)
463
+ - Rack/Rails span error propagation with `rescue_from` ([#1155][], [#1162][])
464
+ - Prevent logger recursion during startup ([#1158][])
465
+ - Race condition on new worker classes ([#1154][])
83
466
  - These classes represent future work, and not being used at the moment.
84
467
 
85
468
  ### Refactored
86
469
 
87
- - Run CI tests in parallel (#1156)
88
- - Migrate minitest tests to RSpec (#1127, #1128, #1133, #1149, #1152, #1153)
89
- - Improvements to test suite (#1134, #1148, #1163)
90
- - Improvements to documentation (#1138)
470
+ - Run CI tests in parallel ([#1156][])
471
+ - Migrate minitest tests to RSpec ([#1127][], [#1128][], [#1133][], [#1149][], [#1152][], [#1153][])
472
+ - Improvements to test suite ([#1134][], [#1148][], [#1163][])
473
+ - Improvements to documentation ([#1138][])
91
474
 
92
475
  ### Removed
93
476
 
94
- - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life (#1137)**
95
- - GitLab status check when not applicable (#1160)
477
+ - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life ([#1137][])**
478
+ - GitLab status check when not applicable ([#1160][])
96
479
  - Allows for PRs pass all status checks once again. Before this change, a `dd-gitlab/copy_to_s3` check would never leave the "Pending" status. This check tracks the deployment of a commit to an internal testing platform, which currently only happens on `master` branch or when manually triggered internally.
97
480
 
98
481
  ## [0.39.0] - 2020-08-05
@@ -103,26 +486,26 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
103
486
 
104
487
  ### Added
105
488
 
106
- - JRuby 9.2 support (#1126)
107
- - Sneakers integration (#1121) (@janz93)
489
+ - JRuby 9.2 support ([#1126][])
490
+ - Sneakers integration ([#1121][]) ([@janz93][])
108
491
 
109
492
  ### Changed
110
493
 
111
- - Consistent environment variables across languages (#1115)
112
- - Default logger level from WARN to INFO (#1120) (@gingerlime)
113
- - This change also reduces the startup environment log message to INFO level (#1104)
494
+ - Consistent environment variables across languages ([#1115][])
495
+ - Default logger level from WARN to INFO ([#1120][]) ([@gingerlime][])
496
+ - This change also reduces the startup environment log message to INFO level ([#1104][])
114
497
 
115
498
  ### Fixed
116
499
 
117
- - HTTP::StateError on error responses for http.rb (#1116, #1122) (@evan-waters)
118
- - Startup log error when using the test adapter (#1125, #1131) (@benhutton)
119
- - Warning message for Faraday < 1.0 (#1129) (@fledman, @tjwp)
120
- - Propagate Rails error message to Rack span (#1124)
500
+ - HTTP::StateError on error responses for http.rb ([#1116][], [#1122][]) ([@evan-waters][])
501
+ - Startup log error when using the test adapter ([#1125][], [#1131][]) ([@benhutton][])
502
+ - Warning message for Faraday < 1.0 ([#1129][]) ([@fledman][], [@tjwp][])
503
+ - Propagate Rails error message to Rack span ([#1124][])
121
504
 
122
505
  ### Refactored
123
506
 
124
- - Improved ActiveRecord documentation (#1119)
125
- - Improvements to test suite (#1105, #1118)
507
+ - Improved ActiveRecord documentation ([#1119][])
508
+ - Improvements to test suite ([#1105][], [#1118][])
126
509
 
127
510
  ## [0.38.0] - 2020-07-13
128
511
 
@@ -132,28 +515,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
132
515
 
133
516
  ### Added
134
517
 
135
- - http.rb integration (#529, #853)
136
- - Kafka integration (#1070) (@tjwp)
137
- - Span#set_tags (#1081) (@DocX)
138
- - retry_count tag for Sidekiq jobs (#1089) (@elyalvarado)
139
- - Startup environment log (#1104, #1109)
140
- - DD_SITE and DD_API_KEY configuration (#1107)
518
+ - http.rb integration ([#529][], [#853][])
519
+ - Kafka integration ([#1070][]) ([@tjwp][])
520
+ - Span#set_tags ([#1081][]) ([@DocX][])
521
+ - retry_count tag for Sidekiq jobs ([#1089][]) ([@elyalvarado][])
522
+ - Startup environment log ([#1104][], [#1109][])
523
+ - DD_SITE and DD_API_KEY configuration ([#1107][])
141
524
 
142
525
  ### Changed
143
526
 
144
- - Auto instrument Faraday default connection (#1057)
145
- - Sidekiq client middleware is now the same for client and server (#1099) (@drcapulet)
146
- - Single pass SpanFilter (#1071) (@tjwp)
527
+ - Auto instrument Faraday default connection ([#1057][])
528
+ - Sidekiq client middleware is now the same for client and server ([#1099][]) ([@drcapulet][])
529
+ - Single pass SpanFilter ([#1071][]) ([@tjwp][])
147
530
 
148
531
  ### Fixed
149
532
 
150
- - Ensure fatal exceptions are propagated (#1100)
151
- - Respect child_of: option in Tracer#trace (#1082) (@DocX)
152
- - Improve Writer thread safety (#1091) (@fledman)
533
+ - Ensure fatal exceptions are propagated ([#1100][])
534
+ - Respect child_of: option in Tracer#trace ([#1082][]) ([@DocX][])
535
+ - Improve Writer thread safety ([#1091][]) ([@fledman][])
153
536
 
154
537
  ### Refactored
155
538
 
156
- - Improvements to test suite (#1092, #1103)
539
+ - Improvements to test suite ([#1092][], [#1103][])
157
540
 
158
541
  ## [0.37.0] - 2020-06-24
159
542
 
@@ -163,12 +546,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
163
546
 
164
547
  ### Refactored
165
548
 
166
- - Documentation improvements regarding Datadog Agent defaults (#1074) (@cswatt)
167
- - Improvements to test suite (#1043, #1051, #1062, #1075, #1076, #1086)
549
+ - Documentation improvements regarding Datadog Agent defaults ([#1074][]) ([@cswatt][])
550
+ - Improvements to test suite ([#1043][], [#1051][], [#1062][], [#1075][], [#1076][], [#1086][])
168
551
 
169
552
  ### Removed
170
553
 
171
- - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= (#1072, #1079)
554
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
172
555
  - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
173
556
  - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
174
557
 
@@ -178,10 +561,10 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
178
561
 
179
562
  Allowing an integration to set its tracer instance is effectively preventing that integration from dynamically retrieving the current active tracer in the future, thus causing it to record spans in a stale tracer instance. Spans recorded in a stale tracer instance will look disconnected from their parent context.
180
563
 
181
- - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= (#1073)
564
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
182
565
  - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
183
566
  - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
184
- - This removal is a continuation of #1079 above, thus carrying the same rationale.
567
+ - This removal is a continuation of [#1079][] above, thus carrying the same rationale.
185
568
 
186
569
  ### Migration
187
570
 
@@ -202,16 +585,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
202
585
 
203
586
  ### Changed
204
587
 
205
- - Prevent trace components from being re-initialized multiple times during setup (#1037)
588
+ - Prevent trace components from being re-initialized multiple times during setup ([#1037][])
206
589
 
207
590
  ### Fixed
208
591
 
209
- - Allow Rails patching if Railties are loaded (#993, #1054) (@mustela, @bheemreddy181, @vramaiah)
210
- - Pin delegates to default tracer unless configured (#1041)
592
+ - Allow Rails patching if Railties are loaded ([#993][], [#1054][]) ([@mustela][], [@bheemreddy181][], [@vramaiah][])
593
+ - Pin delegates to default tracer unless configured ([#1041][])
211
594
 
212
595
  ### Refactored
213
596
 
214
- - Improvements to test suite (#1027, #1031, #1045, #1046, #1047)
597
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
215
598
 
216
599
  ## [0.35.2] - 2020-05-08
217
600
 
@@ -221,8 +604,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
221
604
 
222
605
  ### Fixed
223
606
 
224
- - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
225
- - `Datadog.configure` forcing all options to eager load (#1032, #1034) (@kelvin-acosta)
607
+ - Internal tracer HTTP requests generating traces ([#1030][], [#1033][]) ([@gingerlime][])
608
+ - `Datadog.configure` forcing all options to eager load ([#1032][], [#1034][]) ([@kelvin-acosta][])
226
609
 
227
610
  ## [0.35.1] - 2020-05-05
228
611
 
@@ -232,7 +615,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
232
615
 
233
616
  ### Fixed
234
617
 
235
- - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
618
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
236
619
 
237
620
  ## [0.35.0] - 2020-04-29
238
621
 
@@ -242,28 +625,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
242
625
 
243
626
  ### Added
244
627
 
245
- - Chunk large trace payloads before flushing (#818, #840)
246
- - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
247
- - active_job support for Resque (#991) (@stefanahman, @psycholein)
248
- - JRuby 9.2 to CI test matrix (#995)
249
- - `TraceWriter` and `AsyncTraceWriter` workers (#986)
250
- - Runtime metrics worker (#988)
628
+ - Chunk large trace payloads before flushing ([#818][], [#840][])
629
+ - Support for Sinatra modular apps ([#486][], [#913][], [#1015][]) ([@jpaulgs][], [@tomasv][], [@ZimbiX][])
630
+ - active_job support for Resque ([#991][]) ([@stefanahman][], [@psycholein][])
631
+ - JRuby 9.2 to CI test matrix ([#995][])
632
+ - `TraceWriter` and `AsyncTraceWriter` workers ([#986][])
633
+ - Runtime metrics worker ([#988][])
251
634
 
252
635
  ### Changed
253
636
 
254
- - Populate env, service, and version from tags (#1008)
255
- - Extract components from configuration (#996)
256
- - Extract logger to components (#997)
257
- - Extract runtime metrics worker from `Writer` (#1004)
258
- - Improvements to Faraday documentation (#1005)
637
+ - Populate env, service, and version from tags ([#1008][])
638
+ - Extract components from configuration ([#996][])
639
+ - Extract logger to components ([#997][])
640
+ - Extract runtime metrics worker from `Writer` ([#1004][])
641
+ - Improvements to Faraday documentation ([#1005][])
259
642
 
260
643
  ### Fixed
261
644
 
262
- - Runtime metrics not starting after #write (#1010)
645
+ - Runtime metrics not starting after #write ([#1010][])
263
646
 
264
647
  ### Refactored
265
648
 
266
- - Improvements to test suite (#842, #1006, #1009)
649
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
267
650
 
268
651
  ## [0.34.2] - 2020-04-09
269
652
 
@@ -273,7 +656,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
273
656
 
274
657
  ### Changed
275
658
 
276
- - Revert Rails applications setting default `env` if none are configured. (#1000) (@errriclee)
659
+ - Revert Rails applications setting default `env` if none are configured. ([#1000][]) ([@errriclee][])
277
660
 
278
661
  ## [0.34.1] - 2020-04-02
279
662
 
@@ -283,11 +666,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
283
666
 
284
667
  ### Changed
285
668
 
286
- - Rails applications set default `service` and `env` if none are configured. (#990)
669
+ - Rails applications set default `service` and `env` if none are configured. ([#990][])
287
670
 
288
671
  ### Fixed
289
672
 
290
- - Some configuration settings not applying (#989, #990) (@rahul342)
673
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
291
674
 
292
675
  ## [0.34.0] - 2020-03-31
293
676
 
@@ -297,18 +680,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
297
680
 
298
681
  ### Added
299
682
 
300
- - `Datadog::Event` for simple pub-sub messaging (#972)
301
- - `Datadog::Workers` for trace writing (#969, #973)
302
- - `_dd.measured` tag to some integrations for more statistics (#974)
303
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
304
- - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations (#882, #953) (@stormsilver)
683
+ - `Datadog::Event` for simple pub-sub messaging ([#972][])
684
+ - `Datadog::Workers` for trace writing ([#969][], [#973][])
685
+ - `_dd.measured` tag to some integrations for more statistics ([#974][])
686
+ - `env`, `service`, `version`, `tags` configuration for auto-tagging ([#977][], [#980][], [#982][], [#983][], [#985][])
687
+ - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations ([#882][], [#953][]) ([@stormsilver][])
305
688
 
306
689
  ### Fixed
307
690
 
308
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
309
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
310
- - Presto configuration (#975)
311
- - Test suite issues (#981)
691
+ - Runtime metrics configuration dropping with new writer ([#967][], [#968][]) ([@ericmustin][])
692
+ - Faraday "unexpected middleware" warnings on v0.x ([#965][], [#971][])
693
+ - Presto configuration ([#975][])
694
+ - Test suite issues ([#981][])
312
695
 
313
696
  ## [0.33.1] - 2020-03-09
314
697
 
@@ -318,7 +701,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
318
701
 
319
702
  ### Fixed
320
703
 
321
- - NoMethodError when activating instrumentation for non-existent library (#964, #966) (@roccoblues, @brafales)
704
+ - NoMethodError when activating instrumentation for non-existent library ([#964][], [#966][]) ([@roccoblues][], [@brafales][])
322
705
 
323
706
  ## [0.33.0] - 2020-03-05
324
707
 
@@ -328,27 +711,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
328
711
 
329
712
  ### Added
330
713
 
331
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
332
- - Sidekiq job argument tagging (#933) (@mantrala)
333
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
334
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
335
- - Setter/reset behavior for configuration options (#957)
336
- - Priority sampling rate tag (#891)
714
+ - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) ([#775][], [#920][], [#961][]) ([@ahammel][], [@ericmustin][])
715
+ - Sidekiq job argument tagging ([#933][]) ([@mantrala][])
716
+ - Support for multiple Redis services ([#861][], [#937][], [#940][]) ([@mberlanda][])
717
+ - Support for Sidekiq w/ Delayed extensions ([#798][], [#942][]) ([@joeyAghion][])
718
+ - Setter/reset behavior for configuration options ([#957][])
719
+ - Priority sampling rate tag ([#891][])
337
720
 
338
721
  ### Changed
339
722
 
340
- - Enforced minimum version requirements for instrumentation (#944)
341
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
342
- - Relaxed Rack minimum version to 1.1.0 (#952)
723
+ - Enforced minimum version requirements for instrumentation ([#944][])
724
+ - RubyGems minimum version requirement 2.0.0 ([#954][]) ([@Joas1988][])
725
+ - Relaxed Rack minimum version to 1.1.0 ([#952][])
343
726
 
344
727
  ### Fixed
345
728
 
346
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
347
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
348
- - Runtime metrics accumulating service names when disabled (#956)
349
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
350
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
351
- - Various test suite issues (#930, #932, #951, #960)
729
+ - AWS instrumentation patching when AWS is partially loaded ([#938][], [#945][]) ([@letiesperon][], [@illdelph][])
730
+ - NoMethodError for RuleSampler with priority sampling ([#949][], [#950][]) ([@BabyGroot][])
731
+ - Runtime metrics accumulating service names when disabled ([#956][])
732
+ - Sidekiq instrumentation incompatibility with Rails 6.0.2 ([#943][], [#947][]) ([@pj0tr][])
733
+ - Documentation tweaks ([#948][], [#955][]) ([@mstruve][], [@link04][])
734
+ - Various test suite issues ([#930][], [#932][], [#951][], [#960][])
352
735
 
353
736
  ## [0.32.0] - 2020-01-22
354
737
 
@@ -358,18 +741,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
358
741
 
359
742
  ### Added
360
743
 
361
- - New transport: Datadog::Transport::IO (#910)
362
- - Dual License (#893, #921)
744
+ - New transport: Datadog::Transport::IO ([#910][])
745
+ - Dual License ([#893][], [#921][])
363
746
 
364
747
  ### Changed
365
748
 
366
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
367
- - RuleSampler is now the default sampler; no behavior changes by default (#917)
749
+ - Improved annotation of `net/http` spans during exception ([#888][], [#907][]) ([@djmb][], [@ericmustin][])
750
+ - RuleSampler is now the default sampler; no behavior changes by default ([#917][])
368
751
 
369
752
  ### Refactored
370
753
 
371
- - Improved support for multiple tracer instances (#919)
372
- - Improvements to test suite (#909, #928, #929)
754
+ - Improved support for multiple tracer instances ([#919][])
755
+ - Improvements to test suite ([#909][], [#928][], [#929][])
373
756
 
374
757
  ## [0.31.1] - 2020-01-15
375
758
 
@@ -379,13 +762,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
379
762
 
380
763
  ### Fixed
381
764
 
382
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
383
- - Fix references to Datadog::Tracer.log (#912)
384
- - Ensure http.status_code tag is always a string (#927)
765
+ - Implement SyncWriter#stop method ([#914][], [#915][]) ([@Yurokle][])
766
+ - Fix references to Datadog::Tracer.log ([#912][])
767
+ - Ensure http.status_code tag is always a string ([#927][])
385
768
 
386
769
  ### Refactored
387
770
 
388
- - Improvements to test suite & CI (#911, #918)
771
+ - Improvements to test suite & CI ([#911][], [#918][])
389
772
 
390
773
  ## [0.31.0] - 2020-01-07
391
774
 
@@ -395,27 +778,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
395
778
 
396
779
  ### Added
397
780
 
398
- - Ruby 2.7 support (#805, #896)
399
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
400
- - Faraday 1.0 support (#906)
401
- - Set resource for Rails template spans (#855, #881) (@djmb)
402
- - at_exit hook for graceful Tracer shutdown (#884)
403
- - Environment variables to configure RuleSampler defaults (#892)
781
+ - Ruby 2.7 support ([#805][], [#896][])
782
+ - ActionCable integration ([#132][], [#824][]) ([@renchap][], [@ericmustin][])
783
+ - Faraday 1.0 support ([#906][])
784
+ - Set resource for Rails template spans ([#855][], [#881][]) ([@djmb][])
785
+ - at_exit hook for graceful Tracer shutdown ([#884][])
786
+ - Environment variables to configure RuleSampler defaults ([#892][])
404
787
 
405
788
  ### Changed
406
789
 
407
- - Updated partial trace flushing to conform with new back-end requirements (#845)
408
- - Store numeric tags as metrics (#886)
409
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
410
- - Changed default RuleSampler rate limit from unlimited to 100/s (#898)
790
+ - Updated partial trace flushing to conform with new back-end requirements ([#845][])
791
+ - Store numeric tags as metrics ([#886][])
792
+ - Moved logging from Datadog::Tracer to Datadog::Logger ([#880][])
793
+ - Changed default RuleSampler rate limit from unlimited to 100/s ([#898][])
411
794
 
412
795
  ### Fixed
413
796
 
414
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
797
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
415
798
 
416
799
  ### Refactored
417
800
 
418
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
801
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
419
802
 
420
803
  ## [0.30.1] - 2019-12-30
421
804
 
@@ -425,12 +808,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
425
808
 
426
809
  ### Fixed
427
810
 
428
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
429
- - Spans associated with runtime metrics when disabled (#885)
811
+ - NoMethodError when configuring tracer with SyncWriter ([#899][], [#900][]) ([@Yurokle][])
812
+ - Spans associated with runtime metrics when disabled ([#885][])
430
813
 
431
814
  ### Refactored
432
815
 
433
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
816
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
434
817
 
435
818
  ## [0.30.0] - 2019-12-04
436
819
 
@@ -440,13 +823,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
440
823
 
441
824
  ### Added
442
825
 
443
- - Additional tracer health metrics (#867)
444
- - Integration patching instrumentation (#871)
445
- - Rule-based trace sampling (#854)
826
+ - Additional tracer health metrics ([#867][])
827
+ - Integration patching instrumentation ([#871][])
828
+ - Rule-based trace sampling ([#854][])
446
829
 
447
830
  ### Fixed
448
831
 
449
- - Rails template layout name error (#872) (@djmb)
832
+ - Rails template layout name error ([#872][]) ([@djmb][])
450
833
 
451
834
  ## [0.29.1] - 2019-11-26
452
835
 
@@ -456,7 +839,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
456
839
 
457
840
  ### Fixed
458
841
 
459
- - Priority sampling not activating by default (#868)
842
+ - Priority sampling not activating by default ([#868][])
460
843
 
461
844
  ## [0.29.0] - 2019-11-20
462
845
 
@@ -466,25 +849,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
466
849
 
467
850
  ### Added
468
851
 
469
- - Tracer health metrics (#838, #859)
852
+ - Tracer health metrics ([#838][], [#859][])
470
853
 
471
854
  ### Changed
472
855
 
473
- - Default trace buffer size from 100 to 1000 (#865)
474
- - Rack request start headers to accept more values (#832) (@JamesHarker)
475
- - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
856
+ - Default trace buffer size from 100 to 1000 ([#865][])
857
+ - Rack request start headers to accept more values ([#832][]) ([@JamesHarker][])
858
+ - Faraday to apply default instrumentation out-of-the-box ([#786][], [#843][]) ([@mdross95][])
476
859
 
477
860
  ### Fixed
478
861
 
479
- - Synthetics trace context being ignored (#856)
862
+ - Synthetics trace context being ignored ([#856][])
480
863
 
481
864
  ### Refactored
482
865
 
483
- - Tracer buffer constants (#851)
866
+ - Tracer buffer constants ([#851][])
484
867
 
485
868
  ### Removed
486
869
 
487
- - Some old Ruby 1.9 code (#819, #844)
870
+ - Some old Ruby 1.9 code ([#819][], [#844][])
488
871
 
489
872
  ## [0.28.0] - 2019-10-01
490
873
 
@@ -494,13 +877,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
494
877
 
495
878
  ### Added
496
879
 
497
- - Support for Rails 6.0 (#814)
498
- - Multiplexing on hostname/port for Dalli (#823)
499
- - Support for Redis array arguments (#796, #817) (@brafales)
880
+ - Support for Rails 6.0 ([#814][])
881
+ - Multiplexing on hostname/port for Dalli ([#823][])
882
+ - Support for Redis array arguments ([#796][], [#817][]) ([@brafales][])
500
883
 
501
884
  ### Refactored
502
885
 
503
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
886
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
504
887
 
505
888
  ## [0.27.0] - 2019-09-04
506
889
 
@@ -518,16 +901,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
518
901
 
519
902
  ### Added
520
903
 
521
- - Support for Ruby 2.5 & 2.6 (#800, #802)
522
- - Ethon integration (#527, #778) (@al-kudryavtsev)
904
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
905
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
523
906
 
524
907
  ### Refactored
525
908
 
526
- - Rails integration into smaller integrations per component (#747, #762, #795)
909
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
527
910
 
528
911
  ### Removed
529
912
 
530
- - Support for Ruby 1.9 (#791)
913
+ - Support for Ruby 1.9 ([#791][])
531
914
 
532
915
  ## [0.26.0] - 2019-08-06
533
916
 
@@ -545,15 +928,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
545
928
 
546
929
  ### Added
547
930
 
548
- - Container ID tagging for containerized environments (#784)
931
+ - Container ID tagging for containerized environments ([#784][])
549
932
 
550
933
  ### Refactored
551
934
 
552
- - Datadog::Metrics constants (#789)
935
+ - Datadog::Metrics constants ([#789][])
553
936
 
554
937
  ### Removed
555
938
 
556
- - Datadog::HTTPTransport and related components (#782)
939
+ - Datadog::HTTPTransport and related components ([#782][])
557
940
 
558
941
  ## [0.25.1] - 2019-07-16
559
942
 
@@ -563,7 +946,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
563
946
 
564
947
  ### Fixed
565
948
 
566
- - Redis integration not quantizing AUTH command (#776)
949
+ - Redis integration not quantizing AUTH command ([#776][])
567
950
 
568
951
  ## [0.25.0] - 2019-06-27
569
952
 
@@ -581,25 +964,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
581
964
 
582
965
  ### Added
583
966
 
584
- - Unix socket support for transport layer (#770)
967
+ - Unix socket support for transport layer ([#770][])
585
968
 
586
969
  ### Changed
587
970
 
588
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
971
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
589
972
 
590
973
  ### Fixed
591
974
 
592
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
975
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
593
976
 
594
977
  ### Refactored
595
978
 
596
- - Transport layer (#628)
979
+ - Transport layer ([#628][])
597
980
 
598
981
  ### Deprecated
599
982
 
600
- - Ruby < 2.0 support (#771)
601
- - Use of `Datadog::HTTPTransport` (#628)
602
- - Use of `Datadog::Ext::ForcedTracing` (#765)
983
+ - Ruby < 2.0 support ([#771][])
984
+ - Use of `Datadog::HTTPTransport` ([#628][])
985
+ - Use of `Datadog::Ext::ForcedTracing` ([#765][])
603
986
 
604
987
  ## [0.24.0] - 2019-05-21
605
988
 
@@ -609,9 +992,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
609
992
 
610
993
  ### Added
611
994
 
612
- - B3 header support (#753)
613
- - Hostname tagging option (#760)
614
- - Contribution and development guides (#754)
995
+ - B3 header support ([#753][])
996
+ - Hostname tagging option ([#760][])
997
+ - Contribution and development guides ([#754][])
615
998
 
616
999
  ## [0.23.3] - 2019-05-16
617
1000
 
@@ -621,7 +1004,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
621
1004
 
622
1005
  ### Fixed
623
1006
 
624
- - Integrations initializing tracer at load time (#756)
1007
+ - Integrations initializing tracer at load time ([#756][])
625
1008
 
626
1009
  ## [0.23.2] - 2019-05-10
627
1010
 
@@ -631,9 +1014,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
631
1014
 
632
1015
  ### Fixed
633
1016
 
634
- - Span types for HTTP, web, and some datastore integrations (#751)
635
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
636
- - Rails 6 warning for `parent_name` (#750) (@sinsoku)
1017
+ - Span types for HTTP, web, and some datastore integrations ([#751][])
1018
+ - AWS integration not patching service-level gems ([#707][], [#752][]) ([@alksl][], [@tonypinder][])
1019
+ - Rails 6 warning for `parent_name` ([#750][]) ([@sinsoku][])
637
1020
 
638
1021
  ## [0.23.1] - 2019-05-02
639
1022
 
@@ -643,7 +1026,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
643
1026
 
644
1027
  ### Fixed
645
1028
 
646
- - NoMethodError runtime_metrics for SyncWriter (#748)
1029
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
647
1030
 
648
1031
  ## [0.23.0] - 2019-04-30
649
1032
 
@@ -653,16 +1036,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
653
1036
 
654
1037
  ### Added
655
1038
 
656
- - Error status support via tags for OpenTracing (#739)
657
- - Forced sampling support via tags (#720)
1039
+ - Error status support via tags for OpenTracing ([#739][])
1040
+ - Forced sampling support via tags ([#720][])
658
1041
 
659
1042
  ### Fixed
660
1043
 
661
- - Wrong return values for Rake integration (#742) (@Redapted)
1044
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
662
1045
 
663
1046
  ### Removed
664
1047
 
665
- - Obsolete service telemetry (#738)
1048
+ - Obsolete service telemetry ([#738][])
666
1049
 
667
1050
  ## [0.22.0] - 2019-04-15
668
1051
 
@@ -674,11 +1057,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
674
1057
 
675
1058
  ### Changed
676
1059
 
677
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
1060
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
678
1061
 
679
1062
  ### Added
680
1063
 
681
- - Initial beta support for Runtime metrics collection (#677)
1064
+ - Initial beta support for Runtime metrics collection ([#677][])
682
1065
 
683
1066
  ## [0.21.2] - 2019-04-10
684
1067
 
@@ -688,7 +1071,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
688
1071
 
689
1072
  ### Changed
690
1073
 
691
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
1074
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
692
1075
 
693
1076
  ## [0.21.1] - 2019-03-26
694
1077
 
@@ -698,7 +1081,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
698
1081
 
699
1082
  ### Changed
700
1083
 
701
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
1084
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
702
1085
 
703
1086
  ## [0.21.0] - 2019-03-20
704
1087
 
@@ -708,17 +1091,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
708
1091
 
709
1092
  ### Added
710
1093
 
711
- - Trace analytics support (#697, #715)
712
- - HTTP after_request span hook (#716, #724)
1094
+ - Trace analytics support ([#697][], [#715][])
1095
+ - HTTP after_request span hook ([#716][], [#724][])
713
1096
 
714
1097
  ### Fixed
715
1098
 
716
- - Distributed traces with IDs in 2^64 range being dropped (#719)
717
- - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
1099
+ - Distributed traces with IDs in 2^64 range being dropped ([#719][])
1100
+ - Custom logger level forced to warning ([#681][], [#721][]) ([@blaines][], [@ericmustin][])
718
1101
 
719
1102
  ### Refactored
720
1103
 
721
- - Global configuration for tracing into configuration API (#714)
1104
+ - Global configuration for tracing into configuration API ([#714][])
722
1105
 
723
1106
  ## [0.20.0] - 2019-03-07
724
1107
 
@@ -731,24 +1114,24 @@ These changes are backwards compatible, but all integration configuration should
731
1114
 
732
1115
  ### Added
733
1116
 
734
- - Propagate synthetics origin header (#699)
1117
+ - Propagate synthetics origin header ([#699][])
735
1118
 
736
1119
  ### Changed
737
1120
 
738
- - Enable distributed tracing by default (#701)
1121
+ - Enable distributed tracing by default ([#701][])
739
1122
 
740
1123
  ### Fixed
741
1124
 
742
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
1125
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
743
1126
 
744
1127
  ### Refactored
745
1128
 
746
- - Refactor MongoDB to use instrumentation module (#704)
747
- - Refactor HTTP to use instrumentation module (#703)
748
- - Deprecate GRPC global pin in favor of configuration API (#702)
749
- - Deprecate Grape pin in favor of configuration API (#700)
750
- - Deprecate Faraday pin in favor of configuration API (#696)
751
- - Deprecate Dalli pin in favor of configuration API (#693)
1129
+ - Refactor MongoDB to use instrumentation module ([#704][])
1130
+ - Refactor HTTP to use instrumentation module ([#703][])
1131
+ - Deprecate GRPC global pin in favor of configuration API ([#702][])
1132
+ - Deprecate Grape pin in favor of configuration API ([#700][])
1133
+ - Deprecate Faraday pin in favor of configuration API ([#696][])
1134
+ - Deprecate Dalli pin in favor of configuration API ([#693][])
752
1135
 
753
1136
  ## [0.19.1] - 2019-02-07
754
1137
 
@@ -758,11 +1141,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
758
1141
 
759
1142
  ### Added
760
1143
 
761
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
1144
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
762
1145
 
763
1146
  ### Fixed
764
1147
 
765
- - Priority sampling dropping spans (#686)
1148
+ - Priority sampling dropping spans ([#686][])
766
1149
 
767
1150
  ## [0.19.0] - 2019-01-22
768
1151
 
@@ -772,12 +1155,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
772
1155
 
773
1156
  ### Added
774
1157
 
775
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
776
- - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
1158
+ - Tracer#active_correlation for adding correlation IDs to logs. ([#660][], [#664][], [#673][])
1159
+ - Opt-in support for `event_sample_rate` tag for some integrations. ([#665][], [#666][])
777
1160
 
778
1161
  ### Changed
779
1162
 
780
- - Priority sampling enabled by default. (#654)
1163
+ - Priority sampling enabled by default. ([#654][])
781
1164
 
782
1165
  ## [0.18.3] - 2019-01-17
783
1166
 
@@ -787,9 +1170,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
787
1170
 
788
1171
  ### Fixed
789
1172
 
790
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
791
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
792
- - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
1173
+ - Mongo `NoMethodError` when no span available during `#failed`. ([#674][], [#675][]) ([@Azure7111][])
1174
+ - Rack deprecation warnings firing with some 3rd party libraries present. ([#672][])
1175
+ - Shoryuken resource name when used with ActiveJob. ([#671][]) ([@aurelian][])
793
1176
 
794
1177
  ## [0.18.2] - 2019-01-03
795
1178
 
@@ -799,8 +1182,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
799
1182
 
800
1183
  ### Fixed
801
1184
 
802
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
803
- - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
1185
+ - Unfinished Mongo spans when SASL configured ([#658][]) ([@zachmccormick][])
1186
+ - Possible performance issue with unexpanded Rails cache keys ([#630][], [#635][]) ([@gingerlime][])
804
1187
 
805
1188
  ## [0.18.1] - 2018-12-20
806
1189
 
@@ -810,7 +1193,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
810
1193
 
811
1194
  ### Fixed
812
1195
 
813
- - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
1196
+ - ActiveRecord `SystemStackError` with some 3rd party libraries ([#661][], [#662][]) ([@EpiFouloux][], [@tjgrathwell][], [@guizmaii][])
814
1197
 
815
1198
  ## [0.18.0] - 2018-12-18
816
1199
 
@@ -820,15 +1203,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
820
1203
 
821
1204
  ### Added
822
1205
 
823
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
824
- - Sidekiq client integration (#602, #650) (@dirk)
825
- - Datadog::Shim for adding instrumentation (#648)
1206
+ - Shoryuken integration ([#538][], [#626][], [#655][]) ([@steveh][], [@JustSnow][])
1207
+ - Sidekiq client integration ([#602][], [#650][]) ([@dirk][])
1208
+ - Datadog::Shim for adding instrumentation ([#648][])
826
1209
 
827
1210
  ### Changed
828
1211
 
829
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
830
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
831
- - Return default configuration instead of `nil` on miss (#651)
1212
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available ([#631][])
1213
+ - Inject `:connection` into `sql.active_record` event ([#640][], [#649][], [#656][]) ([@guizmaii][])
1214
+ - Return default configuration instead of `nil` on miss ([#651][])
832
1215
 
833
1216
  ## [0.17.3] - 2018-11-29
834
1217
 
@@ -838,9 +1221,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
838
1221
 
839
1222
  ### Fixed
840
1223
 
841
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
842
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
843
- - Rack middleware inserted twice in some Rails applications (#641)
1224
+ - Bad resource names for Grape::API objects in Grape 1.2.0 ([#639][])
1225
+ - RestClient raising NoMethodError when response is `nil` ([#636][], [#642][]) ([@frsantos][])
1226
+ - Rack middleware inserted twice in some Rails applications ([#641][])
844
1227
 
845
1228
  ## [0.17.2] - 2018-11-23
846
1229
 
@@ -850,7 +1233,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
850
1233
 
851
1234
  ### Fixed
852
1235
 
853
- - Resque integration shutting down tracer when forking is disabled (#637)
1236
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
854
1237
 
855
1238
  ## [0.17.1] - 2018-11-07
856
1239
 
@@ -860,8 +1243,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
860
1243
 
861
1244
  ### Fixed
862
1245
 
863
- - RestClient incorrect app type (#583) (@gaborszakacs)
864
- - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
1246
+ - RestClient incorrect app type ([#583][]) ([@gaborszakacs][])
1247
+ - DelayedJob incorrect job name when used with ActiveJob ([#605][]) ([@agirlnamedsophia][])
865
1248
 
866
1249
  ## [0.17.0] - 2018-10-30
867
1250
 
@@ -871,18 +1254,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
871
1254
 
872
1255
  ### Added
873
1256
 
874
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
1257
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
875
1258
 
876
1259
  ### Changed
877
1260
 
878
- - Use Rack Env to update resource in Rails (#580) (@dasch)
879
- - Expand support for Sidekiq to 3.5.4+ (#593)
880
- - Expand support for mysql2 to 0.3.21+ (#578)
1261
+ - Use Rack Env to update resource in Rails ([#580][]) ([@dasch][])
1262
+ - Expand support for Sidekiq to 3.5.4+ ([#593][])
1263
+ - Expand support for mysql2 to 0.3.21+ ([#578][])
881
1264
 
882
1265
  ### Refactored
883
1266
 
884
- - Upgraded integrations to new API (#544)
885
- - Encoding classes into modules (#598)
1267
+ - Upgraded integrations to new API ([#544][])
1268
+ - Encoding classes into modules ([#598][])
886
1269
 
887
1270
  ## [0.16.1] - 2018-10-17
888
1271
 
@@ -892,8 +1275,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
892
1275
 
893
1276
  ### Fixed
894
1277
 
895
- - Priority sampling response being mishandled (#591)
896
- - HTTP open timeout to agent too long (#582)
1278
+ - Priority sampling response being mishandled ([#591][])
1279
+ - HTTP open timeout to agent too long ([#582][])
897
1280
 
898
1281
  ## [0.16.0] - 2018-09-18
899
1282
 
@@ -903,8 +1286,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
903
1286
 
904
1287
  ### Added
905
1288
 
906
- - OpenTracing support (#517)
907
- - `middleware` option for disabling Rails trace middleware. (#552)
1289
+ - OpenTracing support ([#517][])
1290
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
908
1291
 
909
1292
  ## [0.15.0] - 2018-09-12
910
1293
 
@@ -914,13 +1297,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
914
1297
 
915
1298
  ### Added
916
1299
 
917
- - Rails 5.2 support (#535)
918
- - Context propagation support for `Concurrent::Future` (#415, #496)
1300
+ - Rails 5.2 support ([#535][])
1301
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
919
1302
 
920
1303
  ### Fixed
921
1304
 
922
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
923
- - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
1305
+ - Grape uninitialized constant TraceMiddleware ([#525][], [#533][]) ([@dim][])
1306
+ - Signed integer trace and span IDs being discarded in distributed traces ([#530][]) ([@alloy][])
924
1307
 
925
1308
  ## [0.14.2] - 2018-08-23
926
1309
 
@@ -930,7 +1313,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
930
1313
 
931
1314
  ### Fixed
932
1315
 
933
- - Sampling priority from request headers not being used (#521)
1316
+ - Sampling priority from request headers not being used ([#521][])
934
1317
 
935
1318
  ## [0.14.1] - 2018-08-21
936
1319
 
@@ -940,11 +1323,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
940
1323
 
941
1324
  ### Changed
942
1325
 
943
- - Reduce verbosity of connection errors in log (#515)
1326
+ - Reduce verbosity of connection errors in log ([#515][])
944
1327
 
945
1328
  ### Fixed
946
1329
 
947
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
1330
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
948
1331
 
949
1332
  ## [0.14.0] - 2018-08-14
950
1333
 
@@ -954,22 +1337,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
954
1337
 
955
1338
  ### Added
956
1339
 
957
- - RestClient integration (#422, #460)
958
- - DelayedJob integration (#393 #444)
959
- - Version information to integrations (#483)
960
- - Tracer#active_root_span helper (#503)
1340
+ - RestClient integration ([#422][], [#460][])
1341
+ - DelayedJob integration ([#393][] [#444][])
1342
+ - Version information to integrations ([#483][])
1343
+ - Tracer#active_root_span helper ([#503][])
961
1344
 
962
1345
  ### Changed
963
1346
 
964
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
965
- - ActiveRecord to allow configuring multiple databases (#451)
966
- - Integrations configuration settings (#450, #452, #451)
1347
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1348
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1349
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
967
1350
 
968
1351
  ### Fixed
969
1352
 
970
- - Context propagation for distributed traces when context is full (#502)
971
- - Rake shutdown tracer after execution (#487) (@kissrobber)
972
- - Deprecation warnings fired using Unicorn (#508)
1353
+ - Context propagation for distributed traces when context is full ([#502][])
1354
+ - Rake shutdown tracer after execution ([#487][]) ([@kissrobber][])
1355
+ - Deprecation warnings fired using Unicorn ([#508][])
973
1356
 
974
1357
  ## [0.14.0.rc1] - 2018-08-08
975
1358
 
@@ -979,12 +1362,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
979
1362
 
980
1363
  ### Added
981
1364
 
982
- - RestClient integration (#422, #460)
983
- - Tracer#active_root_span helper (#503)
1365
+ - RestClient integration ([#422][], [#460][])
1366
+ - Tracer#active_root_span helper ([#503][])
984
1367
 
985
1368
  ### Fixed
986
1369
 
987
- - Context propagation for distributed traces when context is full (#502)
1370
+ - Context propagation for distributed traces when context is full ([#502][])
988
1371
 
989
1372
  ## [0.14.0.beta2] - 2018-07-25
990
1373
 
@@ -994,7 +1377,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
994
1377
 
995
1378
  ### Fixed
996
1379
 
997
- - Rake shutdown tracer after execution (#487) @kissrobber
1380
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
998
1381
 
999
1382
  ## [0.14.0.beta1] - 2018-07-24
1000
1383
 
@@ -1004,19 +1387,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
1004
1387
 
1005
1388
  ### Changed
1006
1389
 
1007
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
1008
- - ActiveRecord to allow configuring multiple databases (#451)
1009
- - Integrations configuration settings (#450, #452, #451)
1390
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1391
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1392
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
1010
1393
 
1011
1394
  ### Fixed
1012
1395
 
1013
- - Ruby warnings during tests (#499)
1014
- - Tests failing intermittently on Ruby 1.9.3 (#497)
1396
+ - Ruby warnings during tests ([#499][])
1397
+ - Tests failing intermittently on Ruby 1.9.3 ([#497][])
1015
1398
 
1016
1399
  ### Added
1017
1400
 
1018
- - DelayedJob integration (#393 #444)
1019
- - Version information to integrations (#483)
1401
+ - DelayedJob integration ([#393][] [#444][])
1402
+ - Version information to integrations ([#483][])
1020
1403
 
1021
1404
  ## [0.13.2] - 2018-08-07
1022
1405
 
@@ -1026,7 +1409,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
1026
1409
 
1027
1410
  ### Fixed
1028
1411
 
1029
- - Context propagation for distributed traces when context is full (#502)
1412
+ - Context propagation for distributed traces when context is full ([#502][])
1030
1413
 
1031
1414
  ## [0.13.1] - 2018-07-17
1032
1415
 
@@ -1036,15 +1419,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
1036
1419
 
1037
1420
  ### Changed
1038
1421
 
1039
- - Configuration class variables don't lazy load (#477)
1040
- - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
1422
+ - Configuration class variables don't lazy load ([#477][])
1423
+ - Default tracer host `localhost` --> `127.0.0.1` ([#466][], [#480][]) ([@NobodysNightmare][])
1041
1424
 
1042
1425
  ### Fixed
1043
1426
 
1044
- - Workers not shutting down quickly in some short running processes (#475)
1045
- - Missing documentation for mysql2 and Rails (#476, #488)
1046
- - Missing variable in rescue block (#481) (@kitop)
1047
- - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
1427
+ - Workers not shutting down quickly in some short running processes ([#475][])
1428
+ - Missing documentation for mysql2 and Rails ([#476][], [#488][])
1429
+ - Missing variable in rescue block ([#481][]) ([@kitop][])
1430
+ - Unclosed spans in ActiveSupport::Notifications with multithreading ([#431][], [#478][]) ([@senny][])
1048
1431
 
1049
1432
  ## [0.13.0] - 2018-06-20
1050
1433
 
@@ -1054,31 +1437,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
1054
1437
 
1055
1438
  ### Added
1056
1439
 
1057
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1058
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1059
- - ActiveModelSerializers integration (#340) (@sullimander)
1060
- - Excon integration (#211, #426) (@walterking, @jeffjo)
1061
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1062
- - Request queuing tracing to Rack (experimental) (#272)
1063
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1064
- - Request and response header tags to Rack (#389)
1065
- - Request and response header tags to Sinatra (#427, #375)
1066
- - MySQL2 integration (#453) (@jamiehodge)
1067
- - Sidekiq job delay tag (#443, #418) (@gottfrois)
1440
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1441
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1442
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1443
+ - Excon integration ([#211][], [#426][]) ([@walterking][], [@jeffjo][])
1444
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1445
+ - Request queuing tracing to Rack (experimental) ([#272][])
1446
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1447
+ - Request and response header tags to Rack ([#389][])
1448
+ - Request and response header tags to Sinatra ([#427][], [#375][])
1449
+ - MySQL2 integration ([#453][]) ([@jamiehodge][])
1450
+ - Sidekiq job delay tag ([#443][], [#418][]) ([@gottfrois][])
1068
1451
 
1069
1452
  ### Fixed
1070
1453
 
1071
- - Elasticsearch quantization of ids (#458)
1072
- - MongoDB to allow quantization of collection name (#463)
1454
+ - Elasticsearch quantization of ids ([#458][])
1455
+ - MongoDB to allow quantization of collection name ([#463][])
1073
1456
 
1074
1457
  ### Refactored
1075
1458
 
1076
- - Hash quantization into core library (#410)
1077
- - MongoDB integration to use Hash quantization library (#463)
1459
+ - Hash quantization into core library ([#410][])
1460
+ - MongoDB integration to use Hash quantization library ([#463][])
1078
1461
 
1079
1462
  ### Changed
1080
1463
 
1081
- - Hash quantization truncates arrays with nested objects (#463)
1464
+ - Hash quantization truncates arrays with nested objects ([#463][])
1082
1465
 
1083
1466
  ## [0.13.0.beta1] - 2018-05-09
1084
1467
 
@@ -1088,18 +1471,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
1088
1471
 
1089
1472
  ### Added
1090
1473
 
1091
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1092
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1093
- - ActiveModelSerializers integration (#340) (@sullimander)
1094
- - Excon integration (#211) (@walterking)
1095
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1096
- - Request queuing tracing to Rack (experimental) (#272)
1097
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1098
- - Request and response header tags to Rack (#389)
1474
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1475
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1476
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1477
+ - Excon integration ([#211][]) ([@walterking][])
1478
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1479
+ - Request queuing tracing to Rack (experimental) ([#272][])
1480
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1481
+ - Request and response header tags to Rack ([#389][])
1099
1482
 
1100
1483
  ### Refactored
1101
1484
 
1102
- - Hash quantization into core library (#410)
1485
+ - Hash quantization into core library ([#410][])
1103
1486
 
1104
1487
  ## [0.12.1] - 2018-06-12
1105
1488
 
@@ -1109,22 +1492,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1109
1492
 
1110
1493
  ### Changed
1111
1494
 
1112
- - Cache configuration `Proxy` objects (#446)
1113
- - `freeze` more constant strings, to improve memory usage (#446)
1114
- - `Utils#truncate` to use slightly less memory (#446)
1495
+ - Cache configuration `Proxy` objects ([#446][])
1496
+ - `freeze` more constant strings, to improve memory usage ([#446][])
1497
+ - `Utils#truncate` to use slightly less memory ([#446][])
1115
1498
 
1116
1499
  ### Fixed
1117
1500
 
1118
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
1119
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
1120
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
1121
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
1122
- - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
1501
+ - Net/HTTP integration not permitting `service_name` to be overridden. ([#407][], [#430][]) ([@undergroundwebdesigns][])
1502
+ - Block not being passed through Elasticsearch client initialization. ([#421][]) ([@shayonj][])
1503
+ - Devise raising `NoMethodError` when bad login attempts are made. ([#419][], [#420][]) ([@frsantos][])
1504
+ - AWS spans using wrong resource name ([#374][], [#377][]) ([@jfrancoist][])
1505
+ - ActionView `NoMethodError` on very long traces. ([#445][], [#447][]) ([@jvalanen][])
1123
1506
 
1124
1507
  ### Refactored
1125
1508
 
1126
- - ActionController patching strategy using modules. (#439)
1127
- - ActionView tracing strategy. (#445, #447)
1509
+ - ActionController patching strategy using modules. ([#439][])
1510
+ - ActionView tracing strategy. ([#445][], [#447][])
1128
1511
 
1129
1512
  ## [0.12.0] - 2018-05-08
1130
1513
 
@@ -1134,34 +1517,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1134
1517
 
1135
1518
  ### Added
1136
1519
 
1137
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1138
- - ActiveRecord object instantiation tracing (#311, #334)
1139
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1140
- - HTTP quantization module (#384)
1141
- - Partial flushing option to tracer (#247, #397)
1520
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1521
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1522
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1523
+ - HTTP quantization module ([#384][])
1524
+ - Partial flushing option to tracer ([#247][], [#397][])
1142
1525
 
1143
1526
  ### Changed
1144
1527
 
1145
- - Rack applies URL quantization by default (#371)
1146
- - Elasticsearch applies body quantization by default (#362)
1147
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1148
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1528
+ - Rack applies URL quantization by default ([#371][])
1529
+ - Elasticsearch applies body quantization by default ([#362][])
1530
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1531
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
1149
1532
 
1150
1533
  ### Fixed
1151
1534
 
1152
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1153
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1154
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1535
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1536
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1537
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
1155
1538
 
1156
1539
  ### Deprecated
1157
1540
 
1158
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1541
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
1159
1542
 
1160
1543
  ### Refactored
1161
1544
 
1162
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1163
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1164
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1545
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1546
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1547
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
1165
1548
 
1166
1549
  ## [0.12.0.rc1] - 2018-04-11
1167
1550
 
@@ -1171,34 +1554,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1171
1554
 
1172
1555
  ### Added
1173
1556
 
1174
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1175
- - ActiveRecord object instantiation tracing (#311, #334)
1176
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1177
- - HTTP quantization module (#384)
1178
- - Partial flushing option to tracer (#247, #397)
1557
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1558
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1559
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1560
+ - HTTP quantization module ([#384][])
1561
+ - Partial flushing option to tracer ([#247][], [#397][])
1179
1562
 
1180
1563
  ### Changed
1181
1564
 
1182
- - Rack applies URL quantization by default (#371)
1183
- - Elasticsearch applies body quantization by default (#362)
1184
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1185
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1565
+ - Rack applies URL quantization by default ([#371][])
1566
+ - Elasticsearch applies body quantization by default ([#362][])
1567
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1568
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
1186
1569
 
1187
1570
  ### Fixed
1188
1571
 
1189
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1190
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1191
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1572
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1573
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1574
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
1192
1575
 
1193
1576
  ### Deprecated
1194
1577
 
1195
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1578
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
1196
1579
 
1197
1580
  ### Refactored
1198
1581
 
1199
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1200
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1201
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1582
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1583
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1584
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
1202
1585
 
1203
1586
  ## [0.12.0.beta2] - 2018-02-28
1204
1587
 
@@ -1208,7 +1591,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
1208
1591
 
1209
1592
  ### Fixed
1210
1593
 
1211
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1594
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1212
1595
 
1213
1596
  ## [0.12.0.beta1] - 2018-02-09
1214
1597
 
@@ -1218,9 +1601,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1218
1601
 
1219
1602
  ### Added
1220
1603
 
1221
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1222
- - ActiveRecord object instantiation tracing (#311, #334)
1223
- - `http.request_id` tag to Rack spans (#335)
1604
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1605
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1606
+ - `http.request_id` tag to Rack spans ([#335][])
1224
1607
 
1225
1608
  ## [0.11.4] - 2018-03-29
1226
1609
 
@@ -1230,9 +1613,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1230
1613
 
1231
1614
  ### Fixed
1232
1615
 
1233
- - Transport body parsing when downgrading (#369)
1234
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
1235
- - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
1616
+ - Transport body parsing when downgrading ([#369][])
1617
+ - Transport incorrectly attempting to apply sampling to service metadata ([#370][])
1618
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used ([#383][])
1236
1619
 
1237
1620
  ## [0.11.3] - 2018-03-06
1238
1621
 
@@ -1242,20 +1625,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1242
1625
 
1243
1626
  ### Added
1244
1627
 
1245
- - CHANGELOG.md (#350, #363) (@awendt)
1246
- - `http.request_id` tag to Rack spans (#335)
1247
- - Tracer configuration to README.md (#332) (@noma4i)
1628
+ - CHANGELOG.md ([#350][], [#363][]) ([@awendt][])
1629
+ - `http.request_id` tag to Rack spans ([#335][])
1630
+ - Tracer configuration to README.md ([#332][]) ([@noma4i][])
1248
1631
 
1249
1632
  ### Fixed
1250
1633
 
1251
- - Extra indentation in README.md (#349) (@ck3g)
1252
- - `http.url` when Rails raises exceptions (#351, #353)
1253
- - Rails from being patched twice (#352)
1254
- - 4XX responses from middleware being marked as errors (#345)
1255
- - Rails exception middleware sometimes not being inserted at correct position (#345)
1256
- - Processing pipeline documentation typo (#355) (@MMartyn)
1257
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1258
- - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
1634
+ - Extra indentation in README.md ([#349][]) ([@ck3g][])
1635
+ - `http.url` when Rails raises exceptions ([#351][], [#353][])
1636
+ - Rails from being patched twice ([#352][])
1637
+ - 4XX responses from middleware being marked as errors ([#345][])
1638
+ - Rails exception middleware sometimes not being inserted at correct position ([#345][])
1639
+ - Processing pipeline documentation typo ([#355][]) ([@MMartyn][])
1640
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1641
+ - Use of block syntax with Rails `render` not working ([#359][], [#360][]) ([@dorner][])
1259
1642
 
1260
1643
  ## [0.11.2] - 2018-02-02
1261
1644
 
@@ -1277,23 +1660,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1277
1660
 
1278
1661
  ### Added
1279
1662
 
1280
- - `http.base_url` tag for Rack applications (#301, #327)
1281
- - `distributed_tracing` option to Sinatra (#325)
1282
- - `exception_controller` option to Rails (#320)
1663
+ - `http.base_url` tag for Rack applications ([#301][], [#327][])
1664
+ - `distributed_tracing` option to Sinatra ([#325][])
1665
+ - `exception_controller` option to Rails ([#320][])
1283
1666
 
1284
1667
  ### Changed
1285
1668
 
1286
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1287
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1669
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
1670
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1288
1671
 
1289
1672
  ### Removed
1290
1673
 
1291
- - `Datadog::Monkey` in favor of newer configuration API (#322)
1674
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1292
1675
 
1293
1676
  ### Fixed
1294
1677
 
1295
- - Custom resource names from Rails controllers being overridden (#321)
1296
- - Custom Rails exception controllers reporting as the resource (#320)
1678
+ - Custom resource names from Rails controllers being overridden ([#321][])
1679
+ - Custom Rails exception controllers reporting as the resource ([#320][])
1297
1680
 
1298
1681
  ## [0.11.0] - 2018-01-17
1299
1682
 
@@ -1427,7 +1810,15 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1427
1810
 
1428
1811
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1429
1812
 
1430
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...master
1813
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.48.0...master
1814
+ [0.51.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
1815
+ [0.51.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
1816
+ [0.48.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
1817
+ [0.47.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
1818
+ [0.46.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
1819
+ [0.45.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
1820
+ [0.44.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
1821
+ [0.43.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
1431
1822
  [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
1432
1823
  [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
1433
1824
  [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
@@ -1525,3 +1916,754 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1525
1916
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1526
1917
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1527
1918
  [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1
1919
+
1920
+ <!--- The following link definition list is generated by PimpMyChangelog --->
1921
+ [#132]: https://github.com/DataDog/dd-trace-rb/issues/132
1922
+ [#171]: https://github.com/DataDog/dd-trace-rb/issues/171
1923
+ [#211]: https://github.com/DataDog/dd-trace-rb/issues/211
1924
+ [#247]: https://github.com/DataDog/dd-trace-rb/issues/247
1925
+ [#272]: https://github.com/DataDog/dd-trace-rb/issues/272
1926
+ [#295]: https://github.com/DataDog/dd-trace-rb/issues/295
1927
+ [#301]: https://github.com/DataDog/dd-trace-rb/issues/301
1928
+ [#311]: https://github.com/DataDog/dd-trace-rb/issues/311
1929
+ [#320]: https://github.com/DataDog/dd-trace-rb/issues/320
1930
+ [#321]: https://github.com/DataDog/dd-trace-rb/issues/321
1931
+ [#322]: https://github.com/DataDog/dd-trace-rb/issues/322
1932
+ [#323]: https://github.com/DataDog/dd-trace-rb/issues/323
1933
+ [#324]: https://github.com/DataDog/dd-trace-rb/issues/324
1934
+ [#325]: https://github.com/DataDog/dd-trace-rb/issues/325
1935
+ [#327]: https://github.com/DataDog/dd-trace-rb/issues/327
1936
+ [#328]: https://github.com/DataDog/dd-trace-rb/issues/328
1937
+ [#330]: https://github.com/DataDog/dd-trace-rb/issues/330
1938
+ [#332]: https://github.com/DataDog/dd-trace-rb/issues/332
1939
+ [#334]: https://github.com/DataDog/dd-trace-rb/issues/334
1940
+ [#335]: https://github.com/DataDog/dd-trace-rb/issues/335
1941
+ [#340]: https://github.com/DataDog/dd-trace-rb/issues/340
1942
+ [#345]: https://github.com/DataDog/dd-trace-rb/issues/345
1943
+ [#349]: https://github.com/DataDog/dd-trace-rb/issues/349
1944
+ [#350]: https://github.com/DataDog/dd-trace-rb/issues/350
1945
+ [#351]: https://github.com/DataDog/dd-trace-rb/issues/351
1946
+ [#352]: https://github.com/DataDog/dd-trace-rb/issues/352
1947
+ [#353]: https://github.com/DataDog/dd-trace-rb/issues/353
1948
+ [#354]: https://github.com/DataDog/dd-trace-rb/issues/354
1949
+ [#355]: https://github.com/DataDog/dd-trace-rb/issues/355
1950
+ [#357]: https://github.com/DataDog/dd-trace-rb/issues/357
1951
+ [#359]: https://github.com/DataDog/dd-trace-rb/issues/359
1952
+ [#360]: https://github.com/DataDog/dd-trace-rb/issues/360
1953
+ [#362]: https://github.com/DataDog/dd-trace-rb/issues/362
1954
+ [#363]: https://github.com/DataDog/dd-trace-rb/issues/363
1955
+ [#365]: https://github.com/DataDog/dd-trace-rb/issues/365
1956
+ [#367]: https://github.com/DataDog/dd-trace-rb/issues/367
1957
+ [#369]: https://github.com/DataDog/dd-trace-rb/issues/369
1958
+ [#370]: https://github.com/DataDog/dd-trace-rb/issues/370
1959
+ [#371]: https://github.com/DataDog/dd-trace-rb/issues/371
1960
+ [#374]: https://github.com/DataDog/dd-trace-rb/issues/374
1961
+ [#375]: https://github.com/DataDog/dd-trace-rb/issues/375
1962
+ [#377]: https://github.com/DataDog/dd-trace-rb/issues/377
1963
+ [#379]: https://github.com/DataDog/dd-trace-rb/issues/379
1964
+ [#380]: https://github.com/DataDog/dd-trace-rb/issues/380
1965
+ [#381]: https://github.com/DataDog/dd-trace-rb/issues/381
1966
+ [#383]: https://github.com/DataDog/dd-trace-rb/issues/383
1967
+ [#384]: https://github.com/DataDog/dd-trace-rb/issues/384
1968
+ [#389]: https://github.com/DataDog/dd-trace-rb/issues/389
1969
+ [#390]: https://github.com/DataDog/dd-trace-rb/issues/390
1970
+ [#391]: https://github.com/DataDog/dd-trace-rb/issues/391
1971
+ [#392]: https://github.com/DataDog/dd-trace-rb/issues/392
1972
+ [#393]: https://github.com/DataDog/dd-trace-rb/issues/393
1973
+ [#395]: https://github.com/DataDog/dd-trace-rb/issues/395
1974
+ [#396]: https://github.com/DataDog/dd-trace-rb/issues/396
1975
+ [#397]: https://github.com/DataDog/dd-trace-rb/issues/397
1976
+ [#400]: https://github.com/DataDog/dd-trace-rb/issues/400
1977
+ [#403]: https://github.com/DataDog/dd-trace-rb/issues/403
1978
+ [#407]: https://github.com/DataDog/dd-trace-rb/issues/407
1979
+ [#409]: https://github.com/DataDog/dd-trace-rb/issues/409
1980
+ [#410]: https://github.com/DataDog/dd-trace-rb/issues/410
1981
+ [#415]: https://github.com/DataDog/dd-trace-rb/issues/415
1982
+ [#418]: https://github.com/DataDog/dd-trace-rb/issues/418
1983
+ [#419]: https://github.com/DataDog/dd-trace-rb/issues/419
1984
+ [#420]: https://github.com/DataDog/dd-trace-rb/issues/420
1985
+ [#421]: https://github.com/DataDog/dd-trace-rb/issues/421
1986
+ [#422]: https://github.com/DataDog/dd-trace-rb/issues/422
1987
+ [#424]: https://github.com/DataDog/dd-trace-rb/issues/424
1988
+ [#426]: https://github.com/DataDog/dd-trace-rb/issues/426
1989
+ [#427]: https://github.com/DataDog/dd-trace-rb/issues/427
1990
+ [#430]: https://github.com/DataDog/dd-trace-rb/issues/430
1991
+ [#431]: https://github.com/DataDog/dd-trace-rb/issues/431
1992
+ [#439]: https://github.com/DataDog/dd-trace-rb/issues/439
1993
+ [#443]: https://github.com/DataDog/dd-trace-rb/issues/443
1994
+ [#444]: https://github.com/DataDog/dd-trace-rb/issues/444
1995
+ [#445]: https://github.com/DataDog/dd-trace-rb/issues/445
1996
+ [#446]: https://github.com/DataDog/dd-trace-rb/issues/446
1997
+ [#447]: https://github.com/DataDog/dd-trace-rb/issues/447
1998
+ [#450]: https://github.com/DataDog/dd-trace-rb/issues/450
1999
+ [#451]: https://github.com/DataDog/dd-trace-rb/issues/451
2000
+ [#452]: https://github.com/DataDog/dd-trace-rb/issues/452
2001
+ [#453]: https://github.com/DataDog/dd-trace-rb/issues/453
2002
+ [#458]: https://github.com/DataDog/dd-trace-rb/issues/458
2003
+ [#460]: https://github.com/DataDog/dd-trace-rb/issues/460
2004
+ [#463]: https://github.com/DataDog/dd-trace-rb/issues/463
2005
+ [#466]: https://github.com/DataDog/dd-trace-rb/issues/466
2006
+ [#474]: https://github.com/DataDog/dd-trace-rb/issues/474
2007
+ [#475]: https://github.com/DataDog/dd-trace-rb/issues/475
2008
+ [#476]: https://github.com/DataDog/dd-trace-rb/issues/476
2009
+ [#477]: https://github.com/DataDog/dd-trace-rb/issues/477
2010
+ [#478]: https://github.com/DataDog/dd-trace-rb/issues/478
2011
+ [#480]: https://github.com/DataDog/dd-trace-rb/issues/480
2012
+ [#481]: https://github.com/DataDog/dd-trace-rb/issues/481
2013
+ [#483]: https://github.com/DataDog/dd-trace-rb/issues/483
2014
+ [#486]: https://github.com/DataDog/dd-trace-rb/issues/486
2015
+ [#487]: https://github.com/DataDog/dd-trace-rb/issues/487
2016
+ [#488]: https://github.com/DataDog/dd-trace-rb/issues/488
2017
+ [#496]: https://github.com/DataDog/dd-trace-rb/issues/496
2018
+ [#497]: https://github.com/DataDog/dd-trace-rb/issues/497
2019
+ [#499]: https://github.com/DataDog/dd-trace-rb/issues/499
2020
+ [#502]: https://github.com/DataDog/dd-trace-rb/issues/502
2021
+ [#503]: https://github.com/DataDog/dd-trace-rb/issues/503
2022
+ [#508]: https://github.com/DataDog/dd-trace-rb/issues/508
2023
+ [#514]: https://github.com/DataDog/dd-trace-rb/issues/514
2024
+ [#515]: https://github.com/DataDog/dd-trace-rb/issues/515
2025
+ [#516]: https://github.com/DataDog/dd-trace-rb/issues/516
2026
+ [#517]: https://github.com/DataDog/dd-trace-rb/issues/517
2027
+ [#521]: https://github.com/DataDog/dd-trace-rb/issues/521
2028
+ [#525]: https://github.com/DataDog/dd-trace-rb/issues/525
2029
+ [#527]: https://github.com/DataDog/dd-trace-rb/issues/527
2030
+ [#529]: https://github.com/DataDog/dd-trace-rb/issues/529
2031
+ [#530]: https://github.com/DataDog/dd-trace-rb/issues/530
2032
+ [#533]: https://github.com/DataDog/dd-trace-rb/issues/533
2033
+ [#535]: https://github.com/DataDog/dd-trace-rb/issues/535
2034
+ [#538]: https://github.com/DataDog/dd-trace-rb/issues/538
2035
+ [#544]: https://github.com/DataDog/dd-trace-rb/issues/544
2036
+ [#552]: https://github.com/DataDog/dd-trace-rb/issues/552
2037
+ [#578]: https://github.com/DataDog/dd-trace-rb/issues/578
2038
+ [#580]: https://github.com/DataDog/dd-trace-rb/issues/580
2039
+ [#582]: https://github.com/DataDog/dd-trace-rb/issues/582
2040
+ [#583]: https://github.com/DataDog/dd-trace-rb/issues/583
2041
+ [#591]: https://github.com/DataDog/dd-trace-rb/issues/591
2042
+ [#593]: https://github.com/DataDog/dd-trace-rb/issues/593
2043
+ [#597]: https://github.com/DataDog/dd-trace-rb/issues/597
2044
+ [#598]: https://github.com/DataDog/dd-trace-rb/issues/598
2045
+ [#602]: https://github.com/DataDog/dd-trace-rb/issues/602
2046
+ [#605]: https://github.com/DataDog/dd-trace-rb/issues/605
2047
+ [#626]: https://github.com/DataDog/dd-trace-rb/issues/626
2048
+ [#628]: https://github.com/DataDog/dd-trace-rb/issues/628
2049
+ [#630]: https://github.com/DataDog/dd-trace-rb/issues/630
2050
+ [#631]: https://github.com/DataDog/dd-trace-rb/issues/631
2051
+ [#635]: https://github.com/DataDog/dd-trace-rb/issues/635
2052
+ [#636]: https://github.com/DataDog/dd-trace-rb/issues/636
2053
+ [#637]: https://github.com/DataDog/dd-trace-rb/issues/637
2054
+ [#639]: https://github.com/DataDog/dd-trace-rb/issues/639
2055
+ [#640]: https://github.com/DataDog/dd-trace-rb/issues/640
2056
+ [#641]: https://github.com/DataDog/dd-trace-rb/issues/641
2057
+ [#642]: https://github.com/DataDog/dd-trace-rb/issues/642
2058
+ [#648]: https://github.com/DataDog/dd-trace-rb/issues/648
2059
+ [#649]: https://github.com/DataDog/dd-trace-rb/issues/649
2060
+ [#650]: https://github.com/DataDog/dd-trace-rb/issues/650
2061
+ [#651]: https://github.com/DataDog/dd-trace-rb/issues/651
2062
+ [#654]: https://github.com/DataDog/dd-trace-rb/issues/654
2063
+ [#655]: https://github.com/DataDog/dd-trace-rb/issues/655
2064
+ [#656]: https://github.com/DataDog/dd-trace-rb/issues/656
2065
+ [#658]: https://github.com/DataDog/dd-trace-rb/issues/658
2066
+ [#660]: https://github.com/DataDog/dd-trace-rb/issues/660
2067
+ [#661]: https://github.com/DataDog/dd-trace-rb/issues/661
2068
+ [#662]: https://github.com/DataDog/dd-trace-rb/issues/662
2069
+ [#664]: https://github.com/DataDog/dd-trace-rb/issues/664
2070
+ [#665]: https://github.com/DataDog/dd-trace-rb/issues/665
2071
+ [#666]: https://github.com/DataDog/dd-trace-rb/issues/666
2072
+ [#671]: https://github.com/DataDog/dd-trace-rb/issues/671
2073
+ [#672]: https://github.com/DataDog/dd-trace-rb/issues/672
2074
+ [#673]: https://github.com/DataDog/dd-trace-rb/issues/673
2075
+ [#674]: https://github.com/DataDog/dd-trace-rb/issues/674
2076
+ [#675]: https://github.com/DataDog/dd-trace-rb/issues/675
2077
+ [#677]: https://github.com/DataDog/dd-trace-rb/issues/677
2078
+ [#681]: https://github.com/DataDog/dd-trace-rb/issues/681
2079
+ [#683]: https://github.com/DataDog/dd-trace-rb/issues/683
2080
+ [#686]: https://github.com/DataDog/dd-trace-rb/issues/686
2081
+ [#687]: https://github.com/DataDog/dd-trace-rb/issues/687
2082
+ [#693]: https://github.com/DataDog/dd-trace-rb/issues/693
2083
+ [#696]: https://github.com/DataDog/dd-trace-rb/issues/696
2084
+ [#697]: https://github.com/DataDog/dd-trace-rb/issues/697
2085
+ [#699]: https://github.com/DataDog/dd-trace-rb/issues/699
2086
+ [#700]: https://github.com/DataDog/dd-trace-rb/issues/700
2087
+ [#701]: https://github.com/DataDog/dd-trace-rb/issues/701
2088
+ [#702]: https://github.com/DataDog/dd-trace-rb/issues/702
2089
+ [#703]: https://github.com/DataDog/dd-trace-rb/issues/703
2090
+ [#704]: https://github.com/DataDog/dd-trace-rb/issues/704
2091
+ [#707]: https://github.com/DataDog/dd-trace-rb/issues/707
2092
+ [#709]: https://github.com/DataDog/dd-trace-rb/issues/709
2093
+ [#714]: https://github.com/DataDog/dd-trace-rb/issues/714
2094
+ [#715]: https://github.com/DataDog/dd-trace-rb/issues/715
2095
+ [#716]: https://github.com/DataDog/dd-trace-rb/issues/716
2096
+ [#719]: https://github.com/DataDog/dd-trace-rb/issues/719
2097
+ [#720]: https://github.com/DataDog/dd-trace-rb/issues/720
2098
+ [#721]: https://github.com/DataDog/dd-trace-rb/issues/721
2099
+ [#722]: https://github.com/DataDog/dd-trace-rb/issues/722
2100
+ [#724]: https://github.com/DataDog/dd-trace-rb/issues/724
2101
+ [#728]: https://github.com/DataDog/dd-trace-rb/issues/728
2102
+ [#729]: https://github.com/DataDog/dd-trace-rb/issues/729
2103
+ [#731]: https://github.com/DataDog/dd-trace-rb/issues/731
2104
+ [#738]: https://github.com/DataDog/dd-trace-rb/issues/738
2105
+ [#739]: https://github.com/DataDog/dd-trace-rb/issues/739
2106
+ [#742]: https://github.com/DataDog/dd-trace-rb/issues/742
2107
+ [#747]: https://github.com/DataDog/dd-trace-rb/issues/747
2108
+ [#748]: https://github.com/DataDog/dd-trace-rb/issues/748
2109
+ [#750]: https://github.com/DataDog/dd-trace-rb/issues/750
2110
+ [#751]: https://github.com/DataDog/dd-trace-rb/issues/751
2111
+ [#752]: https://github.com/DataDog/dd-trace-rb/issues/752
2112
+ [#753]: https://github.com/DataDog/dd-trace-rb/issues/753
2113
+ [#754]: https://github.com/DataDog/dd-trace-rb/issues/754
2114
+ [#756]: https://github.com/DataDog/dd-trace-rb/issues/756
2115
+ [#760]: https://github.com/DataDog/dd-trace-rb/issues/760
2116
+ [#762]: https://github.com/DataDog/dd-trace-rb/issues/762
2117
+ [#765]: https://github.com/DataDog/dd-trace-rb/issues/765
2118
+ [#768]: https://github.com/DataDog/dd-trace-rb/issues/768
2119
+ [#770]: https://github.com/DataDog/dd-trace-rb/issues/770
2120
+ [#771]: https://github.com/DataDog/dd-trace-rb/issues/771
2121
+ [#775]: https://github.com/DataDog/dd-trace-rb/issues/775
2122
+ [#776]: https://github.com/DataDog/dd-trace-rb/issues/776
2123
+ [#778]: https://github.com/DataDog/dd-trace-rb/issues/778
2124
+ [#782]: https://github.com/DataDog/dd-trace-rb/issues/782
2125
+ [#784]: https://github.com/DataDog/dd-trace-rb/issues/784
2126
+ [#786]: https://github.com/DataDog/dd-trace-rb/issues/786
2127
+ [#789]: https://github.com/DataDog/dd-trace-rb/issues/789
2128
+ [#791]: https://github.com/DataDog/dd-trace-rb/issues/791
2129
+ [#795]: https://github.com/DataDog/dd-trace-rb/issues/795
2130
+ [#796]: https://github.com/DataDog/dd-trace-rb/issues/796
2131
+ [#798]: https://github.com/DataDog/dd-trace-rb/issues/798
2132
+ [#800]: https://github.com/DataDog/dd-trace-rb/issues/800
2133
+ [#802]: https://github.com/DataDog/dd-trace-rb/issues/802
2134
+ [#805]: https://github.com/DataDog/dd-trace-rb/issues/805
2135
+ [#811]: https://github.com/DataDog/dd-trace-rb/issues/811
2136
+ [#814]: https://github.com/DataDog/dd-trace-rb/issues/814
2137
+ [#815]: https://github.com/DataDog/dd-trace-rb/issues/815
2138
+ [#817]: https://github.com/DataDog/dd-trace-rb/issues/817
2139
+ [#818]: https://github.com/DataDog/dd-trace-rb/issues/818
2140
+ [#819]: https://github.com/DataDog/dd-trace-rb/issues/819
2141
+ [#821]: https://github.com/DataDog/dd-trace-rb/issues/821
2142
+ [#823]: https://github.com/DataDog/dd-trace-rb/issues/823
2143
+ [#824]: https://github.com/DataDog/dd-trace-rb/issues/824
2144
+ [#832]: https://github.com/DataDog/dd-trace-rb/issues/832
2145
+ [#838]: https://github.com/DataDog/dd-trace-rb/issues/838
2146
+ [#840]: https://github.com/DataDog/dd-trace-rb/issues/840
2147
+ [#841]: https://github.com/DataDog/dd-trace-rb/issues/841
2148
+ [#842]: https://github.com/DataDog/dd-trace-rb/issues/842
2149
+ [#843]: https://github.com/DataDog/dd-trace-rb/issues/843
2150
+ [#844]: https://github.com/DataDog/dd-trace-rb/issues/844
2151
+ [#845]: https://github.com/DataDog/dd-trace-rb/issues/845
2152
+ [#846]: https://github.com/DataDog/dd-trace-rb/issues/846
2153
+ [#847]: https://github.com/DataDog/dd-trace-rb/issues/847
2154
+ [#851]: https://github.com/DataDog/dd-trace-rb/issues/851
2155
+ [#853]: https://github.com/DataDog/dd-trace-rb/issues/853
2156
+ [#854]: https://github.com/DataDog/dd-trace-rb/issues/854
2157
+ [#855]: https://github.com/DataDog/dd-trace-rb/issues/855
2158
+ [#856]: https://github.com/DataDog/dd-trace-rb/issues/856
2159
+ [#859]: https://github.com/DataDog/dd-trace-rb/issues/859
2160
+ [#861]: https://github.com/DataDog/dd-trace-rb/issues/861
2161
+ [#865]: https://github.com/DataDog/dd-trace-rb/issues/865
2162
+ [#867]: https://github.com/DataDog/dd-trace-rb/issues/867
2163
+ [#868]: https://github.com/DataDog/dd-trace-rb/issues/868
2164
+ [#871]: https://github.com/DataDog/dd-trace-rb/issues/871
2165
+ [#872]: https://github.com/DataDog/dd-trace-rb/issues/872
2166
+ [#880]: https://github.com/DataDog/dd-trace-rb/issues/880
2167
+ [#881]: https://github.com/DataDog/dd-trace-rb/issues/881
2168
+ [#882]: https://github.com/DataDog/dd-trace-rb/issues/882
2169
+ [#883]: https://github.com/DataDog/dd-trace-rb/issues/883
2170
+ [#884]: https://github.com/DataDog/dd-trace-rb/issues/884
2171
+ [#885]: https://github.com/DataDog/dd-trace-rb/issues/885
2172
+ [#886]: https://github.com/DataDog/dd-trace-rb/issues/886
2173
+ [#888]: https://github.com/DataDog/dd-trace-rb/issues/888
2174
+ [#890]: https://github.com/DataDog/dd-trace-rb/issues/890
2175
+ [#891]: https://github.com/DataDog/dd-trace-rb/issues/891
2176
+ [#892]: https://github.com/DataDog/dd-trace-rb/issues/892
2177
+ [#893]: https://github.com/DataDog/dd-trace-rb/issues/893
2178
+ [#894]: https://github.com/DataDog/dd-trace-rb/issues/894
2179
+ [#895]: https://github.com/DataDog/dd-trace-rb/issues/895
2180
+ [#896]: https://github.com/DataDog/dd-trace-rb/issues/896
2181
+ [#898]: https://github.com/DataDog/dd-trace-rb/issues/898
2182
+ [#899]: https://github.com/DataDog/dd-trace-rb/issues/899
2183
+ [#900]: https://github.com/DataDog/dd-trace-rb/issues/900
2184
+ [#903]: https://github.com/DataDog/dd-trace-rb/issues/903
2185
+ [#904]: https://github.com/DataDog/dd-trace-rb/issues/904
2186
+ [#906]: https://github.com/DataDog/dd-trace-rb/issues/906
2187
+ [#907]: https://github.com/DataDog/dd-trace-rb/issues/907
2188
+ [#909]: https://github.com/DataDog/dd-trace-rb/issues/909
2189
+ [#910]: https://github.com/DataDog/dd-trace-rb/issues/910
2190
+ [#911]: https://github.com/DataDog/dd-trace-rb/issues/911
2191
+ [#912]: https://github.com/DataDog/dd-trace-rb/issues/912
2192
+ [#913]: https://github.com/DataDog/dd-trace-rb/issues/913
2193
+ [#914]: https://github.com/DataDog/dd-trace-rb/issues/914
2194
+ [#915]: https://github.com/DataDog/dd-trace-rb/issues/915
2195
+ [#917]: https://github.com/DataDog/dd-trace-rb/issues/917
2196
+ [#918]: https://github.com/DataDog/dd-trace-rb/issues/918
2197
+ [#919]: https://github.com/DataDog/dd-trace-rb/issues/919
2198
+ [#920]: https://github.com/DataDog/dd-trace-rb/issues/920
2199
+ [#921]: https://github.com/DataDog/dd-trace-rb/issues/921
2200
+ [#927]: https://github.com/DataDog/dd-trace-rb/issues/927
2201
+ [#928]: https://github.com/DataDog/dd-trace-rb/issues/928
2202
+ [#929]: https://github.com/DataDog/dd-trace-rb/issues/929
2203
+ [#930]: https://github.com/DataDog/dd-trace-rb/issues/930
2204
+ [#932]: https://github.com/DataDog/dd-trace-rb/issues/932
2205
+ [#933]: https://github.com/DataDog/dd-trace-rb/issues/933
2206
+ [#934]: https://github.com/DataDog/dd-trace-rb/issues/934
2207
+ [#935]: https://github.com/DataDog/dd-trace-rb/issues/935
2208
+ [#937]: https://github.com/DataDog/dd-trace-rb/issues/937
2209
+ [#938]: https://github.com/DataDog/dd-trace-rb/issues/938
2210
+ [#940]: https://github.com/DataDog/dd-trace-rb/issues/940
2211
+ [#942]: https://github.com/DataDog/dd-trace-rb/issues/942
2212
+ [#943]: https://github.com/DataDog/dd-trace-rb/issues/943
2213
+ [#944]: https://github.com/DataDog/dd-trace-rb/issues/944
2214
+ [#945]: https://github.com/DataDog/dd-trace-rb/issues/945
2215
+ [#947]: https://github.com/DataDog/dd-trace-rb/issues/947
2216
+ [#948]: https://github.com/DataDog/dd-trace-rb/issues/948
2217
+ [#949]: https://github.com/DataDog/dd-trace-rb/issues/949
2218
+ [#950]: https://github.com/DataDog/dd-trace-rb/issues/950
2219
+ [#951]: https://github.com/DataDog/dd-trace-rb/issues/951
2220
+ [#952]: https://github.com/DataDog/dd-trace-rb/issues/952
2221
+ [#953]: https://github.com/DataDog/dd-trace-rb/issues/953
2222
+ [#954]: https://github.com/DataDog/dd-trace-rb/issues/954
2223
+ [#955]: https://github.com/DataDog/dd-trace-rb/issues/955
2224
+ [#956]: https://github.com/DataDog/dd-trace-rb/issues/956
2225
+ [#957]: https://github.com/DataDog/dd-trace-rb/issues/957
2226
+ [#960]: https://github.com/DataDog/dd-trace-rb/issues/960
2227
+ [#961]: https://github.com/DataDog/dd-trace-rb/issues/961
2228
+ [#964]: https://github.com/DataDog/dd-trace-rb/issues/964
2229
+ [#965]: https://github.com/DataDog/dd-trace-rb/issues/965
2230
+ [#966]: https://github.com/DataDog/dd-trace-rb/issues/966
2231
+ [#967]: https://github.com/DataDog/dd-trace-rb/issues/967
2232
+ [#968]: https://github.com/DataDog/dd-trace-rb/issues/968
2233
+ [#969]: https://github.com/DataDog/dd-trace-rb/issues/969
2234
+ [#971]: https://github.com/DataDog/dd-trace-rb/issues/971
2235
+ [#972]: https://github.com/DataDog/dd-trace-rb/issues/972
2236
+ [#973]: https://github.com/DataDog/dd-trace-rb/issues/973
2237
+ [#974]: https://github.com/DataDog/dd-trace-rb/issues/974
2238
+ [#975]: https://github.com/DataDog/dd-trace-rb/issues/975
2239
+ [#977]: https://github.com/DataDog/dd-trace-rb/issues/977
2240
+ [#980]: https://github.com/DataDog/dd-trace-rb/issues/980
2241
+ [#981]: https://github.com/DataDog/dd-trace-rb/issues/981
2242
+ [#982]: https://github.com/DataDog/dd-trace-rb/issues/982
2243
+ [#983]: https://github.com/DataDog/dd-trace-rb/issues/983
2244
+ [#985]: https://github.com/DataDog/dd-trace-rb/issues/985
2245
+ [#986]: https://github.com/DataDog/dd-trace-rb/issues/986
2246
+ [#988]: https://github.com/DataDog/dd-trace-rb/issues/988
2247
+ [#989]: https://github.com/DataDog/dd-trace-rb/issues/989
2248
+ [#990]: https://github.com/DataDog/dd-trace-rb/issues/990
2249
+ [#991]: https://github.com/DataDog/dd-trace-rb/issues/991
2250
+ [#993]: https://github.com/DataDog/dd-trace-rb/issues/993
2251
+ [#995]: https://github.com/DataDog/dd-trace-rb/issues/995
2252
+ [#996]: https://github.com/DataDog/dd-trace-rb/issues/996
2253
+ [#997]: https://github.com/DataDog/dd-trace-rb/issues/997
2254
+ [#1000]: https://github.com/DataDog/dd-trace-rb/issues/1000
2255
+ [#1004]: https://github.com/DataDog/dd-trace-rb/issues/1004
2256
+ [#1005]: https://github.com/DataDog/dd-trace-rb/issues/1005
2257
+ [#1006]: https://github.com/DataDog/dd-trace-rb/issues/1006
2258
+ [#1008]: https://github.com/DataDog/dd-trace-rb/issues/1008
2259
+ [#1009]: https://github.com/DataDog/dd-trace-rb/issues/1009
2260
+ [#1010]: https://github.com/DataDog/dd-trace-rb/issues/1010
2261
+ [#1015]: https://github.com/DataDog/dd-trace-rb/issues/1015
2262
+ [#1021]: https://github.com/DataDog/dd-trace-rb/issues/1021
2263
+ [#1023]: https://github.com/DataDog/dd-trace-rb/issues/1023
2264
+ [#1027]: https://github.com/DataDog/dd-trace-rb/issues/1027
2265
+ [#1030]: https://github.com/DataDog/dd-trace-rb/issues/1030
2266
+ [#1031]: https://github.com/DataDog/dd-trace-rb/issues/1031
2267
+ [#1032]: https://github.com/DataDog/dd-trace-rb/issues/1032
2268
+ [#1033]: https://github.com/DataDog/dd-trace-rb/issues/1033
2269
+ [#1034]: https://github.com/DataDog/dd-trace-rb/issues/1034
2270
+ [#1035]: https://github.com/DataDog/dd-trace-rb/issues/1035
2271
+ [#1037]: https://github.com/DataDog/dd-trace-rb/issues/1037
2272
+ [#1041]: https://github.com/DataDog/dd-trace-rb/issues/1041
2273
+ [#1043]: https://github.com/DataDog/dd-trace-rb/issues/1043
2274
+ [#1045]: https://github.com/DataDog/dd-trace-rb/issues/1045
2275
+ [#1046]: https://github.com/DataDog/dd-trace-rb/issues/1046
2276
+ [#1047]: https://github.com/DataDog/dd-trace-rb/issues/1047
2277
+ [#1051]: https://github.com/DataDog/dd-trace-rb/issues/1051
2278
+ [#1054]: https://github.com/DataDog/dd-trace-rb/issues/1054
2279
+ [#1057]: https://github.com/DataDog/dd-trace-rb/issues/1057
2280
+ [#1062]: https://github.com/DataDog/dd-trace-rb/issues/1062
2281
+ [#1070]: https://github.com/DataDog/dd-trace-rb/issues/1070
2282
+ [#1071]: https://github.com/DataDog/dd-trace-rb/issues/1071
2283
+ [#1072]: https://github.com/DataDog/dd-trace-rb/issues/1072
2284
+ [#1073]: https://github.com/DataDog/dd-trace-rb/issues/1073
2285
+ [#1074]: https://github.com/DataDog/dd-trace-rb/issues/1074
2286
+ [#1075]: https://github.com/DataDog/dd-trace-rb/issues/1075
2287
+ [#1076]: https://github.com/DataDog/dd-trace-rb/issues/1076
2288
+ [#1079]: https://github.com/DataDog/dd-trace-rb/issues/1079
2289
+ [#1081]: https://github.com/DataDog/dd-trace-rb/issues/1081
2290
+ [#1082]: https://github.com/DataDog/dd-trace-rb/issues/1082
2291
+ [#1086]: https://github.com/DataDog/dd-trace-rb/issues/1086
2292
+ [#1089]: https://github.com/DataDog/dd-trace-rb/issues/1089
2293
+ [#1090]: https://github.com/DataDog/dd-trace-rb/issues/1090
2294
+ [#1091]: https://github.com/DataDog/dd-trace-rb/issues/1091
2295
+ [#1092]: https://github.com/DataDog/dd-trace-rb/issues/1092
2296
+ [#1099]: https://github.com/DataDog/dd-trace-rb/issues/1099
2297
+ [#1100]: https://github.com/DataDog/dd-trace-rb/issues/1100
2298
+ [#1103]: https://github.com/DataDog/dd-trace-rb/issues/1103
2299
+ [#1104]: https://github.com/DataDog/dd-trace-rb/issues/1104
2300
+ [#1105]: https://github.com/DataDog/dd-trace-rb/issues/1105
2301
+ [#1107]: https://github.com/DataDog/dd-trace-rb/issues/1107
2302
+ [#1109]: https://github.com/DataDog/dd-trace-rb/issues/1109
2303
+ [#1115]: https://github.com/DataDog/dd-trace-rb/issues/1115
2304
+ [#1116]: https://github.com/DataDog/dd-trace-rb/issues/1116
2305
+ [#1118]: https://github.com/DataDog/dd-trace-rb/issues/1118
2306
+ [#1119]: https://github.com/DataDog/dd-trace-rb/issues/1119
2307
+ [#1120]: https://github.com/DataDog/dd-trace-rb/issues/1120
2308
+ [#1121]: https://github.com/DataDog/dd-trace-rb/issues/1121
2309
+ [#1122]: https://github.com/DataDog/dd-trace-rb/issues/1122
2310
+ [#1124]: https://github.com/DataDog/dd-trace-rb/issues/1124
2311
+ [#1125]: https://github.com/DataDog/dd-trace-rb/issues/1125
2312
+ [#1126]: https://github.com/DataDog/dd-trace-rb/issues/1126
2313
+ [#1127]: https://github.com/DataDog/dd-trace-rb/issues/1127
2314
+ [#1128]: https://github.com/DataDog/dd-trace-rb/issues/1128
2315
+ [#1129]: https://github.com/DataDog/dd-trace-rb/issues/1129
2316
+ [#1131]: https://github.com/DataDog/dd-trace-rb/issues/1131
2317
+ [#1133]: https://github.com/DataDog/dd-trace-rb/issues/1133
2318
+ [#1134]: https://github.com/DataDog/dd-trace-rb/issues/1134
2319
+ [#1137]: https://github.com/DataDog/dd-trace-rb/issues/1137
2320
+ [#1138]: https://github.com/DataDog/dd-trace-rb/issues/1138
2321
+ [#1141]: https://github.com/DataDog/dd-trace-rb/issues/1141
2322
+ [#1145]: https://github.com/DataDog/dd-trace-rb/issues/1145
2323
+ [#1146]: https://github.com/DataDog/dd-trace-rb/issues/1146
2324
+ [#1148]: https://github.com/DataDog/dd-trace-rb/issues/1148
2325
+ [#1149]: https://github.com/DataDog/dd-trace-rb/issues/1149
2326
+ [#1150]: https://github.com/DataDog/dd-trace-rb/issues/1150
2327
+ [#1151]: https://github.com/DataDog/dd-trace-rb/issues/1151
2328
+ [#1152]: https://github.com/DataDog/dd-trace-rb/issues/1152
2329
+ [#1153]: https://github.com/DataDog/dd-trace-rb/issues/1153
2330
+ [#1154]: https://github.com/DataDog/dd-trace-rb/issues/1154
2331
+ [#1155]: https://github.com/DataDog/dd-trace-rb/issues/1155
2332
+ [#1156]: https://github.com/DataDog/dd-trace-rb/issues/1156
2333
+ [#1157]: https://github.com/DataDog/dd-trace-rb/issues/1157
2334
+ [#1158]: https://github.com/DataDog/dd-trace-rb/issues/1158
2335
+ [#1159]: https://github.com/DataDog/dd-trace-rb/issues/1159
2336
+ [#1160]: https://github.com/DataDog/dd-trace-rb/issues/1160
2337
+ [#1162]: https://github.com/DataDog/dd-trace-rb/issues/1162
2338
+ [#1163]: https://github.com/DataDog/dd-trace-rb/issues/1163
2339
+ [#1165]: https://github.com/DataDog/dd-trace-rb/issues/1165
2340
+ [#1172]: https://github.com/DataDog/dd-trace-rb/issues/1172
2341
+ [#1173]: https://github.com/DataDog/dd-trace-rb/issues/1173
2342
+ [#1176]: https://github.com/DataDog/dd-trace-rb/issues/1176
2343
+ [#1177]: https://github.com/DataDog/dd-trace-rb/issues/1177
2344
+ [#1178]: https://github.com/DataDog/dd-trace-rb/issues/1178
2345
+ [#1179]: https://github.com/DataDog/dd-trace-rb/issues/1179
2346
+ [#1180]: https://github.com/DataDog/dd-trace-rb/issues/1180
2347
+ [#1181]: https://github.com/DataDog/dd-trace-rb/issues/1181
2348
+ [#1182]: https://github.com/DataDog/dd-trace-rb/issues/1182
2349
+ [#1183]: https://github.com/DataDog/dd-trace-rb/issues/1183
2350
+ [#1184]: https://github.com/DataDog/dd-trace-rb/issues/1184
2351
+ [#1185]: https://github.com/DataDog/dd-trace-rb/issues/1185
2352
+ [#1186]: https://github.com/DataDog/dd-trace-rb/issues/1186
2353
+ [#1187]: https://github.com/DataDog/dd-trace-rb/issues/1187
2354
+ [#1188]: https://github.com/DataDog/dd-trace-rb/issues/1188
2355
+ [#1189]: https://github.com/DataDog/dd-trace-rb/issues/1189
2356
+ [#1195]: https://github.com/DataDog/dd-trace-rb/issues/1195
2357
+ [#1198]: https://github.com/DataDog/dd-trace-rb/issues/1198
2358
+ [#1199]: https://github.com/DataDog/dd-trace-rb/issues/1199
2359
+ [#1200]: https://github.com/DataDog/dd-trace-rb/issues/1200
2360
+ [#1203]: https://github.com/DataDog/dd-trace-rb/issues/1203
2361
+ [#1204]: https://github.com/DataDog/dd-trace-rb/issues/1204
2362
+ [#1210]: https://github.com/DataDog/dd-trace-rb/issues/1210
2363
+ [#1212]: https://github.com/DataDog/dd-trace-rb/issues/1212
2364
+ [#1213]: https://github.com/DataDog/dd-trace-rb/issues/1213
2365
+ [#1216]: https://github.com/DataDog/dd-trace-rb/issues/1216
2366
+ [#1217]: https://github.com/DataDog/dd-trace-rb/issues/1217
2367
+ [#1218]: https://github.com/DataDog/dd-trace-rb/issues/1218
2368
+ [#1220]: https://github.com/DataDog/dd-trace-rb/issues/1220
2369
+ [#1224]: https://github.com/DataDog/dd-trace-rb/issues/1224
2370
+ [#1225]: https://github.com/DataDog/dd-trace-rb/issues/1225
2371
+ [#1226]: https://github.com/DataDog/dd-trace-rb/issues/1226
2372
+ [#1227]: https://github.com/DataDog/dd-trace-rb/issues/1227
2373
+ [#1229]: https://github.com/DataDog/dd-trace-rb/issues/1229
2374
+ [#1232]: https://github.com/DataDog/dd-trace-rb/issues/1232
2375
+ [#1233]: https://github.com/DataDog/dd-trace-rb/issues/1233
2376
+ [#1234]: https://github.com/DataDog/dd-trace-rb/issues/1234
2377
+ [#1235]: https://github.com/DataDog/dd-trace-rb/issues/1235
2378
+ [#1236]: https://github.com/DataDog/dd-trace-rb/issues/1236
2379
+ [#1237]: https://github.com/DataDog/dd-trace-rb/issues/1237
2380
+ [#1238]: https://github.com/DataDog/dd-trace-rb/issues/1238
2381
+ [#1239]: https://github.com/DataDog/dd-trace-rb/issues/1239
2382
+ [#1243]: https://github.com/DataDog/dd-trace-rb/issues/1243
2383
+ [#1244]: https://github.com/DataDog/dd-trace-rb/issues/1244
2384
+ [#1248]: https://github.com/DataDog/dd-trace-rb/issues/1248
2385
+ [#1256]: https://github.com/DataDog/dd-trace-rb/issues/1256
2386
+ [#1257]: https://github.com/DataDog/dd-trace-rb/issues/1257
2387
+ [#1260]: https://github.com/DataDog/dd-trace-rb/issues/1260
2388
+ [#1262]: https://github.com/DataDog/dd-trace-rb/issues/1262
2389
+ [#1263]: https://github.com/DataDog/dd-trace-rb/issues/1263
2390
+ [#1264]: https://github.com/DataDog/dd-trace-rb/issues/1264
2391
+ [#1266]: https://github.com/DataDog/dd-trace-rb/issues/1266
2392
+ [#1267]: https://github.com/DataDog/dd-trace-rb/issues/1267
2393
+ [#1268]: https://github.com/DataDog/dd-trace-rb/issues/1268
2394
+ [#1269]: https://github.com/DataDog/dd-trace-rb/issues/1269
2395
+ [#1270]: https://github.com/DataDog/dd-trace-rb/issues/1270
2396
+ [#1272]: https://github.com/DataDog/dd-trace-rb/issues/1272
2397
+ [#1273]: https://github.com/DataDog/dd-trace-rb/issues/1273
2398
+ [#1275]: https://github.com/DataDog/dd-trace-rb/issues/1275
2399
+ [#1276]: https://github.com/DataDog/dd-trace-rb/issues/1276
2400
+ [#1277]: https://github.com/DataDog/dd-trace-rb/issues/1277
2401
+ [#1278]: https://github.com/DataDog/dd-trace-rb/issues/1278
2402
+ [#1279]: https://github.com/DataDog/dd-trace-rb/issues/1279
2403
+ [#1281]: https://github.com/DataDog/dd-trace-rb/issues/1281
2404
+ [#1283]: https://github.com/DataDog/dd-trace-rb/issues/1283
2405
+ [#1284]: https://github.com/DataDog/dd-trace-rb/issues/1284
2406
+ [#1286]: https://github.com/DataDog/dd-trace-rb/issues/1286
2407
+ [#1287]: https://github.com/DataDog/dd-trace-rb/issues/1287
2408
+ [#1289]: https://github.com/DataDog/dd-trace-rb/issues/1289
2409
+ [#1291]: https://github.com/DataDog/dd-trace-rb/issues/1291
2410
+ [#1293]: https://github.com/DataDog/dd-trace-rb/issues/1293
2411
+ [#1295]: https://github.com/DataDog/dd-trace-rb/issues/1295
2412
+ [#1296]: https://github.com/DataDog/dd-trace-rb/issues/1296
2413
+ [#1297]: https://github.com/DataDog/dd-trace-rb/issues/1297
2414
+ [#1298]: https://github.com/DataDog/dd-trace-rb/issues/1298
2415
+ [#1299]: https://github.com/DataDog/dd-trace-rb/issues/1299
2416
+ [#1302]: https://github.com/DataDog/dd-trace-rb/issues/1302
2417
+ [#1303]: https://github.com/DataDog/dd-trace-rb/issues/1303
2418
+ [#1304]: https://github.com/DataDog/dd-trace-rb/issues/1304
2419
+ [#1305]: https://github.com/DataDog/dd-trace-rb/issues/1305
2420
+ [#1306]: https://github.com/DataDog/dd-trace-rb/issues/1306
2421
+ [#1307]: https://github.com/DataDog/dd-trace-rb/issues/1307
2422
+ [#1309]: https://github.com/DataDog/dd-trace-rb/issues/1309
2423
+ [#1311]: https://github.com/DataDog/dd-trace-rb/issues/1311
2424
+ [#1317]: https://github.com/DataDog/dd-trace-rb/issues/1317
2425
+ [#1318]: https://github.com/DataDog/dd-trace-rb/issues/1318
2426
+ [#1319]: https://github.com/DataDog/dd-trace-rb/issues/1319
2427
+ [#1320]: https://github.com/DataDog/dd-trace-rb/issues/1320
2428
+ [#1321]: https://github.com/DataDog/dd-trace-rb/issues/1321
2429
+ [#1323]: https://github.com/DataDog/dd-trace-rb/issues/1323
2430
+ [#1325]: https://github.com/DataDog/dd-trace-rb/issues/1325
2431
+ [#1326]: https://github.com/DataDog/dd-trace-rb/issues/1326
2432
+ [#1331]: https://github.com/DataDog/dd-trace-rb/issues/1331
2433
+ [#1332]: https://github.com/DataDog/dd-trace-rb/issues/1332
2434
+ [#1334]: https://github.com/DataDog/dd-trace-rb/issues/1334
2435
+ [#1336]: https://github.com/DataDog/dd-trace-rb/issues/1336
2436
+ [#1341]: https://github.com/DataDog/dd-trace-rb/issues/1341
2437
+ [#1342]: https://github.com/DataDog/dd-trace-rb/issues/1342
2438
+ [#1343]: https://github.com/DataDog/dd-trace-rb/issues/1343
2439
+ [#1346]: https://github.com/DataDog/dd-trace-rb/issues/1346
2440
+ [#1347]: https://github.com/DataDog/dd-trace-rb/issues/1347
2441
+ [#1350]: https://github.com/DataDog/dd-trace-rb/issues/1350
2442
+ [#1352]: https://github.com/DataDog/dd-trace-rb/issues/1352
2443
+ [#1353]: https://github.com/DataDog/dd-trace-rb/issues/1353
2444
+ [#1354]: https://github.com/DataDog/dd-trace-rb/issues/1354
2445
+ [#1357]: https://github.com/DataDog/dd-trace-rb/issues/1357
2446
+ [#1365]: https://github.com/DataDog/dd-trace-rb/issues/1365
2447
+ [#1366]: https://github.com/DataDog/dd-trace-rb/issues/1366
2448
+ [#1367]: https://github.com/DataDog/dd-trace-rb/issues/1367
2449
+ [#1368]: https://github.com/DataDog/dd-trace-rb/issues/1368
2450
+ [#1369]: https://github.com/DataDog/dd-trace-rb/issues/1369
2451
+ [#1370]: https://github.com/DataDog/dd-trace-rb/issues/1370
2452
+ [#1371]: https://github.com/DataDog/dd-trace-rb/issues/1371
2453
+ [#1374]: https://github.com/DataDog/dd-trace-rb/issues/1374
2454
+ [#1377]: https://github.com/DataDog/dd-trace-rb/issues/1377
2455
+ [#1378]: https://github.com/DataDog/dd-trace-rb/issues/1378
2456
+ [#1379]: https://github.com/DataDog/dd-trace-rb/issues/1379
2457
+ [#1380]: https://github.com/DataDog/dd-trace-rb/issues/1380
2458
+ [#1381]: https://github.com/DataDog/dd-trace-rb/issues/1381
2459
+ [#1393]: https://github.com/DataDog/dd-trace-rb/issues/1393
2460
+ [#1394]: https://github.com/DataDog/dd-trace-rb/issues/1394
2461
+ [#1396]: https://github.com/DataDog/dd-trace-rb/issues/1396
2462
+ [#1397]: https://github.com/DataDog/dd-trace-rb/issues/1397
2463
+ [#1398]: https://github.com/DataDog/dd-trace-rb/issues/1398
2464
+ [#1399]: https://github.com/DataDog/dd-trace-rb/issues/1399
2465
+ [#1400]: https://github.com/DataDog/dd-trace-rb/issues/1400
2466
+ [#1403]: https://github.com/DataDog/dd-trace-rb/issues/1403
2467
+ [#1406]: https://github.com/DataDog/dd-trace-rb/issues/1406
2468
+ [#1408]: https://github.com/DataDog/dd-trace-rb/issues/1408
2469
+ [#1409]: https://github.com/DataDog/dd-trace-rb/issues/1409
2470
+ [#1412]: https://github.com/DataDog/dd-trace-rb/issues/1412
2471
+ [#1414]: https://github.com/DataDog/dd-trace-rb/issues/1414
2472
+ [#1415]: https://github.com/DataDog/dd-trace-rb/issues/1415
2473
+ [#1416]: https://github.com/DataDog/dd-trace-rb/issues/1416
2474
+ [#1417]: https://github.com/DataDog/dd-trace-rb/issues/1417
2475
+ [#1418]: https://github.com/DataDog/dd-trace-rb/issues/1418
2476
+ [#1419]: https://github.com/DataDog/dd-trace-rb/issues/1419
2477
+ [#1420]: https://github.com/DataDog/dd-trace-rb/issues/1420
2478
+ [#1421]: https://github.com/DataDog/dd-trace-rb/issues/1421
2479
+ [#1422]: https://github.com/DataDog/dd-trace-rb/issues/1422
2480
+ [#1426]: https://github.com/DataDog/dd-trace-rb/issues/1426
2481
+ [#1427]: https://github.com/DataDog/dd-trace-rb/issues/1427
2482
+ [#1428]: https://github.com/DataDog/dd-trace-rb/issues/1428
2483
+ [#1429]: https://github.com/DataDog/dd-trace-rb/issues/1429
2484
+ [#1430]: https://github.com/DataDog/dd-trace-rb/issues/1430
2485
+ [#1431]: https://github.com/DataDog/dd-trace-rb/issues/1431
2486
+ [#1432]: https://github.com/DataDog/dd-trace-rb/issues/1432
2487
+ [#1435]: https://github.com/DataDog/dd-trace-rb/issues/1435
2488
+ [#1441]: https://github.com/DataDog/dd-trace-rb/issues/1441
2489
+ [#1445]: https://github.com/DataDog/dd-trace-rb/issues/1445
2490
+ [#1447]: https://github.com/DataDog/dd-trace-rb/issues/1447
2491
+ [#1449]: https://github.com/DataDog/dd-trace-rb/issues/1449
2492
+ [#1453]: https://github.com/DataDog/dd-trace-rb/issues/1453
2493
+ [#1455]: https://github.com/DataDog/dd-trace-rb/issues/1455
2494
+ [#1456]: https://github.com/DataDog/dd-trace-rb/issues/1456
2495
+ [#1457]: https://github.com/DataDog/dd-trace-rb/issues/1457
2496
+ [#1461]: https://github.com/DataDog/dd-trace-rb/issues/1461
2497
+ [#1472]: https://github.com/DataDog/dd-trace-rb/issues/1472
2498
+ [#1473]: https://github.com/DataDog/dd-trace-rb/issues/1473
2499
+ [#1475]: https://github.com/DataDog/dd-trace-rb/issues/1475
2500
+ [#1480]: https://github.com/DataDog/dd-trace-rb/issues/1480
2501
+ [#1487]: https://github.com/DataDog/dd-trace-rb/issues/1487
2502
+ [#1489]: https://github.com/DataDog/dd-trace-rb/issues/1489
2503
+ [#1494]: https://github.com/DataDog/dd-trace-rb/issues/1494
2504
+ [#1495]: https://github.com/DataDog/dd-trace-rb/issues/1495
2505
+ [#1497]: https://github.com/DataDog/dd-trace-rb/issues/1497
2506
+ [#1500]: https://github.com/DataDog/dd-trace-rb/issues/1500
2507
+ [#1502]: https://github.com/DataDog/dd-trace-rb/issues/1502
2508
+ [#1503]: https://github.com/DataDog/dd-trace-rb/issues/1503
2509
+ [#1504]: https://github.com/DataDog/dd-trace-rb/issues/1504
2510
+ [#1506]: https://github.com/DataDog/dd-trace-rb/issues/1506
2511
+ [#1507]: https://github.com/DataDog/dd-trace-rb/issues/1507
2512
+ [#1509]: https://github.com/DataDog/dd-trace-rb/issues/1509
2513
+ [#1510]: https://github.com/DataDog/dd-trace-rb/issues/1510
2514
+ [#1523]: https://github.com/DataDog/dd-trace-rb/issues/1523
2515
+ [#1524]: https://github.com/DataDog/dd-trace-rb/issues/1524
2516
+ [#1529]: https://github.com/DataDog/dd-trace-rb/issues/1529
2517
+ [#1533]: https://github.com/DataDog/dd-trace-rb/issues/1533
2518
+ [#1534]: https://github.com/DataDog/dd-trace-rb/issues/1534
2519
+ [#1535]: https://github.com/DataDog/dd-trace-rb/issues/1535
2520
+ [#1537]: https://github.com/DataDog/dd-trace-rb/issues/1537
2521
+ [#1543]: https://github.com/DataDog/dd-trace-rb/issues/1543
2522
+ [#1544]: https://github.com/DataDog/dd-trace-rb/issues/1544
2523
+ [#1552]: https://github.com/DataDog/dd-trace-rb/issues/1552
2524
+ [#1555]: https://github.com/DataDog/dd-trace-rb/issues/1555
2525
+ [#1556]: https://github.com/DataDog/dd-trace-rb/issues/1556
2526
+ [#1557]: https://github.com/DataDog/dd-trace-rb/issues/1557
2527
+ [#1560]: https://github.com/DataDog/dd-trace-rb/issues/1560
2528
+ [#1561]: https://github.com/DataDog/dd-trace-rb/issues/1561
2529
+ [#1566]: https://github.com/DataDog/dd-trace-rb/issues/1566
2530
+ [#1570]: https://github.com/DataDog/dd-trace-rb/issues/1570
2531
+ [#1572]: https://github.com/DataDog/dd-trace-rb/issues/1572
2532
+ [#1576]: https://github.com/DataDog/dd-trace-rb/issues/1576
2533
+ [#1583]: https://github.com/DataDog/dd-trace-rb/issues/1583
2534
+ [#1584]: https://github.com/DataDog/dd-trace-rb/issues/1584
2535
+ [#1585]: https://github.com/DataDog/dd-trace-rb/issues/1585
2536
+ [#1586]: https://github.com/DataDog/dd-trace-rb/issues/1586
2537
+ [#1587]: https://github.com/DataDog/dd-trace-rb/issues/1587
2538
+ [#1590]: https://github.com/DataDog/dd-trace-rb/issues/1590
2539
+ [#1592]: https://github.com/DataDog/dd-trace-rb/issues/1592
2540
+ [#1594]: https://github.com/DataDog/dd-trace-rb/issues/1594
2541
+ [#1595]: https://github.com/DataDog/dd-trace-rb/issues/1595
2542
+ [#1601]: https://github.com/DataDog/dd-trace-rb/issues/1601
2543
+ [#1607]: https://github.com/DataDog/dd-trace-rb/issues/1607
2544
+ [#1622]: https://github.com/DataDog/dd-trace-rb/issues/1622
2545
+ [#1623]: https://github.com/DataDog/dd-trace-rb/issues/1623
2546
+ [#1626]: https://github.com/DataDog/dd-trace-rb/issues/1626
2547
+ [#1628]: https://github.com/DataDog/dd-trace-rb/issues/1628
2548
+ [#1629]: https://github.com/DataDog/dd-trace-rb/issues/1629
2549
+ [#1630]: https://github.com/DataDog/dd-trace-rb/issues/1630
2550
+ [#1632]: https://github.com/DataDog/dd-trace-rb/issues/1632
2551
+ [#1636]: https://github.com/DataDog/dd-trace-rb/issues/1636
2552
+ [@AdrianLC]: https://github.com/AdrianLC
2553
+ [@Azure7111]: https://github.com/Azure7111
2554
+ [@BabyGroot]: https://github.com/BabyGroot
2555
+ [@DocX]: https://github.com/DocX
2556
+ [@EpiFouloux]: https://github.com/EpiFouloux
2557
+ [@EvNomad]: https://github.com/EvNomad
2558
+ [@HoneyryderChuck]: https://github.com/HoneyryderChuck
2559
+ [@JamesHarker]: https://github.com/JamesHarker
2560
+ [@Jared-Prime]: https://github.com/Jared-Prime
2561
+ [@Joas1988]: https://github.com/Joas1988
2562
+ [@JustSnow]: https://github.com/JustSnow
2563
+ [@MMartyn]: https://github.com/MMartyn
2564
+ [@NobodysNightmare]: https://github.com/NobodysNightmare
2565
+ [@Redapted]: https://github.com/Redapted
2566
+ [@Sticksword]: https://github.com/Sticksword
2567
+ [@Supy]: https://github.com/Supy
2568
+ [@Yurokle]: https://github.com/Yurokle
2569
+ [@ZimbiX]: https://github.com/ZimbiX
2570
+ [@agirlnamedsophia]: https://github.com/agirlnamedsophia
2571
+ [@agrobbin]: https://github.com/agrobbin
2572
+ [@ahammel]: https://github.com/ahammel
2573
+ [@al-kudryavtsev]: https://github.com/al-kudryavtsev
2574
+ [@alksl]: https://github.com/alksl
2575
+ [@alloy]: https://github.com/alloy
2576
+ [@aurelian]: https://github.com/aurelian
2577
+ [@awendt]: https://github.com/awendt
2578
+ [@bartekbsh]: https://github.com/bartekbsh
2579
+ [@benhutton]: https://github.com/benhutton
2580
+ [@bheemreddy181]: https://github.com/bheemreddy181
2581
+ [@blaines]: https://github.com/blaines
2582
+ [@brafales]: https://github.com/brafales
2583
+ [@bzf]: https://github.com/bzf
2584
+ [@callumj]: https://github.com/callumj
2585
+ [@cjford]: https://github.com/cjford
2586
+ [@ck3g]: https://github.com/ck3g
2587
+ [@components]: https://github.com/components
2588
+ [@cswatt]: https://github.com/cswatt
2589
+ [@dasch]: https://github.com/dasch
2590
+ [@dim]: https://github.com/dim
2591
+ [@dirk]: https://github.com/dirk
2592
+ [@djmb]: https://github.com/djmb
2593
+ [@dorner]: https://github.com/dorner
2594
+ [@drcapulet]: https://github.com/drcapulet
2595
+ [@e1senh0rn]: https://github.com/e1senh0rn
2596
+ [@elyalvarado]: https://github.com/elyalvarado
2597
+ [@ericmustin]: https://github.com/ericmustin
2598
+ [@erict-square]: https://github.com/erict-square
2599
+ [@errriclee]: https://github.com/errriclee
2600
+ [@evan-waters]: https://github.com/evan-waters
2601
+ [@fledman]: https://github.com/fledman
2602
+ [@frsantos]: https://github.com/frsantos
2603
+ [@fteem]: https://github.com/fteem
2604
+ [@gaborszakacs]: https://github.com/gaborszakacs
2605
+ [@giancarlocosta]: https://github.com/giancarlocosta
2606
+ [@gingerlime]: https://github.com/gingerlime
2607
+ [@gkampjes]: https://github.com/gkampjes
2608
+ [@gottfrois]: https://github.com/gottfrois
2609
+ [@guizmaii]: https://github.com/guizmaii
2610
+ [@hawknewton]: https://github.com/hawknewton
2611
+ [@hs-bguven]: https://github.com/hs-bguven
2612
+ [@illdelph]: https://github.com/illdelph
2613
+ [@jamiehodge]: https://github.com/jamiehodge
2614
+ [@janz93]: https://github.com/janz93
2615
+ [@jeffjo]: https://github.com/jeffjo
2616
+ [@jfrancoist]: https://github.com/jfrancoist
2617
+ [@joeyAghion]: https://github.com/joeyAghion
2618
+ [@jpaulgs]: https://github.com/jpaulgs
2619
+ [@jvalanen]: https://github.com/jvalanen
2620
+ [@kelvin-acosta]: https://github.com/kelvin-acosta
2621
+ [@kexoth]: https://github.com/kexoth
2622
+ [@kissrobber]: https://github.com/kissrobber
2623
+ [@kitop]: https://github.com/kitop
2624
+ [@letiesperon]: https://github.com/letiesperon
2625
+ [@link04]: https://github.com/link04
2626
+ [@lloeki]: https://github.com/lloeki
2627
+ [@mantrala]: https://github.com/mantrala
2628
+ [@masato-hi]: https://github.com/masato-hi
2629
+ [@matchbookmac]: https://github.com/matchbookmac
2630
+ [@mberlanda]: https://github.com/mberlanda
2631
+ [@mdehoog]: https://github.com/mdehoog
2632
+ [@mdross95]: https://github.com/mdross95
2633
+ [@michaelkl]: https://github.com/michaelkl
2634
+ [@mriddle]: https://github.com/mriddle
2635
+ [@mstruve]: https://github.com/mstruve
2636
+ [@mustela]: https://github.com/mustela
2637
+ [@nic-lan]: https://github.com/nic-lan
2638
+ [@noma4i]: https://github.com/noma4i
2639
+ [@norbertnytko]: https://github.com/norbertnytko
2640
+ [@orekyuu]: https://github.com/orekyuu
2641
+ [@palin]: https://github.com/palin
2642
+ [@pj0tr]: https://github.com/pj0tr
2643
+ [@psycholein]: https://github.com/psycholein
2644
+ [@pzaich]: https://github.com/pzaich
2645
+ [@rahul342]: https://github.com/rahul342
2646
+ [@randy-girard]: https://github.com/randy-girard
2647
+ [@renchap]: https://github.com/renchap
2648
+ [@ricbartm]: https://github.com/ricbartm
2649
+ [@roccoblues]: https://github.com/roccoblues
2650
+ [@sco11morgan]: https://github.com/sco11morgan
2651
+ [@senny]: https://github.com/senny
2652
+ [@shayonj]: https://github.com/shayonj
2653
+ [@sinsoku]: https://github.com/sinsoku
2654
+ [@soulcutter]: https://github.com/soulcutter
2655
+ [@stefanahman]: https://github.com/stefanahman
2656
+ [@steveh]: https://github.com/steveh
2657
+ [@stormsilver]: https://github.com/stormsilver
2658
+ [@sullimander]: https://github.com/sullimander
2659
+ [@tjgrathwell]: https://github.com/tjgrathwell
2660
+ [@tjwp]: https://github.com/tjwp
2661
+ [@tomasv]: https://github.com/tomasv
2662
+ [@tomgi]: https://github.com/tomgi
2663
+ [@tonypinder]: https://github.com/tonypinder
2664
+ [@twe4ked]: https://github.com/twe4ked
2665
+ [@undergroundwebdesigns]: https://github.com/undergroundwebdesigns
2666
+ [@vramaiah]: https://github.com/vramaiah
2667
+ [@walterking]: https://github.com/walterking
2668
+ [@y-yagi]: https://github.com/y-yagi
2669
+ [@zachmccormick]: https://github.com/zachmccormick