ddtrace 0.13.0 → 0.47.0

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