ddtrace 0.42.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 +1474 -362
  5. data/CONTRIBUTING.md +2 -6
  6. data/LICENSE-3rdparty.csv +2 -0
  7. data/README.md +1 -0
  8. data/bin/ddtracerb +15 -0
  9. data/ddtrace.gemspec +18 -39
  10. data/docs/DevelopmentGuide.md +45 -2
  11. data/docs/GettingStarted.md +335 -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 +10 -8
  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 +13 -2
  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 +2 -0
  150. data/lib/ddtrace/contrib/delayed_job/ext.rb +1 -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 +3 -1
  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 +1 -0
  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 +22 -12
  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 +2 -1
  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 +2 -0
  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 +60 -49
  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 -402
  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 -1121
  553. data/Gemfile +0 -7
  554. data/Rakefile +0 -788
  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: 356d9acad651e21531cb323e2894fd187a02e91bd1c68973bf8030b2aa1512a3
4
- data.tar.gz: e9997b324030189490fc43e67dc3a9e4ba4ec9c334e9fe7a08c14ea66b25145b
3
+ metadata.gz: 8f5ee0735d05ecdadc38bbc0978a2087141d136f31b1848845518d2086f877d2
4
+ data.tar.gz: dd677af05b413d5593440aedca7b36dc9aba0c9ba08e9213eb8eb9c5443cb2d9
5
5
  SHA512:
6
- metadata.gz: 2e276f69c9c8c39c63c6b5c8abc7572d18d635f549f0a152acd2fbbd9a3cfe4cb151112fb2a928f0785c054a416087d97fd6650ce057b199598123f89df43e57
7
- data.tar.gz: edc8ad3cd84b445c276f8d26f76ab9d404ce234154ea916fac94c65122628ce2b6cd6f74df450af19e231fe1d20a7f21ed8ee8707c70a7647f58fee51ee16912
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,359 @@
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
+
5
358
  ## [0.42.0] - 2020-10-21
6
359
 
7
360
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
@@ -10,27 +363,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
10
363
 
11
364
  ### Added
12
365
 
