ddtrace 0.40.0 → 0.50.0

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