ddtrace 0.43.0 → 0.48.0

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