13
- - Increase Resque support to include 2.0 (#1213) (@erict-square)
366
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
14
367
 
15
- - Improve gRPC Propagator to support metadata array values (#1203) (@mdehoog)
368
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
16
369
 
17
- - Add CPU benchmarks, diagnostics to tests (#1188, #1198)
370
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
18
371
 
19
- - Access active correlation by Thread (#1200)
372
+ - Access active correlation by Thread ([#1200][])
20
373
 
21
- - Improve delayed_job instrumentation (#1187) (@norbertnytko)
374
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
22
375
 
23
376
  ### Changed
24
377
 
25
378
  ### Fixed
26
379
 
27
- - Improve Rails `log_injection` option to support more Lograge formats (#1210) (@Supy)
380
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
28
381
 
29
- - Fix Changelog (#1199) (@y-yagi)
382
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
30
383
 
31
384
  ### Refactored
32
385
 
33
- - Refactor Trace buffer into multiple components (#1195)
386
+ - Refactor Trace buffer into multiple components ([#1195][])
34
387
 
35
388
  ## [0.41.0] - 2020-09-30
36
389
 
@@ -40,29 +393,29 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
40
393
 
41
394
  ### Added
42
395
 
43
- - Improve duration counting using monotonic clock (#424, #1173) (@soulcutter)
396
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
44
397
 
45
398
  ### Changed
46
399
 
47
- - 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][])
48
401
  - This helps support the way runtime metrics are associated with spans in the UI.
49
- - Faster TraceBuffer for CRuby (#1172)
50
- - Reduce memory usage during gem startup (#1090)
51
- - 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][])
52
405
 
53
406
  ### Fixed
54
407
 
55
- - Improved prepared statement support for Sequel integrations (#1186)
56
- - Fix Sequel instrumentation when executing literal strings (#1185) (@matchbookmac)
57
- - 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][])
58
411
  - This allows users to pass in a custom logger that does not inherit from `Logger` class.
59
- - Correct tracer buffer metric counting (#1182)
60
- - Fix Span#pretty_print for empty duration (#1183)
412
+ - Correct tracer buffer metric counting ([#1182][])
413
+ - Fix Span#pretty_print for empty duration ([#1183][])
61
414
 
62
415
  ### Refactored
63
416
 
64
- - Improvements to test suite & CI (#1179, #1184, #1177, #1178, #1176)
65
- - 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][])
66
419
 
67
420
  ## [0.40.0] - 2020-09-08
68
421
 
@@ -72,19 +425,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
72
425
 
73
426
  ### Added
74
427
 
75
- - Rails `log_injection` option to auto enable log correlation (#1157)
76
- - Que integration (#1141, #1146) (@hs-bguven)
77
- - `Components#startup!` hook (#1151)
78
- - 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][])
79
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`.
80
433
 
81
434
  ### Changed
82
435
 
83
- - Use a single top level span for Racecar consumers (#1150) (@dasch)
436
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
84
437
 
85
438
  ### Fixed
86
439
 
87
- - Sinatra nested modular applications possibly leaking spans (#1035, #1145)
440
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
88
441
 
89
442
  * **BREAKING** for nested modular Sinatra applications only:
90
443
  ```ruby
@@ -97,7 +450,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
97
450
  ```
98
451
  * Non-breaking for classic applications nor modular non-nested applications.
99
452
 
100
- 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.
101
454
 
102
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.
103
456
 
@@ -105,24 +458,24 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
105
458
 
106
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.
107
460
 
108
- 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.
109
462
 
110
- - Rack/Rails span error propagation with `rescue_from` (#1155, #1162)
111
- - Prevent logger recursion during startup (#1158)
112
- - 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][])
113
466
  - These classes represent future work, and not being used at the moment.
114
467
 
115
468
  ### Refactored
116
469
 
117
- - Run CI tests in parallel (#1156)
118
- - Migrate minitest tests to RSpec (#1127, #1128, #1133, #1149, #1152, #1153)
119
- - Improvements to test suite (#1134, #1148, #1163)
120
- - 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][])
121
474
 
122
475
  ### Removed
123
476
 
124
- - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life (#1137)**
125
- - 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][])
126
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.
127
480
 
128
481
  ## [0.39.0] - 2020-08-05
@@ -133,26 +486,26 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
133
486
 
134
487
  ### Added
135
488
 
136
- - JRuby 9.2 support (#1126)
137
- - Sneakers integration (#1121) (@janz93)
489
+ - JRuby 9.2 support ([#1126][])
490
+ - Sneakers integration ([#1121][]) ([@janz93][])
138
491
 
139
492
  ### Changed
140
493
 
141
- - Consistent environment variables across languages (#1115)
142
- - Default logger level from WARN to INFO (#1120) (@gingerlime)
143
- - 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][])
144
497
 
145
498
  ### Fixed
146
499
 
147
- - HTTP::StateError on error responses for http.rb (#1116, #1122) (@evan-waters)
148
- - Startup log error when using the test adapter (#1125, #1131) (@benhutton)
149
- - Warning message for Faraday < 1.0 (#1129) (@fledman, @tjwp)
150
- - 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][])
151
504
 
152
505
  ### Refactored
153
506
 
154
- - Improved ActiveRecord documentation (#1119)
155
- - Improvements to test suite (#1105, #1118)
507
+ - Improved ActiveRecord documentation ([#1119][])
508
+ - Improvements to test suite ([#1105][], [#1118][])
156
509
 
157
510
  ## [0.38.0] - 2020-07-13
158
511
 
@@ -162,28 +515,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
162
515
 
163
516
  ### Added
164
517
 
165
- - http.rb integration (#529, #853)
166
- - Kafka integration (#1070) (@tjwp)
167
- - Span#set_tags (#1081) (@DocX)
168
- - retry_count tag for Sidekiq jobs (#1089) (@elyalvarado)
169
- - Startup environment log (#1104, #1109)
170
- - 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][])
171
524
 
172
525
  ### Changed
173
526
 
174
- - Auto instrument Faraday default connection (#1057)
175
- - Sidekiq client middleware is now the same for client and server (#1099) (@drcapulet)
176
- - 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][])
177
530
 
178
531
  ### Fixed
179
532
 
180
- - Ensure fatal exceptions are propagated (#1100)
181
- - Respect child_of: option in Tracer#trace (#1082) (@DocX)
182
- - 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][])
183
536
 
184
537
  ### Refactored
185
538
 
186
- - Improvements to test suite (#1092, #1103)
539
+ - Improvements to test suite ([#1092][], [#1103][])
187
540
 
188
541
  ## [0.37.0] - 2020-06-24
189
542
 
@@ -193,12 +546,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
193
546
 
194
547
  ### Refactored
195
548
 
196
- - Documentation improvements regarding Datadog Agent defaults (#1074) (@cswatt)
197
- - 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][])
198
551
 
199
552
  ### Removed
200
553
 
201
- - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= (#1072, #1079)
554
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
202
555
  - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
203
556
  - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
204
557
 
@@ -208,10 +561,10 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
208
561
 
209
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.
210
563
 
211
- - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= (#1073)
564
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
212
565
  - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
213
566
  - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
214
- - 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.
215
568
 
216
569
  ### Migration
217
570
 
@@ -232,16 +585,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
232
585
 
233
586
  ### Changed
234
587
 
235
- - 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][])
236
589
 
237
590
  ### Fixed
238
591
 
239
- - Allow Rails patching if Railties are loaded (#993, #1054) (@mustela, @bheemreddy181, @vramaiah)
240
- - 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][])
241
594
 
242
595
  ### Refactored
243
596
 
244
- - Improvements to test suite (#1027, #1031, #1045, #1046, #1047)
597
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
245
598
 
246
599
  ## [0.35.2] - 2020-05-08
247
600
 
@@ -251,8 +604,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
251
604
 
252
605
  ### Fixed
253
606
 
254
- - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
255
- - `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][])
256
609
 
257
610
  ## [0.35.1] - 2020-05-05
258
611
 
@@ -262,7 +615,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
262
615
 
263
616
  ### Fixed
264
617
 
265
- - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
618
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
266
619
 
267
620
  ## [0.35.0] - 2020-04-29
268
621
 
@@ -272,28 +625,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
272
625
 
273
626
  ### Added
274
627
 
275
- - Chunk large trace payloads before flushing (#818, #840)
276
- - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
277
- - active_job support for Resque (#991) (@stefanahman, @psycholein)
278
- - JRuby 9.2 to CI test matrix (#995)
279
- - `TraceWriter` and `AsyncTraceWriter` workers (#986)
280
- - 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][])
281
634
 
282
635
  ### Changed
283
636
 
284
- - Populate env, service, and version from tags (#1008)
285
- - Extract components from configuration (#996)
286
- - Extract logger to components (#997)
287
- - Extract runtime metrics worker from `Writer` (#1004)
288
- - 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][])
289
642
 
290
643
  ### Fixed
291
644
 
292
- - Runtime metrics not starting after #write (#1010)
645
+ - Runtime metrics not starting after #write ([#1010][])
293
646
 
294
647
  ### Refactored
295
648
 
296
- - Improvements to test suite (#842, #1006, #1009)
649
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
297
650
 
298
651
  ## [0.34.2] - 2020-04-09
299
652
 
@@ -303,7 +656,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
303
656
 
304
657
  ### Changed
305
658
 
306
- - 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][])
307
660
 
308
661
  ## [0.34.1] - 2020-04-02
309
662
 
@@ -313,11 +666,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
313
666
 
314
667
  ### Changed
315
668
 
316
- - 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][])
317
670
 
318
671
  ### Fixed
319
672
 
320
- - Some configuration settings not applying (#989, #990) (@rahul342)
673
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
321
674
 
322
675
  ## [0.34.0] - 2020-03-31
323
676
 
@@ -327,18 +680,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
327
680
 
328
681
  ### Added
329
682
 
330
- - `Datadog::Event` for simple pub-sub messaging (#972)
331
- - `Datadog::Workers` for trace writing (#969, #973)
332
- - `_dd.measured` tag to some integrations for more statistics (#974)
333
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
334
- - 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][])
335
688
 
336
689
  ### Fixed
337
690
 
338
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
339
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
340
- - Presto configuration (#975)
341
- - 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][])
342
695
 
343
696
  ## [0.33.1] - 2020-03-09
344
697
 
@@ -348,7 +701,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
348
701
 
349
702
  ### Fixed
350
703
 
351
- - 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][])
352
705
 
353
706
  ## [0.33.0] - 2020-03-05
354
707
 
@@ -358,27 +711,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
358
711
 
359
712
  ### Added
360
713
 
361
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
362
- - Sidekiq job argument tagging (#933) (@mantrala)
363
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
364
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
365
- - Setter/reset behavior for configuration options (#957)
366
- - 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][])
367
720
 
368
721
  ### Changed
369
722
 
370
- - Enforced minimum version requirements for instrumentation (#944)
371
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
372
- - 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][])
373
726
 
374
727
  ### Fixed
375
728
 
376
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
377
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
378
- - Runtime metrics accumulating service names when disabled (#956)
379
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
380
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
381
- - 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][])
382
735
 
383
736
  ## [0.32.0] - 2020-01-22
384
737
 
@@ -388,18 +741,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
388
741
 
389
742
  ### Added
390
743
 
391
- - New transport: Datadog::Transport::IO (#910)
392
- - Dual License (#893, #921)
744
+ - New transport: Datadog::Transport::IO ([#910][])
745
+ - Dual License ([#893][], [#921][])
393
746
 
394
747
  ### Changed
395
748
 
396
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
397
- - 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][])
398
751
 
399
752
  ### Refactored
400
753
 
401
- - Improved support for multiple tracer instances (#919)
402
- - Improvements to test suite (#909, #928, #929)
754
+ - Improved support for multiple tracer instances ([#919][])
755
+ - Improvements to test suite ([#909][], [#928][], [#929][])
403
756
 
404
757
  ## [0.31.1] - 2020-01-15
405
758
 
@@ -409,13 +762,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
409
762
 
410
763
  ### Fixed
411
764
 
412
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
413
- - Fix references to Datadog::Tracer.log (#912)
414
- - 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][])
415
768
 
416
769
  ### Refactored
417
770
 
418
- - Improvements to test suite & CI (#911, #918)
771
+ - Improvements to test suite & CI ([#911][], [#918][])
419
772
 
420
773
  ## [0.31.0] - 2020-01-07
421
774
 
@@ -425,27 +778,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
425
778
 
426
779
  ### Added
427
780
 
428
- - Ruby 2.7 support (#805, #896)
429
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
430
- - Faraday 1.0 support (#906)
431
- - Set resource for Rails template spans (#855, #881) (@djmb)
432
- - at_exit hook for graceful Tracer shutdown (#884)
433
- - 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][])
434
787
 
435
788
  ### Changed
436
789
 
437
- - Updated partial trace flushing to conform with new back-end requirements (#845)
438
- - Store numeric tags as metrics (#886)
439
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
440
- - 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][])
441
794
 
442
795
  ### Fixed
443
796
 
444
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
797
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
445
798
 
446
799
  ### Refactored
447
800
 
448
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
801
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
449
802
 
450
803
  ## [0.30.1] - 2019-12-30
451
804
 
@@ -455,12 +808,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
455
808
 
456
809
  ### Fixed
457
810
 
458
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
459
- - 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][])
460
813
 
461
814
  ### Refactored
462
815
 
463
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
816
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
464
817
 
465
818
  ## [0.30.0] - 2019-12-04
466
819
 
@@ -470,13 +823,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
470
823
 
471
824
  ### Added
472
825
 
473
- - Additional tracer health metrics (#867)
474
- - Integration patching instrumentation (#871)
475
- - Rule-based trace sampling (#854)
826
+ - Additional tracer health metrics ([#867][])
827
+ - Integration patching instrumentation ([#871][])
828
+ - Rule-based trace sampling ([#854][])
476
829
 
477
830
  ### Fixed
478
831
 
479
- - Rails template layout name error (#872) (@djmb)
832
+ - Rails template layout name error ([#872][]) ([@djmb][])
480
833
 
481
834
  ## [0.29.1] - 2019-11-26
482
835
 
@@ -486,7 +839,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
486
839
 
487
840
  ### Fixed
488
841
 
489
- - Priority sampling not activating by default (#868)
842
+ - Priority sampling not activating by default ([#868][])
490
843
 
491
844
  ## [0.29.0] - 2019-11-20
492
845
 
@@ -496,25 +849,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
496
849
 
497
850
  ### Added
498
851
 
499
- - Tracer health metrics (#838, #859)
852
+ - Tracer health metrics ([#838][], [#859][])
500
853
 
501
854
  ### Changed
502
855
 
503
- - Default trace buffer size from 100 to 1000 (#865)
504
- - Rack request start headers to accept more values (#832) (@JamesHarker)
505
- - 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][])
506
859
 
507
860
  ### Fixed
508
861
 
509
- - Synthetics trace context being ignored (#856)
862
+ - Synthetics trace context being ignored ([#856][])
510
863
 
511
864
  ### Refactored
512
865
 
513
- - Tracer buffer constants (#851)
866
+ - Tracer buffer constants ([#851][])
514
867
 
515
868
  ### Removed
516
869
 
517
- - Some old Ruby 1.9 code (#819, #844)
870
+ - Some old Ruby 1.9 code ([#819][], [#844][])
518
871
 
519
872
  ## [0.28.0] - 2019-10-01
520
873
 
@@ -524,13 +877,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
524
877
 
525
878
  ### Added
526
879
 
527
- - Support for Rails 6.0 (#814)
528
- - Multiplexing on hostname/port for Dalli (#823)
529
- - 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][])
530
883
 
531
884
  ### Refactored
532
885
 
533
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
886
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
534
887
 
535
888
  ## [0.27.0] - 2019-09-04
536
889
 
@@ -548,16 +901,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
548
901
 
549
902
  ### Added
550
903
 
551
- - Support for Ruby 2.5 & 2.6 (#800, #802)
552
- - Ethon integration (#527, #778) (@al-kudryavtsev)
904
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
905
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
553
906
 
554
907
  ### Refactored
555
908
 
556
- - Rails integration into smaller integrations per component (#747, #762, #795)
909
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
557
910
 
558
911
  ### Removed
559
912
 
560
- - Support for Ruby 1.9 (#791)
913
+ - Support for Ruby 1.9 ([#791][])
561
914
 
562
915
  ## [0.26.0] - 2019-08-06
563
916
 
@@ -575,15 +928,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
575
928
 
576
929
  ### Added
577
930
 
578
- - Container ID tagging for containerized environments (#784)
931
+ - Container ID tagging for containerized environments ([#784][])
579
932
 
580
933
  ### Refactored
581
934
 
582
- - Datadog::Metrics constants (#789)
935
+ - Datadog::Metrics constants ([#789][])
583
936
 
584
937
  ### Removed
585
938
 
586
- - Datadog::HTTPTransport and related components (#782)
939
+ - Datadog::HTTPTransport and related components ([#782][])
587
940
 
588
941
  ## [0.25.1] - 2019-07-16
589
942
 
@@ -593,7 +946,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
593
946
 
594
947
  ### Fixed
595
948
 
596
- - Redis integration not quantizing AUTH command (#776)
949
+ - Redis integration not quantizing AUTH command ([#776][])
597
950
 
598
951
  ## [0.25.0] - 2019-06-27
599
952
 
@@ -611,25 +964,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
611
964
 
612
965
  ### Added
613
966
 
614
- - Unix socket support for transport layer (#770)
967
+ - Unix socket support for transport layer ([#770][])
615
968
 
616
969
  ### Changed
617
970
 
618
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
971
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
619
972
 
620
973
  ### Fixed
621
974
 
622
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
975
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
623
976
 
624
977
  ### Refactored
625
978
 
626
- - Transport layer (#628)
979
+ - Transport layer ([#628][])
627
980
 
628
981
  ### Deprecated
629
982
 
630
- - Ruby < 2.0 support (#771)
631
- - Use of `Datadog::HTTPTransport` (#628)
632
- - 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][])
633
986
 
634
987
  ## [0.24.0] - 2019-05-21
635
988
 
@@ -639,9 +992,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
639
992
 
640
993
  ### Added
641
994
 
642
- - B3 header support (#753)
643
- - Hostname tagging option (#760)
644
- - Contribution and development guides (#754)
995
+ - B3 header support ([#753][])
996
+ - Hostname tagging option ([#760][])
997
+ - Contribution and development guides ([#754][])
645
998
 
646
999
  ## [0.23.3] - 2019-05-16
647
1000
 
@@ -651,7 +1004,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
651
1004
 
652
1005
  ### Fixed
653
1006
 
654
- - Integrations initializing tracer at load time (#756)
1007
+ - Integrations initializing tracer at load time ([#756][])
655
1008
 
656
1009
  ## [0.23.2] - 2019-05-10
657
1010
 
@@ -661,9 +1014,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
661
1014
 
662
1015
  ### Fixed
663
1016
 
664
- - Span types for HTTP, web, and some datastore integrations (#751)
665
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
666
- - 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][])
667
1020
 
668
1021
  ## [0.23.1] - 2019-05-02
669
1022
 
@@ -673,7 +1026,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
673
1026
 
674
1027
  ### Fixed
675
1028
 
676
- - NoMethodError runtime_metrics for SyncWriter (#748)
1029
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
677
1030
 
678
1031
  ## [0.23.0] - 2019-04-30
679
1032
 
@@ -683,16 +1036,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
683
1036
 
684
1037
  ### Added
685
1038
 
686
- - Error status support via tags for OpenTracing (#739)
687
- - Forced sampling support via tags (#720)
1039
+ - Error status support via tags for OpenTracing ([#739][])
1040
+ - Forced sampling support via tags ([#720][])
688
1041
 
689
1042
  ### Fixed
690
1043
 
691
- - Wrong return values for Rake integration (#742) (@Redapted)
1044
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
692
1045
 
693
1046
  ### Removed
694
1047
 
695
- - Obsolete service telemetry (#738)
1048
+ - Obsolete service telemetry ([#738][])
696
1049
 
697
1050
  ## [0.22.0] - 2019-04-15
698
1051
 
@@ -704,11 +1057,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
704
1057
 
705
1058
  ### Changed
706
1059
 
707
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
1060
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
708
1061
 
709
1062
  ### Added
710
1063
 
711
- - Initial beta support for Runtime metrics collection (#677)
1064
+ - Initial beta support for Runtime metrics collection ([#677][])
712
1065
 
713
1066
  ## [0.21.2] - 2019-04-10
714
1067
 
@@ -718,7 +1071,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
718
1071
 
719
1072
  ### Changed
720
1073
 
721
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
1074
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
722
1075
 
723
1076
  ## [0.21.1] - 2019-03-26
724
1077
 
@@ -728,7 +1081,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
728
1081
 
729
1082
  ### Changed
730
1083
 
731
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
1084
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
732
1085
 
733
1086
  ## [0.21.0] - 2019-03-20
734
1087
 
@@ -738,17 +1091,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
738
1091
 
739
1092
  ### Added
740
1093
 
741
- - Trace analytics support (#697, #715)
742
- - HTTP after_request span hook (#716, #724)
1094
+ - Trace analytics support ([#697][], [#715][])
1095
+ - HTTP after_request span hook ([#716][], [#724][])
743
1096
 
744
1097
  ### Fixed
745
1098
 
746
- - Distributed traces with IDs in 2^64 range being dropped (#719)
747
- - 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][])
748
1101
 
749
1102
  ### Refactored
750
1103
 
751
- - Global configuration for tracing into configuration API (#714)
1104
+ - Global configuration for tracing into configuration API ([#714][])
752
1105
 
753
1106
  ## [0.20.0] - 2019-03-07
754
1107
 
@@ -761,24 +1114,24 @@ These changes are backwards compatible, but all integration configuration should
761
1114
 
762
1115
  ### Added
763
1116
 
764
- - Propagate synthetics origin header (#699)
1117
+ - Propagate synthetics origin header ([#699][])
765
1118
 
766
1119
  ### Changed
767
1120
 
768
- - Enable distributed tracing by default (#701)
1121
+ - Enable distributed tracing by default ([#701][])
769
1122
 
770
1123
  ### Fixed
771
1124
 
772
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
1125
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
773
1126
 
774
1127
  ### Refactored
775
1128
 
776
- - Refactor MongoDB to use instrumentation module (#704)
777
- - Refactor HTTP to use instrumentation module (#703)
778
- - Deprecate GRPC global pin in favor of configuration API (#702)
779
- - Deprecate Grape pin in favor of configuration API (#700)
780
- - Deprecate Faraday pin in favor of configuration API (#696)
781
- - 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][])
782
1135
 
783
1136
  ## [0.19.1] - 2019-02-07
784
1137
 
@@ -788,11 +1141,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
788
1141
 
789
1142
  ### Added
790
1143
 
791
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
1144
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
792
1145
 
793
1146
  ### Fixed
794
1147
 
795
- - Priority sampling dropping spans (#686)
1148
+ - Priority sampling dropping spans ([#686][])
796
1149
 
797
1150
  ## [0.19.0] - 2019-01-22
798
1151
 
@@ -802,12 +1155,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
802
1155
 
803
1156
  ### Added
804
1157
 
805
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
806
- - 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][])
807
1160
 
808
1161
  ### Changed
809
1162
 
810
- - Priority sampling enabled by default. (#654)
1163
+ - Priority sampling enabled by default. ([#654][])
811
1164
 
812
1165
  ## [0.18.3] - 2019-01-17
813
1166
 
@@ -817,9 +1170,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
817
1170
 
818
1171
  ### Fixed
819
1172
 
820
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
821
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
822
- - 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][])
823
1176
 
824
1177
  ## [0.18.2] - 2019-01-03
825
1178
 
@@ -829,8 +1182,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
829
1182
 
830
1183
  ### Fixed
831
1184
 
832
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
833
- - 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][])
834
1187
 
835
1188
  ## [0.18.1] - 2018-12-20
836
1189
 
@@ -840,7 +1193,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
840
1193
 
841
1194
  ### Fixed
842
1195
 
843
- - 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][])
844
1197
 
845
1198
  ## [0.18.0] - 2018-12-18
846
1199
 
@@ -850,15 +1203,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
850
1203
 
851
1204
  ### Added
852
1205
 
853
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
854
- - Sidekiq client integration (#602, #650) (@dirk)
855
- - 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][])
856
1209
 
857
1210
  ### Changed
858
1211
 
859
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
860
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
861
- - 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][])
862
1215
 
863
1216
  ## [0.17.3] - 2018-11-29
864
1217
 
@@ -868,9 +1221,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
868
1221
 
869
1222
  ### Fixed
870
1223
 
871
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
872
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
873
- - 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][])
874
1227
 
875
1228
  ## [0.17.2] - 2018-11-23
876
1229
 
@@ -880,7 +1233,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
880
1233
 
881
1234
  ### Fixed
882
1235
 
883
- - Resque integration shutting down tracer when forking is disabled (#637)
1236
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
884
1237
 
885
1238
  ## [0.17.1] - 2018-11-07
886
1239
 
@@ -890,8 +1243,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
890
1243
 
891
1244
  ### Fixed
892
1245
 
893
- - RestClient incorrect app type (#583) (@gaborszakacs)
894
- - 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][])
895
1248
 
896
1249
  ## [0.17.0] - 2018-10-30
897
1250
 
@@ -901,18 +1254,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
901
1254
 
902
1255
  ### Added
903
1256
 
904
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
1257
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
905
1258
 
906
1259
  ### Changed
907
1260
 
908
- - Use Rack Env to update resource in Rails (#580) (@dasch)
909
- - Expand support for Sidekiq to 3.5.4+ (#593)
910
- - 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][])
911
1264
 
912
1265
  ### Refactored
913
1266
 
914
- - Upgraded integrations to new API (#544)
915
- - Encoding classes into modules (#598)
1267
+ - Upgraded integrations to new API ([#544][])
1268
+ - Encoding classes into modules ([#598][])
916
1269
 
917
1270
  ## [0.16.1] - 2018-10-17
918
1271
 
@@ -922,8 +1275,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
922
1275
 
923
1276
  ### Fixed
924
1277
 
925
- - Priority sampling response being mishandled (#591)
926
- - HTTP open timeout to agent too long (#582)
1278
+ - Priority sampling response being mishandled ([#591][])
1279
+ - HTTP open timeout to agent too long ([#582][])
927
1280
 
928
1281
  ## [0.16.0] - 2018-09-18
929
1282
 
@@ -933,8 +1286,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
933
1286
 
934
1287
  ### Added
935
1288
 
936
- - OpenTracing support (#517)
937
- - `middleware` option for disabling Rails trace middleware. (#552)
1289
+ - OpenTracing support ([#517][])
1290
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
938
1291
 
939
1292
  ## [0.15.0] - 2018-09-12
940
1293
 
@@ -944,13 +1297,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
944
1297
 
945
1298
  ### Added
946
1299
 
947
- - Rails 5.2 support (#535)
948
- - Context propagation support for `Concurrent::Future` (#415, #496)
1300
+ - Rails 5.2 support ([#535][])
1301
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
949
1302
 
950
1303
  ### Fixed
951
1304
 
952
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
953
- - 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][])
954
1307
 
955
1308
  ## [0.14.2] - 2018-08-23
956
1309
 
@@ -960,7 +1313,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
960
1313
 
961
1314
  ### Fixed
962
1315
 
963
- - Sampling priority from request headers not being used (#521)
1316
+ - Sampling priority from request headers not being used ([#521][])
964
1317
 
965
1318
  ## [0.14.1] - 2018-08-21
966
1319
 
@@ -970,11 +1323,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
970
1323
 
971
1324
  ### Changed
972
1325
 
973
- - Reduce verbosity of connection errors in log (#515)
1326
+ - Reduce verbosity of connection errors in log ([#515][])
974
1327
 
975
1328
  ### Fixed
976
1329
 
977
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
1330
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
978
1331
 
979
1332
  ## [0.14.0] - 2018-08-14
980
1333
 
@@ -984,22 +1337,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
984
1337
 
985
1338
  ### Added
986
1339
 
987
- - RestClient integration (#422, #460)
988
- - DelayedJob integration (#393 #444)
989
- - Version information to integrations (#483)
990
- - 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][])
991
1344
 
992
1345
  ### Changed
993
1346
 
994
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
995
- - ActiveRecord to allow configuring multiple databases (#451)
996
- - 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][])
997
1350
 
998
1351
  ### Fixed
999
1352
 
1000
- - Context propagation for distributed traces when context is full (#502)
1001
- - Rake shutdown tracer after execution (#487) (@kissrobber)
1002
- - 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][])
1003
1356
 
1004
1357
  ## [0.14.0.rc1] - 2018-08-08
1005
1358
 
@@ -1009,12 +1362,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
1009
1362
 
1010
1363
  ### Added
1011
1364
 
1012
- - RestClient integration (#422, #460)
1013
- - Tracer#active_root_span helper (#503)
1365
+ - RestClient integration ([#422][], [#460][])
1366
+ - Tracer#active_root_span helper ([#503][])
1014
1367
 
1015
1368
  ### Fixed
1016
1369
 
1017
- - Context propagation for distributed traces when context is full (#502)
1370
+ - Context propagation for distributed traces when context is full ([#502][])
1018
1371
 
1019
1372
  ## [0.14.0.beta2] - 2018-07-25
1020
1373
 
@@ -1024,7 +1377,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
1024
1377
 
1025
1378
  ### Fixed
1026
1379
 
1027
- - Rake shutdown tracer after execution (#487) @kissrobber
1380
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
1028
1381
 
1029
1382
  ## [0.14.0.beta1] - 2018-07-24
1030
1383
 
@@ -1034,19 +1387,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
1034
1387
 
1035
1388
  ### Changed
1036
1389
 
1037
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
1038
- - ActiveRecord to allow configuring multiple databases (#451)
1039
- - 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][])
1040
1393
 
1041
1394
  ### Fixed
1042
1395
 
1043
- - Ruby warnings during tests (#499)
1044
- - 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][])
1045
1398
 
1046
1399
  ### Added
1047
1400
 
1048
- - DelayedJob integration (#393 #444)
1049
- - Version information to integrations (#483)
1401
+ - DelayedJob integration ([#393][] [#444][])
1402
+ - Version information to integrations ([#483][])
1050
1403
 
1051
1404
  ## [0.13.2] - 2018-08-07
1052
1405
 
@@ -1056,7 +1409,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
1056
1409
 
1057
1410
  ### Fixed
1058
1411
 
1059
- - Context propagation for distributed traces when context is full (#502)
1412
+ - Context propagation for distributed traces when context is full ([#502][])
1060
1413
 
1061
1414
  ## [0.13.1] - 2018-07-17
1062
1415
 
@@ -1066,15 +1419,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
1066
1419
 
1067
1420
  ### Changed
1068
1421
 
1069
- - Configuration class variables don't lazy load (#477)
1070
- - 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][])
1071
1424
 
1072
1425
  ### Fixed
1073
1426
 
1074
- - Workers not shutting down quickly in some short running processes (#475)
1075
- - Missing documentation for mysql2 and Rails (#476, #488)
1076
- - Missing variable in rescue block (#481) (@kitop)
1077
- - 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][])
1078
1431
 
1079
1432
  ## [0.13.0] - 2018-06-20
1080
1433
 
@@ -1084,31 +1437,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
1084
1437
 
1085
1438
  ### Added
1086
1439
 
1087
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1088
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1089
- - ActiveModelSerializers integration (#340) (@sullimander)
1090
- - Excon integration (#211, #426) (@walterking, @jeffjo)
1091
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1092
- - Request queuing tracing to Rack (experimental) (#272)
1093
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1094
- - Request and response header tags to Rack (#389)
1095
- - Request and response header tags to Sinatra (#427, #375)
1096
- - MySQL2 integration (#453) (@jamiehodge)
1097
- - 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][])
1098
1451
 
1099
1452
  ### Fixed
1100
1453
 
1101
- - Elasticsearch quantization of ids (#458)
1102
- - MongoDB to allow quantization of collection name (#463)
1454
+ - Elasticsearch quantization of ids ([#458][])
1455
+ - MongoDB to allow quantization of collection name ([#463][])
1103
1456
 
1104
1457
  ### Refactored
1105
1458
 
1106
- - Hash quantization into core library (#410)
1107
- - MongoDB integration to use Hash quantization library (#463)
1459
+ - Hash quantization into core library ([#410][])
1460
+ - MongoDB integration to use Hash quantization library ([#463][])
1108
1461
 
1109
1462
  ### Changed
1110
1463
 
1111
- - Hash quantization truncates arrays with nested objects (#463)
1464
+ - Hash quantization truncates arrays with nested objects ([#463][])
1112
1465
 
1113
1466
  ## [0.13.0.beta1] - 2018-05-09
1114
1467
 
@@ -1118,18 +1471,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
1118
1471
 
1119
1472
  ### Added
1120
1473
 
1121
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1122
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1123
- - ActiveModelSerializers integration (#340) (@sullimander)
1124
- - Excon integration (#211) (@walterking)
1125
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1126
- - Request queuing tracing to Rack (experimental) (#272)
1127
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1128
- - 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][])
1129
1482
 
1130
1483
  ### Refactored
1131
1484
 
1132
- - Hash quantization into core library (#410)
1485
+ - Hash quantization into core library ([#410][])
1133
1486
 
1134
1487
  ## [0.12.1] - 2018-06-12
1135
1488
 
@@ -1139,22 +1492,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1139
1492
 
1140
1493
  ### Changed
1141
1494
 
1142
- - Cache configuration `Proxy` objects (#446)
1143
- - `freeze` more constant strings, to improve memory usage (#446)
1144
- - `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][])
1145
1498
 
1146
1499
  ### Fixed
1147
1500
 
1148
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
1149
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
1150
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
1151
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
1152
- - 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][])
1153
1506
 
1154
1507
  ### Refactored
1155
1508
 
1156
- - ActionController patching strategy using modules. (#439)
1157
- - ActionView tracing strategy. (#445, #447)
1509
+ - ActionController patching strategy using modules. ([#439][])
1510
+ - ActionView tracing strategy. ([#445][], [#447][])
1158
1511
 
1159
1512
  ## [0.12.0] - 2018-05-08
1160
1513
 
@@ -1164,34 +1517,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1164
1517
 
1165
1518
  ### Added
1166
1519
 
1167
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1168
- - ActiveRecord object instantiation tracing (#311, #334)
1169
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1170
- - HTTP quantization module (#384)
1171
- - 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][])
1172
1525
 
1173
1526
  ### Changed
1174
1527
 
1175
- - Rack applies URL quantization by default (#371)
1176
- - Elasticsearch applies body quantization by default (#362)
1177
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1178
- - 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][])
1179
1532
 
1180
1533
  ### Fixed
1181
1534
 
1182
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1183
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1184
- - 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][])
1185
1538
 
1186
1539
  ### Deprecated
1187
1540
 
1188
- - 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][])
1189
1542
 
1190
1543
  ### Refactored
1191
1544
 
1192
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1193
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1194
- - 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][])
1195
1548
 
1196
1549
  ## [0.12.0.rc1] - 2018-04-11
1197
1550
 
@@ -1201,34 +1554,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1201
1554
 
1202
1555
  ### Added
1203
1556
 
1204
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1205
- - ActiveRecord object instantiation tracing (#311, #334)
1206
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1207
- - HTTP quantization module (#384)
1208
- - 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][])
1209
1562
 
1210
1563
  ### Changed
1211
1564
 
1212
- - Rack applies URL quantization by default (#371)
1213
- - Elasticsearch applies body quantization by default (#362)
1214
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1215
- - 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][])
1216
1569
 
1217
1570
  ### Fixed
1218
1571
 
1219
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1220
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1221
- - 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][])
1222
1575
 
1223
1576
  ### Deprecated
1224
1577
 
1225
- - 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][])
1226
1579
 
1227
1580
  ### Refactored
1228
1581
 
1229
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1230
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1231
- - 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][])
1232
1585
 
1233
1586
  ## [0.12.0.beta2] - 2018-02-28
1234
1587
 
@@ -1238,7 +1591,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
1238
1591
 
1239
1592
  ### Fixed
1240
1593
 
1241
- - 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][])
1242
1595
 
1243
1596
  ## [0.12.0.beta1] - 2018-02-09
1244
1597
 
@@ -1248,9 +1601,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1248
1601
 
1249
1602
  ### Added
1250
1603
 
1251
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1252
- - ActiveRecord object instantiation tracing (#311, #334)
1253
- - `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][])
1254
1607
 
1255
1608
  ## [0.11.4] - 2018-03-29
1256
1609
 
@@ -1260,9 +1613,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1260
1613
 
1261
1614
  ### Fixed
1262
1615
 
1263
- - Transport body parsing when downgrading (#369)
1264
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
1265
- - `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][])
1266
1619
 
1267
1620
  ## [0.11.3] - 2018-03-06
1268
1621
 
@@ -1272,20 +1625,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1272
1625
 
1273
1626
  ### Added
1274
1627
 
1275
- - CHANGELOG.md (#350, #363) (@awendt)
1276
- - `http.request_id` tag to Rack spans (#335)
1277
- - 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][])
1278
1631
 
1279
1632
  ### Fixed
1280
1633
 
1281
- - Extra indentation in README.md (#349) (@ck3g)
1282
- - `http.url` when Rails raises exceptions (#351, #353)
1283
- - Rails from being patched twice (#352)
1284
- - 4XX responses from middleware being marked as errors (#345)
1285
- - Rails exception middleware sometimes not being inserted at correct position (#345)
1286
- - Processing pipeline documentation typo (#355) (@MMartyn)
1287
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1288
- - 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][])
1289
1642
 
1290
1643
  ## [0.11.2] - 2018-02-02
1291
1644
 
@@ -1307,23 +1660,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1307
1660
 
1308
1661
  ### Added
1309
1662
 
1310
- - `http.base_url` tag for Rack applications (#301, #327)
1311
- - `distributed_tracing` option to Sinatra (#325)
1312
- - `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][])
1313
1666
 
1314
1667
  ### Changed
1315
1668
 
1316
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1317
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1669
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
1670
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1318
1671
 
1319
1672
  ### Removed
1320
1673
 
1321
- - `Datadog::Monkey` in favor of newer configuration API (#322)
1674
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1322
1675
 
1323
1676
  ### Fixed
1324
1677
 
1325
- - Custom resource names from Rails controllers being overridden (#321)
1326
- - 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][])
1327
1680
 
1328
1681
  ## [0.11.0] - 2018-01-17
1329
1682
 
@@ -1457,7 +1810,15 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1457
1810
 
1458
1811
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1459
1812
 
1460
- [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
1461
1822
  [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
1462
1823
  [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
1463
1824
  [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
@@ -1555,3 +1916,754 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1555
1916
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1556
1917
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1557
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