ddtrace 0.38.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (433) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +492 -0
  3. data/.circleci/images/primary/Dockerfile-2.0.0 +73 -0
  4. data/.circleci/images/primary/Dockerfile-2.1.10 +73 -0
  5. data/.circleci/images/primary/Dockerfile-2.2.10 +73 -0
  6. data/.circleci/images/primary/Dockerfile-2.3.8 +75 -0
  7. data/.circleci/images/primary/Dockerfile-2.4.6 +73 -0
  8. data/.circleci/images/primary/Dockerfile-2.5.6 +73 -0
  9. data/.circleci/images/primary/Dockerfile-2.6.4 +73 -0
  10. data/.circleci/images/primary/Dockerfile-2.7.0 +73 -0
  11. data/.circleci/images/primary/Dockerfile-jruby-9.2 +77 -0
  12. data/.dockerignore +1 -0
  13. data/.env +26 -0
  14. data/.github/CODEOWNERS +1 -0
  15. data/.gitignore +61 -0
  16. data/.gitlab-ci.yml +26 -0
  17. data/.rspec +1 -0
  18. data/.rubocop.yml +85 -0
  19. data/.yardopts +5 -0
  20. data/Appraisals +961 -0
  21. data/CHANGELOG.md +1402 -0
  22. data/CONTRIBUTING.md +85 -0
  23. data/Gemfile +7 -0
  24. data/LICENSE +6 -0
  25. data/LICENSE.Apache +200 -0
  26. data/LICENSE.BSD3 +24 -0
  27. data/NOTICE +4 -0
  28. data/README.md +23 -0
  29. data/Rakefile +753 -0
  30. data/benchmarks/postgres_database.yml +9 -0
  31. data/benchmarks/sidekiq_test.rb +154 -0
  32. data/ddtrace.gemspec +71 -0
  33. data/docker-compose.yml +370 -0
  34. data/docs/DevelopmentGuide.md +195 -0
  35. data/docs/GettingStarted.md +2224 -0
  36. data/lib/ddtrace.rb +76 -0
  37. data/lib/ddtrace/analytics.rb +36 -0
  38. data/lib/ddtrace/augmentation.rb +13 -0
  39. data/lib/ddtrace/augmentation/method_wrapper.rb +20 -0
  40. data/lib/ddtrace/augmentation/method_wrapping.rb +38 -0
  41. data/lib/ddtrace/augmentation/shim.rb +102 -0
  42. data/lib/ddtrace/buffer.rb +119 -0
  43. data/lib/ddtrace/chunker.rb +34 -0
  44. data/lib/ddtrace/configuration.rb +53 -0
  45. data/lib/ddtrace/configuration/base.rb +84 -0
  46. data/lib/ddtrace/configuration/components.rb +154 -0
  47. data/lib/ddtrace/configuration/dependency_resolver.rb +24 -0
  48. data/lib/ddtrace/configuration/option.rb +64 -0
  49. data/lib/ddtrace/configuration/option_definition.rb +123 -0
  50. data/lib/ddtrace/configuration/option_definition_set.rb +18 -0
  51. data/lib/ddtrace/configuration/option_set.rb +6 -0
  52. data/lib/ddtrace/configuration/options.rb +112 -0
  53. data/lib/ddtrace/configuration/pin_setup.rb +31 -0
  54. data/lib/ddtrace/configuration/settings.rb +273 -0
  55. data/lib/ddtrace/context.rb +305 -0
  56. data/lib/ddtrace/context_flush.rb +69 -0
  57. data/lib/ddtrace/context_provider.rb +50 -0
  58. data/lib/ddtrace/contrib/action_cable/configuration/settings.rb +25 -0
  59. data/lib/ddtrace/contrib/action_cable/event.rb +65 -0
  60. data/lib/ddtrace/contrib/action_cable/events.rb +33 -0
  61. data/lib/ddtrace/contrib/action_cable/events/broadcast.rb +49 -0
  62. data/lib/ddtrace/contrib/action_cable/events/perform_action.rb +55 -0
  63. data/lib/ddtrace/contrib/action_cable/events/transmit.rb +50 -0
  64. data/lib/ddtrace/contrib/action_cable/ext.rb +23 -0
  65. data/lib/ddtrace/contrib/action_cable/instrumentation.rb +31 -0
  66. data/lib/ddtrace/contrib/action_cable/integration.rb +38 -0
  67. data/lib/ddtrace/contrib/action_cable/patcher.rb +27 -0
  68. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +148 -0
  69. data/lib/ddtrace/contrib/action_pack/action_controller/patcher.rb +25 -0
  70. data/lib/ddtrace/contrib/action_pack/configuration/settings.rb +27 -0
  71. data/lib/ddtrace/contrib/action_pack/ext.rb +16 -0
  72. data/lib/ddtrace/contrib/action_pack/integration.rb +38 -0
  73. data/lib/ddtrace/contrib/action_pack/patcher.rb +23 -0
  74. data/lib/ddtrace/contrib/action_pack/utils.rb +36 -0
  75. data/lib/ddtrace/contrib/action_view/configuration/settings.rb +26 -0
  76. data/lib/ddtrace/contrib/action_view/event.rb +39 -0
  77. data/lib/ddtrace/contrib/action_view/events.rb +30 -0
  78. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +45 -0
  79. data/lib/ddtrace/contrib/action_view/events/render_template.rb +48 -0
  80. data/lib/ddtrace/contrib/action_view/ext.rb +17 -0
  81. data/lib/ddtrace/contrib/action_view/instrumentation/partial_renderer.rb +74 -0
  82. data/lib/ddtrace/contrib/action_view/instrumentation/template_renderer.rb +167 -0
  83. data/lib/ddtrace/contrib/action_view/integration.rb +45 -0
  84. data/lib/ddtrace/contrib/action_view/patcher.rb +47 -0
  85. data/lib/ddtrace/contrib/action_view/utils.rb +32 -0
  86. data/lib/ddtrace/contrib/active_model_serializers/configuration/settings.rb +25 -0
  87. data/lib/ddtrace/contrib/active_model_serializers/event.rb +68 -0
  88. data/lib/ddtrace/contrib/active_model_serializers/events.rb +30 -0
  89. data/lib/ddtrace/contrib/active_model_serializers/events/render.rb +32 -0
  90. data/lib/ddtrace/contrib/active_model_serializers/events/serialize.rb +35 -0
  91. data/lib/ddtrace/contrib/active_model_serializers/ext.rb +17 -0
  92. data/lib/ddtrace/contrib/active_model_serializers/integration.rb +40 -0
  93. data/lib/ddtrace/contrib/active_model_serializers/patcher.rb +29 -0
  94. data/lib/ddtrace/contrib/active_record/configuration/resolver.rb +45 -0
  95. data/lib/ddtrace/contrib/active_record/configuration/settings.rb +30 -0
  96. data/lib/ddtrace/contrib/active_record/event.rb +30 -0
  97. data/lib/ddtrace/contrib/active_record/events.rb +30 -0
  98. data/lib/ddtrace/contrib/active_record/events/instantiation.rb +60 -0
  99. data/lib/ddtrace/contrib/active_record/events/sql.rb +64 -0
  100. data/lib/ddtrace/contrib/active_record/ext.rb +21 -0
  101. data/lib/ddtrace/contrib/active_record/integration.rb +46 -0
  102. data/lib/ddtrace/contrib/active_record/patcher.rb +23 -0
  103. data/lib/ddtrace/contrib/active_record/utils.rb +76 -0
  104. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +157 -0
  105. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +48 -0
  106. data/lib/ddtrace/contrib/active_support/cache/redis.rb +47 -0
  107. data/lib/ddtrace/contrib/active_support/configuration/settings.rb +25 -0
  108. data/lib/ddtrace/contrib/active_support/ext.rb +21 -0
  109. data/lib/ddtrace/contrib/active_support/integration.rb +40 -0
  110. data/lib/ddtrace/contrib/active_support/notifications/event.rb +64 -0
  111. data/lib/ddtrace/contrib/active_support/notifications/subscriber.rb +66 -0
  112. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +159 -0
  113. data/lib/ddtrace/contrib/active_support/patcher.rb +23 -0
  114. data/lib/ddtrace/contrib/analytics.rb +24 -0
  115. data/lib/ddtrace/contrib/aws/configuration/settings.rb +25 -0
  116. data/lib/ddtrace/contrib/aws/ext.rb +20 -0
  117. data/lib/ddtrace/contrib/aws/instrumentation.rb +56 -0
  118. data/lib/ddtrace/contrib/aws/integration.rb +42 -0
  119. data/lib/ddtrace/contrib/aws/parsed_context.rb +56 -0
  120. data/lib/ddtrace/contrib/aws/patcher.rb +49 -0
  121. data/lib/ddtrace/contrib/aws/services.rb +115 -0
  122. data/lib/ddtrace/contrib/concurrent_ruby/configuration/settings.rb +15 -0
  123. data/lib/ddtrace/contrib/concurrent_ruby/context_composite_executor_service.rb +41 -0
  124. data/lib/ddtrace/contrib/concurrent_ruby/ext.rb +11 -0
  125. data/lib/ddtrace/contrib/concurrent_ruby/future_patch.rb +23 -0
  126. data/lib/ddtrace/contrib/concurrent_ruby/integration.rb +38 -0
  127. data/lib/ddtrace/contrib/concurrent_ruby/patcher.rb +28 -0
  128. data/lib/ddtrace/contrib/configurable.rb +76 -0
  129. data/lib/ddtrace/contrib/configuration/resolver.rb +16 -0
  130. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +39 -0
  131. data/lib/ddtrace/contrib/configuration/settings.rb +53 -0
  132. data/lib/ddtrace/contrib/dalli/configuration/settings.rb +25 -0
  133. data/lib/ddtrace/contrib/dalli/ext.rb +17 -0
  134. data/lib/ddtrace/contrib/dalli/instrumentation.rb +50 -0
  135. data/lib/ddtrace/contrib/dalli/integration.rb +38 -0
  136. data/lib/ddtrace/contrib/dalli/patcher.rb +63 -0
  137. data/lib/ddtrace/contrib/dalli/quantize.rb +22 -0
  138. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +25 -0
  139. data/lib/ddtrace/contrib/delayed_job/ext.rb +18 -0
  140. data/lib/ddtrace/contrib/delayed_job/integration.rb +38 -0
  141. data/lib/ddtrace/contrib/delayed_job/patcher.rb +28 -0
  142. data/lib/ddtrace/contrib/delayed_job/plugin.rb +61 -0
  143. data/lib/ddtrace/contrib/elasticsearch/configuration/settings.rb +26 -0
  144. data/lib/ddtrace/contrib/elasticsearch/ext.rb +19 -0
  145. data/lib/ddtrace/contrib/elasticsearch/integration.rb +39 -0
  146. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +117 -0
  147. data/lib/ddtrace/contrib/elasticsearch/quantize.rb +80 -0
  148. data/lib/ddtrace/contrib/ethon/configuration/settings.rb +27 -0
  149. data/lib/ddtrace/contrib/ethon/easy_patch.rb +148 -0
  150. data/lib/ddtrace/contrib/ethon/ext.rb +15 -0
  151. data/lib/ddtrace/contrib/ethon/integration.rb +43 -0
  152. data/lib/ddtrace/contrib/ethon/multi_patch.rb +80 -0
  153. data/lib/ddtrace/contrib/ethon/patcher.rb +25 -0
  154. data/lib/ddtrace/contrib/excon/configuration/settings.rb +28 -0
  155. data/lib/ddtrace/contrib/excon/ext.rb +14 -0
  156. data/lib/ddtrace/contrib/excon/integration.rb +43 -0
  157. data/lib/ddtrace/contrib/excon/middleware.rb +157 -0
  158. data/lib/ddtrace/contrib/excon/patcher.rb +27 -0
  159. data/lib/ddtrace/contrib/extensions.rb +93 -0
  160. data/lib/ddtrace/contrib/faraday/configuration/settings.rb +33 -0
  161. data/lib/ddtrace/contrib/faraday/connection.rb +18 -0
  162. data/lib/ddtrace/contrib/faraday/ext.rb +14 -0
  163. data/lib/ddtrace/contrib/faraday/integration.rb +43 -0
  164. data/lib/ddtrace/contrib/faraday/middleware.rb +83 -0
  165. data/lib/ddtrace/contrib/faraday/patcher.rb +80 -0
  166. data/lib/ddtrace/contrib/faraday/rack_builder.rb +18 -0
  167. data/lib/ddtrace/contrib/grape/configuration/settings.rb +27 -0
  168. data/lib/ddtrace/contrib/grape/endpoint.rb +208 -0
  169. data/lib/ddtrace/contrib/grape/ext.rb +19 -0
  170. data/lib/ddtrace/contrib/grape/instrumentation.rb +33 -0
  171. data/lib/ddtrace/contrib/grape/integration.rb +39 -0
  172. data/lib/ddtrace/contrib/grape/patcher.rb +73 -0
  173. data/lib/ddtrace/contrib/graphql/configuration/settings.rb +27 -0
  174. data/lib/ddtrace/contrib/graphql/ext.rb +13 -0
  175. data/lib/ddtrace/contrib/graphql/integration.rb +39 -0
  176. data/lib/ddtrace/contrib/graphql/patcher.rb +60 -0
  177. data/lib/ddtrace/contrib/grpc/configuration/settings.rb +25 -0
  178. data/lib/ddtrace/contrib/grpc/datadog_interceptor.rb +74 -0
  179. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +54 -0
  180. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +76 -0
  181. data/lib/ddtrace/contrib/grpc/ext.rb +15 -0
  182. data/lib/ddtrace/contrib/grpc/integration.rb +38 -0
  183. data/lib/ddtrace/contrib/grpc/intercept_with_datadog.rb +49 -0
  184. data/lib/ddtrace/contrib/grpc/patcher.rb +68 -0
  185. data/lib/ddtrace/contrib/http/circuit_breaker.rb +39 -0
  186. data/lib/ddtrace/contrib/http/configuration/settings.rb +27 -0
  187. data/lib/ddtrace/contrib/http/ext.rb +14 -0
  188. data/lib/ddtrace/contrib/http/instrumentation.rb +175 -0
  189. data/lib/ddtrace/contrib/http/integration.rb +45 -0
  190. data/lib/ddtrace/contrib/http/patcher.rb +26 -0
  191. data/lib/ddtrace/contrib/http_annotation_helper.rb +10 -0
  192. data/lib/ddtrace/contrib/httprb/configuration/settings.rb +27 -0
  193. data/lib/ddtrace/contrib/httprb/ext.rb +14 -0
  194. data/lib/ddtrace/contrib/httprb/instrumentation.rb +163 -0
  195. data/lib/ddtrace/contrib/httprb/integration.rb +43 -0
  196. data/lib/ddtrace/contrib/httprb/patcher.rb +35 -0
  197. data/lib/ddtrace/contrib/integration.rb +16 -0
  198. data/lib/ddtrace/contrib/kafka/configuration/settings.rb +25 -0
  199. data/lib/ddtrace/contrib/kafka/consumer_event.rb +14 -0
  200. data/lib/ddtrace/contrib/kafka/consumer_group_event.rb +14 -0
  201. data/lib/ddtrace/contrib/kafka/event.rb +51 -0
  202. data/lib/ddtrace/contrib/kafka/events.rb +44 -0
  203. data/lib/ddtrace/contrib/kafka/events/connection/request.rb +34 -0
  204. data/lib/ddtrace/contrib/kafka/events/consumer/process_batch.rb +41 -0
  205. data/lib/ddtrace/contrib/kafka/events/consumer/process_message.rb +39 -0
  206. data/lib/ddtrace/contrib/kafka/events/consumer_group/heartbeat.rb +39 -0
  207. data/lib/ddtrace/contrib/kafka/events/consumer_group/join_group.rb +29 -0
  208. data/lib/ddtrace/contrib/kafka/events/consumer_group/leave_group.rb +29 -0
  209. data/lib/ddtrace/contrib/kafka/events/consumer_group/sync_group.rb +29 -0
  210. data/lib/ddtrace/contrib/kafka/events/produce_operation/send_messages.rb +32 -0
  211. data/lib/ddtrace/contrib/kafka/events/producer/deliver_messages.rb +35 -0
  212. data/lib/ddtrace/contrib/kafka/ext.rb +38 -0
  213. data/lib/ddtrace/contrib/kafka/integration.rb +39 -0
  214. data/lib/ddtrace/contrib/kafka/patcher.rb +26 -0
  215. data/lib/ddtrace/contrib/mongodb/configuration/settings.rb +28 -0
  216. data/lib/ddtrace/contrib/mongodb/ext.rb +20 -0
  217. data/lib/ddtrace/contrib/mongodb/instrumentation.rb +67 -0
  218. data/lib/ddtrace/contrib/mongodb/integration.rb +38 -0
  219. data/lib/ddtrace/contrib/mongodb/parsers.rb +68 -0
  220. data/lib/ddtrace/contrib/mongodb/patcher.rb +31 -0
  221. data/lib/ddtrace/contrib/mongodb/subscribers.rb +108 -0
  222. data/lib/ddtrace/contrib/mysql2/configuration/settings.rb +25 -0
  223. data/lib/ddtrace/contrib/mysql2/ext.rb +15 -0
  224. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +60 -0
  225. data/lib/ddtrace/contrib/mysql2/integration.rb +38 -0
  226. data/lib/ddtrace/contrib/mysql2/patcher.rb +27 -0
  227. data/lib/ddtrace/contrib/patchable.rb +59 -0
  228. data/lib/ddtrace/contrib/patcher.rb +62 -0
  229. data/lib/ddtrace/contrib/presto/configuration/settings.rb +25 -0
  230. data/lib/ddtrace/contrib/presto/ext.rb +25 -0
  231. data/lib/ddtrace/contrib/presto/instrumentation.rb +107 -0
  232. data/lib/ddtrace/contrib/presto/integration.rb +38 -0
  233. data/lib/ddtrace/contrib/presto/patcher.rb +30 -0
  234. data/lib/ddtrace/contrib/racecar/configuration/settings.rb +25 -0
  235. data/lib/ddtrace/contrib/racecar/event.rb +71 -0
  236. data/lib/ddtrace/contrib/racecar/events.rb +30 -0
  237. data/lib/ddtrace/contrib/racecar/events/batch.rb +27 -0
  238. data/lib/ddtrace/contrib/racecar/events/message.rb +27 -0
  239. data/lib/ddtrace/contrib/racecar/ext.rb +21 -0
  240. data/lib/ddtrace/contrib/racecar/integration.rb +39 -0
  241. data/lib/ddtrace/contrib/racecar/patcher.rb +26 -0
  242. data/lib/ddtrace/contrib/rack/configuration/settings.rb +41 -0
  243. data/lib/ddtrace/contrib/rack/ext.rb +18 -0
  244. data/lib/ddtrace/contrib/rack/integration.rb +38 -0
  245. data/lib/ddtrace/contrib/rack/middlewares.rb +290 -0
  246. data/lib/ddtrace/contrib/rack/patcher.rb +107 -0
  247. data/lib/ddtrace/contrib/rack/request_queue.rb +39 -0
  248. data/lib/ddtrace/contrib/rails/configuration/settings.rb +83 -0
  249. data/lib/ddtrace/contrib/rails/ext.rb +13 -0
  250. data/lib/ddtrace/contrib/rails/framework.rb +124 -0
  251. data/lib/ddtrace/contrib/rails/integration.rb +44 -0
  252. data/lib/ddtrace/contrib/rails/middlewares.rb +38 -0
  253. data/lib/ddtrace/contrib/rails/patcher.rb +74 -0
  254. data/lib/ddtrace/contrib/rails/railtie.rb +17 -0
  255. data/lib/ddtrace/contrib/rails/utils.rb +20 -0
  256. data/lib/ddtrace/contrib/rake/configuration/settings.rb +27 -0
  257. data/lib/ddtrace/contrib/rake/ext.rb +18 -0
  258. data/lib/ddtrace/contrib/rake/instrumentation.rb +88 -0
  259. data/lib/ddtrace/contrib/rake/integration.rb +38 -0
  260. data/lib/ddtrace/contrib/rake/patcher.rb +30 -0
  261. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +36 -0
  262. data/lib/ddtrace/contrib/redis/configuration/settings.rb +25 -0
  263. data/lib/ddtrace/contrib/redis/ext.rb +18 -0
  264. data/lib/ddtrace/contrib/redis/integration.rb +42 -0
  265. data/lib/ddtrace/contrib/redis/patcher.rb +97 -0
  266. data/lib/ddtrace/contrib/redis/quantize.rb +47 -0
  267. data/lib/ddtrace/contrib/redis/tags.rb +38 -0
  268. data/lib/ddtrace/contrib/redis/vendor/resolver.rb +159 -0
  269. data/lib/ddtrace/contrib/registerable.rb +33 -0
  270. data/lib/ddtrace/contrib/registry.rb +42 -0
  271. data/lib/ddtrace/contrib/resque/configuration/settings.rb +26 -0
  272. data/lib/ddtrace/contrib/resque/ext.rb +14 -0
  273. data/lib/ddtrace/contrib/resque/integration.rb +47 -0
  274. data/lib/ddtrace/contrib/resque/patcher.rb +29 -0
  275. data/lib/ddtrace/contrib/resque/resque_job.rb +80 -0
  276. data/lib/ddtrace/contrib/rest_client/configuration/settings.rb +26 -0
  277. data/lib/ddtrace/contrib/rest_client/ext.rb +14 -0
  278. data/lib/ddtrace/contrib/rest_client/integration.rb +38 -0
  279. data/lib/ddtrace/contrib/rest_client/patcher.rb +23 -0
  280. data/lib/ddtrace/contrib/rest_client/request_patch.rb +89 -0
  281. data/lib/ddtrace/contrib/sequel/configuration/settings.rb +23 -0
  282. data/lib/ddtrace/contrib/sequel/database.rb +61 -0
  283. data/lib/ddtrace/contrib/sequel/dataset.rb +62 -0
  284. data/lib/ddtrace/contrib/sequel/ext.rb +15 -0
  285. data/lib/ddtrace/contrib/sequel/integration.rb +38 -0
  286. data/lib/ddtrace/contrib/sequel/patcher.rb +33 -0
  287. data/lib/ddtrace/contrib/sequel/utils.rb +46 -0
  288. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +24 -0
  289. data/lib/ddtrace/contrib/shoryuken/ext.rb +18 -0
  290. data/lib/ddtrace/contrib/shoryuken/integration.rb +39 -0
  291. data/lib/ddtrace/contrib/shoryuken/patcher.rb +24 -0
  292. data/lib/ddtrace/contrib/shoryuken/tracer.rb +49 -0
  293. data/lib/ddtrace/contrib/sidekiq/client_tracer.rb +43 -0
  294. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +31 -0
  295. data/lib/ddtrace/contrib/sidekiq/ext.rb +24 -0
  296. data/lib/ddtrace/contrib/sidekiq/integration.rb +38 -0
  297. data/lib/ddtrace/contrib/sidekiq/patcher.rb +41 -0
  298. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +67 -0
  299. data/lib/ddtrace/contrib/sidekiq/tracing.rb +45 -0
  300. data/lib/ddtrace/contrib/sinatra/configuration/settings.rb +34 -0
  301. data/lib/ddtrace/contrib/sinatra/env.rb +58 -0
  302. data/lib/ddtrace/contrib/sinatra/ext.rb +24 -0
  303. data/lib/ddtrace/contrib/sinatra/headers.rb +31 -0
  304. data/lib/ddtrace/contrib/sinatra/integration.rb +38 -0
  305. data/lib/ddtrace/contrib/sinatra/patcher.rb +28 -0
  306. data/lib/ddtrace/contrib/sinatra/tracer.rb +150 -0
  307. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +78 -0
  308. data/lib/ddtrace/contrib/sucker_punch/configuration/settings.rb +25 -0
  309. data/lib/ddtrace/contrib/sucker_punch/exception_handler.rb +26 -0
  310. data/lib/ddtrace/contrib/sucker_punch/ext.rb +18 -0
  311. data/lib/ddtrace/contrib/sucker_punch/instrumentation.rb +84 -0
  312. data/lib/ddtrace/contrib/sucker_punch/integration.rb +38 -0
  313. data/lib/ddtrace/contrib/sucker_punch/patcher.rb +42 -0
  314. data/lib/ddtrace/correlation.rb +38 -0
  315. data/lib/ddtrace/diagnostics/environment_logger.rb +278 -0
  316. data/lib/ddtrace/diagnostics/health.rb +33 -0
  317. data/lib/ddtrace/distributed_tracing/headers/b3.rb +44 -0
  318. data/lib/ddtrace/distributed_tracing/headers/b3_single.rb +56 -0
  319. data/lib/ddtrace/distributed_tracing/headers/datadog.rb +42 -0
  320. data/lib/ddtrace/distributed_tracing/headers/headers.rb +70 -0
  321. data/lib/ddtrace/distributed_tracing/headers/helpers.rb +45 -0
  322. data/lib/ddtrace/encoding.rb +69 -0
  323. data/lib/ddtrace/environment.rb +31 -0
  324. data/lib/ddtrace/error.rb +27 -0
  325. data/lib/ddtrace/event.rb +52 -0
  326. data/lib/ddtrace/ext/analytics.rb +12 -0
  327. data/lib/ddtrace/ext/app_types.rb +11 -0
  328. data/lib/ddtrace/ext/correlation.rb +11 -0
  329. data/lib/ddtrace/ext/diagnostics.rb +35 -0
  330. data/lib/ddtrace/ext/distributed.rb +33 -0
  331. data/lib/ddtrace/ext/environment.rb +16 -0
  332. data/lib/ddtrace/ext/errors.rb +10 -0
  333. data/lib/ddtrace/ext/forced_tracing.rb +25 -0
  334. data/lib/ddtrace/ext/http.rb +46 -0
  335. data/lib/ddtrace/ext/manual_tracing.rb +9 -0
  336. data/lib/ddtrace/ext/metrics.rb +15 -0
  337. data/lib/ddtrace/ext/net.rb +10 -0
  338. data/lib/ddtrace/ext/priority.rb +16 -0
  339. data/lib/ddtrace/ext/runtime.rb +26 -0
  340. data/lib/ddtrace/ext/sampling.rb +16 -0
  341. data/lib/ddtrace/ext/sql.rb +8 -0
  342. data/lib/ddtrace/ext/transport.rb +17 -0
  343. data/lib/ddtrace/forced_tracing.rb +36 -0
  344. data/lib/ddtrace/logger.rb +40 -0
  345. data/lib/ddtrace/metrics.rb +222 -0
  346. data/lib/ddtrace/monkey.rb +58 -0
  347. data/lib/ddtrace/opentelemetry/extensions.rb +13 -0
  348. data/lib/ddtrace/opentelemetry/span.rb +33 -0
  349. data/lib/ddtrace/opentracer.rb +40 -0
  350. data/lib/ddtrace/opentracer/binary_propagator.rb +24 -0
  351. data/lib/ddtrace/opentracer/carrier.rb +6 -0
  352. data/lib/ddtrace/opentracer/distributed_headers.rb +52 -0
  353. data/lib/ddtrace/opentracer/global_tracer.rb +15 -0
  354. data/lib/ddtrace/opentracer/propagator.rb +22 -0
  355. data/lib/ddtrace/opentracer/rack_propagator.rb +60 -0
  356. data/lib/ddtrace/opentracer/scope.rb +15 -0
  357. data/lib/ddtrace/opentracer/scope_manager.rb +6 -0
  358. data/lib/ddtrace/opentracer/span.rb +98 -0
  359. data/lib/ddtrace/opentracer/span_context.rb +14 -0
  360. data/lib/ddtrace/opentracer/span_context_factory.rb +23 -0
  361. data/lib/ddtrace/opentracer/text_map_propagator.rb +75 -0
  362. data/lib/ddtrace/opentracer/thread_local_scope.rb +30 -0
  363. data/lib/ddtrace/opentracer/thread_local_scope_manager.rb +40 -0
  364. data/lib/ddtrace/opentracer/tracer.rb +208 -0
  365. data/lib/ddtrace/patcher.rb +47 -0
  366. data/lib/ddtrace/pin.rb +138 -0
  367. data/lib/ddtrace/pipeline.rb +46 -0
  368. data/lib/ddtrace/pipeline/span_filter.rb +38 -0
  369. data/lib/ddtrace/pipeline/span_processor.rb +20 -0
  370. data/lib/ddtrace/propagation/grpc_propagator.rb +61 -0
  371. data/lib/ddtrace/propagation/http_propagator.rb +75 -0
  372. data/lib/ddtrace/quantization/hash.rb +103 -0
  373. data/lib/ddtrace/quantization/http.rb +86 -0
  374. data/lib/ddtrace/runtime/cgroup.rb +44 -0
  375. data/lib/ddtrace/runtime/class_count.rb +17 -0
  376. data/lib/ddtrace/runtime/container.rb +73 -0
  377. data/lib/ddtrace/runtime/gc.rb +16 -0
  378. data/lib/ddtrace/runtime/identity.rb +41 -0
  379. data/lib/ddtrace/runtime/metrics.rb +96 -0
  380. data/lib/ddtrace/runtime/object_space.rb +19 -0
  381. data/lib/ddtrace/runtime/socket.rb +14 -0
  382. data/lib/ddtrace/runtime/thread_count.rb +16 -0
  383. data/lib/ddtrace/sampler.rb +292 -0
  384. data/lib/ddtrace/sampling.rb +2 -0
  385. data/lib/ddtrace/sampling/matcher.rb +57 -0
  386. data/lib/ddtrace/sampling/rate_limiter.rb +127 -0
  387. data/lib/ddtrace/sampling/rule.rb +61 -0
  388. data/lib/ddtrace/sampling/rule_sampler.rb +125 -0
  389. data/lib/ddtrace/span.rb +307 -0
  390. data/lib/ddtrace/sync_writer.rb +67 -0
  391. data/lib/ddtrace/tracer.rb +439 -0
  392. data/lib/ddtrace/transport/http.rb +91 -0
  393. data/lib/ddtrace/transport/http/adapters/net.rb +120 -0
  394. data/lib/ddtrace/transport/http/adapters/registry.rb +24 -0
  395. data/lib/ddtrace/transport/http/adapters/test.rb +81 -0
  396. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +68 -0
  397. data/lib/ddtrace/transport/http/api.rb +46 -0
  398. data/lib/ddtrace/transport/http/api/endpoint.rb +27 -0
  399. data/lib/ddtrace/transport/http/api/fallbacks.rb +22 -0
  400. data/lib/ddtrace/transport/http/api/instance.rb +33 -0
  401. data/lib/ddtrace/transport/http/api/map.rb +14 -0
  402. data/lib/ddtrace/transport/http/api/spec.rb +15 -0
  403. data/lib/ddtrace/transport/http/builder.rb +163 -0
  404. data/lib/ddtrace/transport/http/client.rb +50 -0
  405. data/lib/ddtrace/transport/http/env.rb +48 -0
  406. data/lib/ddtrace/transport/http/response.rb +26 -0
  407. data/lib/ddtrace/transport/http/statistics.rb +30 -0
  408. data/lib/ddtrace/transport/http/traces.rb +143 -0
  409. data/lib/ddtrace/transport/io.rb +26 -0
  410. data/lib/ddtrace/transport/io/client.rb +76 -0
  411. data/lib/ddtrace/transport/io/response.rb +25 -0
  412. data/lib/ddtrace/transport/io/traces.rb +91 -0
  413. data/lib/ddtrace/transport/parcel.rb +13 -0
  414. data/lib/ddtrace/transport/request.rb +13 -0
  415. data/lib/ddtrace/transport/response.rb +60 -0
  416. data/lib/ddtrace/transport/statistics.rb +72 -0
  417. data/lib/ddtrace/transport/traces.rb +183 -0
  418. data/lib/ddtrace/utils.rb +65 -0
  419. data/lib/ddtrace/utils/database.rb +25 -0
  420. data/lib/ddtrace/utils/time.rb +14 -0
  421. data/lib/ddtrace/vendor/active_record/connection_specification.rb +301 -0
  422. data/lib/ddtrace/version.rb +12 -0
  423. data/lib/ddtrace/worker.rb +20 -0
  424. data/lib/ddtrace/workers.rb +117 -0
  425. data/lib/ddtrace/workers/async.rb +165 -0
  426. data/lib/ddtrace/workers/loop.rb +105 -0
  427. data/lib/ddtrace/workers/polling.rb +48 -0
  428. data/lib/ddtrace/workers/queue.rb +39 -0
  429. data/lib/ddtrace/workers/runtime_metrics.rb +47 -0
  430. data/lib/ddtrace/workers/trace_writer.rb +202 -0
  431. data/lib/ddtrace/writer.rb +175 -0
  432. data/tasks/release_gem.rake +28 -0
  433. metadata +815 -0
@@ -0,0 +1,1402 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## [0.38.0] - 2020-07-13
6
+
7
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.38.0
8
+
9
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
10
+
11
+ ### Added
12
+
13
+ - http.rb integration (#529, #853)
14
+ - Kafka integration (#1070) (@tjwp)
15
+ - Span#set_tags (#1081) (@DocX)
16
+ - retry_count tag for Sidekiq jobs (#1089) (@elyalvarado)
17
+ - Startup environment log (#1104, #1109)
18
+ - DD_SITE and DD_API_KEY configuration (#1107)
19
+
20
+ ### Changed
21
+
22
+ - Auto instrument Faraday default connection (#1057)
23
+ - Sidekiq client middleware is now the same for client and server (#1099) (@drcapulet)
24
+ - Single pass SpanFilter (#1071) (@tjwp)
25
+
26
+ ### Fixed
27
+
28
+ - Ensure fatal exceptions are propagated (#1100)
29
+ - Respect child_of: option in Tracer#trace (#1082) (@DocX)
30
+ - Improve Writer thread safety (#1091) (@fledman)
31
+
32
+ ### Refactored
33
+
34
+ - Improvements to test suite (#1092, #1103)
35
+
36
+ ## [0.37.0] - 2020-06-24
37
+
38
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.37.0
39
+
40
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
41
+
42
+ ### Refactored
43
+
44
+ - Documentation improvements regarding Datadog Agent defaults (#1074) (@cswatt)
45
+ - Improvements to test suite (#1043, #1051, #1062, #1075, #1076, #1086)
46
+
47
+ ### Removed
48
+
49
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= (#1072, #1079)
50
+ - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
51
+ - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
52
+
53
+ A reference to a tracer instance cannot be stored as it will be replaced by a new instance during reconfiguration.
54
+
55
+ Retrieving the global tracer instance, by invoking `Datadog.tracer`, is the only safe mechanism to acquire the active tracer instance.
56
+
57
+ 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.
58
+
59
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= (#1073)
60
+ - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
61
+ - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
62
+ - This removal is a continuation of #1079 above, thus carrying the same rationale.
63
+
64
+ ### Migration
65
+
66
+ - Remove `tracer` argument provided to integrations (e.g. `c.use :rails, tracer: ...`).
67
+ - Remove `tracer` argument provided to `Pin` or `DeprecatedPin` initializers (e.g. `Pin.new(service, tracer: ...)`).
68
+ - If you require a custom tracer instance, use a global instance configuration:
69
+ ```ruby
70
+ Datadog.configure do |c|
71
+ c.tracer.instance = custom_tracer
72
+ end
73
+ ```
74
+
75
+ ## [0.36.0] - 2020-05-27
76
+
77
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.36.0
78
+
79
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
80
+
81
+ ### Changed
82
+
83
+ - Prevent trace components from being re-initialized multiple times during setup (#1037)
84
+
85
+ ### Fixed
86
+
87
+ - Allow Rails patching if Railties are loaded (#993, #1054) (@mustela, @bheemreddy181, @vramaiah)
88
+ - Pin delegates to default tracer unless configured (#1041)
89
+
90
+ ### Refactored
91
+
92
+ - Improvements to test suite (#1027, #1031, #1045, #1046, #1047)
93
+
94
+ ## [0.35.2] - 2020-05-08
95
+
96
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.2
97
+
98
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
99
+
100
+ ### Fixed
101
+
102
+ - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
103
+ - `Datadog.configure` forcing all options to eager load (#1032, #1034) (@kelvin-acosta)
104
+
105
+ ## [0.35.1] - 2020-05-05
106
+
107
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.1
108
+
109
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
110
+
111
+ ### Fixed
112
+
113
+ - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
114
+
115
+ ## [0.35.0] - 2020-04-29
116
+
117
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.0
118
+
119
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
120
+
121
+ ### Added
122
+
123
+ - Chunk large trace payloads before flushing (#818, #840)
124
+ - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
125
+ - active_job support for Resque (#991) (@stefanahman, @psycholein)
126
+ - JRuby 9.2 to CI test matrix (#995)
127
+ - `TraceWriter` and `AsyncTraceWriter` workers (#986)
128
+ - Runtime metrics worker (#988)
129
+
130
+ ### Changed
131
+
132
+ - Populate env, service, and version from tags (#1008)
133
+ - Extract components from configuration (#996)
134
+ - Extract logger to components (#997)
135
+ - Extract runtime metrics worker from `Writer` (#1004)
136
+ - Improvements to Faraday documentation (#1005)
137
+
138
+ ### Fixed
139
+
140
+ - Runtime metrics not starting after #write (#1010)
141
+
142
+ ### Refactored
143
+
144
+ - Improvements to test suite (#842, #1006, #1009)
145
+
146
+ ## [0.34.2] - 2020-04-09
147
+
148
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.34.2
149
+
150
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
151
+
152
+ ### Changed
153
+
154
+ - Revert Rails applications setting default `env` if none are configured. (#1000) (@errriclee)
155
+
156
+ ## [0.34.1] - 2020-04-02
157
+
158
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.34.1
159
+
160
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
161
+
162
+ ### Changed
163
+
164
+ - Rails applications set default `service` and `env` if none are configured. (#990)
165
+
166
+ ### Fixed
167
+
168
+ - Some configuration settings not applying (#989, #990) (@rahul342)
169
+
170
+ ## [0.34.0] - 2020-03-31
171
+
172
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.34.0
173
+
174
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
175
+
176
+ ### Added
177
+
178
+ - `Datadog::Event` for simple pub-sub messaging (#972)
179
+ - `Datadog::Workers` for trace writing (#969, #973)
180
+ - `_dd.measured` tag to some integrations for more statistics (#974)
181
+ - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
182
+ - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations (#882, #953) (@stormsilver)
183
+
184
+ ### Fixed
185
+
186
+ - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
187
+ - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
188
+ - Presto configuration (#975)
189
+ - Test suite issues (#981)
190
+
191
+ ## [0.33.1] - 2020-03-09
192
+
193
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.33.1
194
+
195
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
196
+
197
+ ### Fixed
198
+
199
+ - NoMethodError when activating instrumentation for non-existent library (#964, #966) (@roccoblues, @brafales)
200
+
201
+ ## [0.33.0] - 2020-03-05
202
+
203
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.33.0
204
+
205
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
206
+
207
+ ### Added
208
+
209
+ - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
210
+ - Sidekiq job argument tagging (#933) (@mantrala)
211
+ - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
212
+ - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
213
+ - Setter/reset behavior for configuration options (#957)
214
+ - Priority sampling rate tag (#891)
215
+
216
+ ### Changed
217
+
218
+ - Enforced minimum version requirements for instrumentation (#944)
219
+ - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
220
+ - Relaxed Rack minimum version to 1.1.0 (#952)
221
+
222
+ ### Fixed
223
+
224
+ - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
225
+ - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
226
+ - Runtime metrics accumulating service names when disabled (#956)
227
+ - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
228
+ - Documentation tweaks (#948, #955) (@mstruve, @link04)
229
+ - Various test suite issues (#930, #932, #951, #960)
230
+
231
+ ## [0.32.0] - 2020-01-22
232
+
233
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.32.0
234
+
235
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
236
+
237
+ ### Added
238
+
239
+ - New transport: Datadog::Transport::IO (#910)
240
+ - Dual License (#893, #921)
241
+
242
+ ### Changed
243
+
244
+ - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
245
+ - RuleSampler is now the default sampler; no behavior changes by default (#917)
246
+
247
+ ### Refactored
248
+
249
+ - Improved support for multiple tracer instances (#919)
250
+ - Improvements to test suite (#909, #928, #929)
251
+
252
+ ## [0.31.1] - 2020-01-15
253
+
254
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.31.1
255
+
256
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
257
+
258
+ ### Fixed
259
+
260
+ - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
261
+ - Fix references to Datadog::Tracer.log (#912)
262
+ - Ensure http.status_code tag is always a string (#927)
263
+
264
+ ### Refactored
265
+
266
+ - Improvements to test suite & CI (#911, #918)
267
+
268
+ ## [0.31.0] - 2020-01-07
269
+
270
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.31.0
271
+
272
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
273
+
274
+ ### Added
275
+
276
+ - Ruby 2.7 support (#805, #896)
277
+ - ActionCable integration (#132, #824) (@renchap, @ericmustin)
278
+ - Faraday 1.0 support (#906)
279
+ - Set resource for Rails template spans (#855, #881) (@djmb)
280
+ - at_exit hook for graceful Tracer shutdown (#884)
281
+ - Environment variables to configure RuleSampler defaults (#892)
282
+
283
+ ### Changed
284
+
285
+ - Updated partial trace flushing to conform with new back-end requirements (#845)
286
+ - Store numeric tags as metrics (#886)
287
+ - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
288
+ - Changed default RuleSampler rate limit from unlimited to 100/s (#898)
289
+
290
+ ### Fixed
291
+
292
+ - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
293
+
294
+ ### Refactored
295
+
296
+ - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
297
+
298
+ ## [0.30.1] - 2019-12-30
299
+
300
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.30.1
301
+
302
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
303
+
304
+ ### Fixed
305
+
306
+ - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
307
+ - Spans associated with runtime metrics when disabled (#885)
308
+
309
+ ### Refactored
310
+
311
+ - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
312
+
313
+ ## [0.30.0] - 2019-12-04
314
+
315
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.30.0
316
+
317
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
318
+
319
+ ### Added
320
+
321
+ - Additional tracer health metrics (#867)
322
+ - Integration patching instrumentation (#871)
323
+ - Rule-based trace sampling (#854)
324
+
325
+ ### Fixed
326
+
327
+ - Rails template layout name error (#872) (@djmb)
328
+
329
+ ## [0.29.1] - 2019-11-26
330
+
331
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.29.1
332
+
333
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
334
+
335
+ ### Fixed
336
+
337
+ - Priority sampling not activating by default (#868)
338
+
339
+ ## [0.29.0] - 2019-11-20
340
+
341
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.29.0
342
+
343
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
344
+
345
+ ### Added
346
+
347
+ - Tracer health metrics (#838, #859)
348
+
349
+ ### Changed
350
+
351
+ - Default trace buffer size from 100 to 1000 (#865)
352
+ - Rack request start headers to accept more values (#832) (@JamesHarker)
353
+ - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
354
+
355
+ ### Fixed
356
+
357
+ - Synthetics trace context being ignored (#856)
358
+
359
+ ### Refactored
360
+
361
+ - Tracer buffer constants (#851)
362
+
363
+ ### Removed
364
+
365
+ - Some old Ruby 1.9 code (#819, #844)
366
+
367
+ ## [0.28.0] - 2019-10-01
368
+
369
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.28.0
370
+
371
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
372
+
373
+ ### Added
374
+
375
+ - Support for Rails 6.0 (#814)
376
+ - Multiplexing on hostname/port for Dalli (#823)
377
+ - Support for Redis array arguments (#796, #817) (@brafales)
378
+
379
+ ### Refactored
380
+
381
+ - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
382
+
383
+ ## [0.27.0] - 2019-09-04
384
+
385
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.27.0
386
+
387
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.26.0...v0.27.0
388
+
389
+ Support for Ruby < 2.0 is *removed*. Plan for timeline is as follows:
390
+
391
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
392
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
393
+ - 0.27.0: Support for Ruby < 2.0 is removed.
394
+
395
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0 (August 6th, 2020.)
396
+
397
+ ### Added
398
+
399
+ - Support for Ruby 2.5 & 2.6 (#800, #802)
400
+ - Ethon integration (#527, #778) (@al-kudryavtsev)
401
+
402
+ ### Refactored
403
+
404
+ - Rails integration into smaller integrations per component (#747, #762, #795)
405
+
406
+ ### Removed
407
+
408
+ - Support for Ruby 1.9 (#791)
409
+
410
+ ## [0.26.0] - 2019-08-06
411
+
412
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.26.0
413
+
414
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.1...v0.26.0
415
+
416
+ Support for Ruby < 2.0 is *deprecated*. Plan for timeline is as follows:
417
+
418
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
419
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
420
+ - 0.27.0: Support for Ruby < 2.0 is removed.
421
+
422
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0 (August 6th, 2020.)
423
+
424
+ ### Added
425
+
426
+ - Container ID tagging for containerized environments (#784)
427
+
428
+ ### Refactored
429
+
430
+ - Datadog::Metrics constants (#789)
431
+
432
+ ### Removed
433
+
434
+ - Datadog::HTTPTransport and related components (#782)
435
+
436
+ ## [0.25.1] - 2019-07-16
437
+
438
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.25.1
439
+
440
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
441
+
442
+ ### Fixed
443
+
444
+ - Redis integration not quantizing AUTH command (#776)
445
+
446
+ ## [0.25.0] - 2019-06-27
447
+
448
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.25.0
449
+
450
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.24.0...v0.25.0
451
+
452
+ Support for Ruby < 2.0 is *deprecated*. Plan for timeline is as follows:
453
+
454
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
455
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
456
+ - 0.27.0: Support for Ruby < 2.0 is removed.
457
+
458
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0.
459
+
460
+ ### Added
461
+
462
+ - Unix socket support for transport layer (#770)
463
+
464
+ ### Changed
465
+
466
+ - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
467
+
468
+ ### Fixed
469
+
470
+ - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
471
+
472
+ ### Refactored
473
+
474
+ - Transport layer (#628)
475
+
476
+ ### Deprecated
477
+
478
+ - Ruby < 2.0 support (#771)
479
+ - Use of `Datadog::HTTPTransport` (#628)
480
+ - Use of `Datadog::Ext::ForcedTracing` (#765)
481
+
482
+ ## [0.24.0] - 2019-05-21
483
+
484
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.24.0
485
+
486
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
487
+
488
+ ### Added
489
+
490
+ - B3 header support (#753)
491
+ - Hostname tagging option (#760)
492
+ - Contribution and development guides (#754)
493
+
494
+ ## [0.23.3] - 2019-05-16
495
+
496
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.3
497
+
498
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
499
+
500
+ ### Fixed
501
+
502
+ - Integrations initializing tracer at load time (#756)
503
+
504
+ ## [0.23.2] - 2019-05-10
505
+
506
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.2
507
+
508
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
509
+
510
+ ### Fixed
511
+
512
+ - Span types for HTTP, web, and some datastore integrations (#751)
513
+ - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
514
+ - Rails 6 warning for `parent_name` (#750) (@sinsoku)
515
+
516
+ ## [0.23.1] - 2019-05-02
517
+
518
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.1
519
+
520
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
521
+
522
+ ### Fixed
523
+
524
+ - NoMethodError runtime_metrics for SyncWriter (#748)
525
+
526
+ ## [0.23.0] - 2019-04-30
527
+
528
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.0
529
+
530
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
531
+
532
+ ### Added
533
+
534
+ - Error status support via tags for OpenTracing (#739)
535
+ - Forced sampling support via tags (#720)
536
+
537
+ ### Fixed
538
+
539
+ - Wrong return values for Rake integration (#742) (@Redapted)
540
+
541
+ ### Removed
542
+
543
+ - Obsolete service telemetry (#738)
544
+
545
+ ## [0.22.0] - 2019-04-15
546
+
547
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.22.0
548
+
549
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.2...v0.22.0
550
+
551
+ In this release we are adding initial support for the **beta** [Runtime metrics collection](https://docs.datadoghq.com/tracing/advanced/runtime_metrics/?tab=ruby) feature.
552
+
553
+ ### Changed
554
+
555
+ - Add warning log if an integration is incompatible (#722) (@ericmustin)
556
+
557
+ ### Added
558
+
559
+ - Initial beta support for Runtime metrics collection (#677)
560
+
561
+ ## [0.21.2] - 2019-04-10
562
+
563
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.2
564
+
565
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
566
+
567
+ ### Changed
568
+
569
+ - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
570
+
571
+ ## [0.21.1] - 2019-03-26
572
+
573
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.1
574
+
575
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
576
+
577
+ ### Changed
578
+
579
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
580
+
581
+ ## [0.21.0] - 2019-03-20
582
+
583
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.0
584
+
585
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
586
+
587
+ ### Added
588
+
589
+ - Trace analytics support (#697, #715)
590
+ - HTTP after_request span hook (#716, #724)
591
+
592
+ ### Fixed
593
+
594
+ - Distributed traces with IDs in 2^64 range being dropped (#719)
595
+ - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
596
+
597
+ ### Refactored
598
+
599
+ - Global configuration for tracing into configuration API (#714)
600
+
601
+ ## [0.20.0] - 2019-03-07
602
+
603
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.20.0
604
+
605
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0
606
+
607
+ This release will log deprecation warnings for any usage of `Datadog::Pin`.
608
+ These changes are backwards compatible, but all integration configuration should be moved away from `Pin` and to the configuration API instead.
609
+
610
+ ### Added
611
+
612
+ - Propagate synthetics origin header (#699)
613
+
614
+ ### Changed
615
+
616
+ - Enable distributed tracing by default (#701)
617
+
618
+ ### Fixed
619
+
620
+ - Fix Rack http_server.queue spans missing from distributed traces (#709)
621
+
622
+ ### Refactored
623
+
624
+ - Refactor MongoDB to use instrumentation module (#704)
625
+ - Refactor HTTP to use instrumentation module (#703)
626
+ - Deprecate GRPC global pin in favor of configuration API (#702)
627
+ - Deprecate Grape pin in favor of configuration API (#700)
628
+ - Deprecate Faraday pin in favor of configuration API (#696)
629
+ - Deprecate Dalli pin in favor of configuration API (#693)
630
+
631
+ ## [0.19.1] - 2019-02-07
632
+
633
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.19.1
634
+
635
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
636
+
637
+ ### Added
638
+
639
+ - Documentation for Lograge implementation (#683, #687) (@nic-lan)
640
+
641
+ ### Fixed
642
+
643
+ - Priority sampling dropping spans (#686)
644
+
645
+ ## [0.19.0] - 2019-01-22
646
+
647
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.19.0
648
+
649
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
650
+
651
+ ### Added
652
+
653
+ - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
654
+ - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
655
+
656
+ ### Changed
657
+
658
+ - Priority sampling enabled by default. (#654)
659
+
660
+ ## [0.18.3] - 2019-01-17
661
+
662
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.3
663
+
664
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
665
+
666
+ ### Fixed
667
+
668
+ - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
669
+ - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
670
+ - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
671
+
672
+ ## [0.18.2] - 2019-01-03
673
+
674
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.2
675
+
676
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
677
+
678
+ ### Fixed
679
+
680
+ - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
681
+ - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
682
+
683
+ ## [0.18.1] - 2018-12-20
684
+
685
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.1
686
+
687
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
688
+
689
+ ### Fixed
690
+
691
+ - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
692
+
693
+ ## [0.18.0] - 2018-12-18
694
+
695
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.0
696
+
697
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
698
+
699
+ ### Added
700
+
701
+ - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
702
+ - Sidekiq client integration (#602, #650) (@dirk)
703
+ - Datadog::Shim for adding instrumentation (#648)
704
+
705
+ ### Changed
706
+
707
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
708
+ - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
709
+ - Return default configuration instead of `nil` on miss (#651)
710
+
711
+ ## [0.17.3] - 2018-11-29
712
+
713
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.3
714
+
715
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
716
+
717
+ ### Fixed
718
+
719
+ - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
720
+ - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
721
+ - Rack middleware inserted twice in some Rails applications (#641)
722
+
723
+ ## [0.17.2] - 2018-11-23
724
+
725
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.2
726
+
727
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
728
+
729
+ ### Fixed
730
+
731
+ - Resque integration shutting down tracer when forking is disabled (#637)
732
+
733
+ ## [0.17.1] - 2018-11-07
734
+
735
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.1
736
+
737
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
738
+
739
+ ### Fixed
740
+
741
+ - RestClient incorrect app type (#583) (@gaborszakacs)
742
+ - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
743
+
744
+ ## [0.17.0] - 2018-10-30
745
+
746
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.0
747
+
748
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
749
+
750
+ ### Added
751
+
752
+ - [BETA] Span memory `allocations` attribute (#597) (@dasch)
753
+
754
+ ### Changed
755
+
756
+ - Use Rack Env to update resource in Rails (#580) (@dasch)
757
+ - Expand support for Sidekiq to 3.5.4+ (#593)
758
+ - Expand support for mysql2 to 0.3.21+ (#578)
759
+
760
+ ### Refactored
761
+
762
+ - Upgraded integrations to new API (#544)
763
+ - Encoding classes into modules (#598)
764
+
765
+ ## [0.16.1] - 2018-10-17
766
+
767
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.16.1
768
+
769
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
770
+
771
+ ### Fixed
772
+
773
+ - Priority sampling response being mishandled (#591)
774
+ - HTTP open timeout to agent too long (#582)
775
+
776
+ ## [0.16.0] - 2018-09-18
777
+
778
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.16.0
779
+
780
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
781
+
782
+ ### Added
783
+
784
+ - OpenTracing support (#517)
785
+ - `middleware` option for disabling Rails trace middleware. (#552)
786
+
787
+ ## [0.15.0] - 2018-09-12
788
+
789
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.15.0
790
+
791
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
792
+
793
+ ### Added
794
+
795
+ - Rails 5.2 support (#535)
796
+ - Context propagation support for `Concurrent::Future` (#415, #496)
797
+
798
+ ### Fixed
799
+
800
+ - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
801
+ - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
802
+
803
+ ## [0.14.2] - 2018-08-23
804
+
805
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.2
806
+
807
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
808
+
809
+ ### Fixed
810
+
811
+ - Sampling priority from request headers not being used (#521)
812
+
813
+ ## [0.14.1] - 2018-08-21
814
+
815
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.1
816
+
817
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
818
+
819
+ ### Changed
820
+
821
+ - Reduce verbosity of connection errors in log (#515)
822
+
823
+ ### Fixed
824
+
825
+ - Sequel 'not a valid integration' error (#514, #516) (@steveh)
826
+
827
+ ## [0.14.0] - 2018-08-14
828
+
829
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0
830
+
831
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
832
+
833
+ ### Added
834
+
835
+ - RestClient integration (#422, #460)
836
+ - DelayedJob integration (#393 #444)
837
+ - Version information to integrations (#483)
838
+ - Tracer#active_root_span helper (#503)
839
+
840
+ ### Changed
841
+
842
+ - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
843
+ - ActiveRecord to allow configuring multiple databases (#451)
844
+ - Integrations configuration settings (#450, #452, #451)
845
+
846
+ ### Fixed
847
+
848
+ - Context propagation for distributed traces when context is full (#502)
849
+ - Rake shutdown tracer after execution (#487) (@kissrobber)
850
+ - Deprecation warnings fired using Unicorn (#508)
851
+
852
+ ## [0.14.0.rc1] - 2018-08-08
853
+
854
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.rc1
855
+
856
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0.rc1
857
+
858
+ ### Added
859
+
860
+ - RestClient integration (#422, #460)
861
+ - Tracer#active_root_span helper (#503)
862
+
863
+ ### Fixed
864
+
865
+ - Context propagation for distributed traces when context is full (#502)
866
+
867
+ ## [0.14.0.beta2] - 2018-07-25
868
+
869
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.beta2
870
+
871
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0.beta2
872
+
873
+ ### Fixed
874
+
875
+ - Rake shutdown tracer after execution (#487) @kissrobber
876
+
877
+ ## [0.14.0.beta1] - 2018-07-24
878
+
879
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.beta1
880
+
881
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
882
+
883
+ ### Changed
884
+
885
+ - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
886
+ - ActiveRecord to allow configuring multiple databases (#451)
887
+ - Integrations configuration settings (#450, #452, #451)
888
+
889
+ ### Fixed
890
+
891
+ - Ruby warnings during tests (#499)
892
+ - Tests failing intermittently on Ruby 1.9.3 (#497)
893
+
894
+ ### Added
895
+
896
+ - DelayedJob integration (#393 #444)
897
+ - Version information to integrations (#483)
898
+
899
+ ## [0.13.2] - 2018-08-07
900
+
901
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.2
902
+
903
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
904
+
905
+ ### Fixed
906
+
907
+ - Context propagation for distributed traces when context is full (#502)
908
+
909
+ ## [0.13.1] - 2018-07-17
910
+
911
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.1
912
+
913
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
914
+
915
+ ### Changed
916
+
917
+ - Configuration class variables don't lazy load (#477)
918
+ - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
919
+
920
+ ### Fixed
921
+
922
+ - Workers not shutting down quickly in some short running processes (#475)
923
+ - Missing documentation for mysql2 and Rails (#476, #488)
924
+ - Missing variable in rescue block (#481) (@kitop)
925
+ - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
926
+
927
+ ## [0.13.0] - 2018-06-20
928
+
929
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.0
930
+
931
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
932
+
933
+ ### Added
934
+
935
+ - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
936
+ - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
937
+ - ActiveModelSerializers integration (#340) (@sullimander)
938
+ - Excon integration (#211, #426) (@walterking, @jeffjo)
939
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
940
+ - Request queuing tracing to Rack (experimental) (#272)
941
+ - ActiveSupport::Notifications::Event helper for event tracing (#400)
942
+ - Request and response header tags to Rack (#389)
943
+ - Request and response header tags to Sinatra (#427, #375)
944
+ - MySQL2 integration (#453) (@jamiehodge)
945
+ - Sidekiq job delay tag (#443, #418) (@gottfrois)
946
+
947
+ ### Fixed
948
+
949
+ - Elasticsearch quantization of ids (#458)
950
+ - MongoDB to allow quantization of collection name (#463)
951
+
952
+ ### Refactored
953
+
954
+ - Hash quantization into core library (#410)
955
+ - MongoDB integration to use Hash quantization library (#463)
956
+
957
+ ### Changed
958
+
959
+ - Hash quantization truncates arrays with nested objects (#463)
960
+
961
+ ## [0.13.0.beta1] - 2018-05-09
962
+
963
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.0.beta1
964
+
965
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
966
+
967
+ ### Added
968
+
969
+ - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
970
+ - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
971
+ - ActiveModelSerializers integration (#340) (@sullimander)
972
+ - Excon integration (#211) (@walterking)
973
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
974
+ - Request queuing tracing to Rack (experimental) (#272)
975
+ - ActiveSupport::Notifications::Event helper for event tracing (#400)
976
+ - Request and response header tags to Rack (#389)
977
+
978
+ ### Refactored
979
+
980
+ - Hash quantization into core library (#410)
981
+
982
+ ## [0.12.1] - 2018-06-12
983
+
984
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.1
985
+
986
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
987
+
988
+ ### Changed
989
+
990
+ - Cache configuration `Proxy` objects (#446)
991
+ - `freeze` more constant strings, to improve memory usage (#446)
992
+ - `Utils#truncate` to use slightly less memory (#446)
993
+
994
+ ### Fixed
995
+
996
+ - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
997
+ - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
998
+ - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
999
+ - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
1000
+ - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
1001
+
1002
+ ### Refactored
1003
+
1004
+ - ActionController patching strategy using modules. (#439)
1005
+ - ActionView tracing strategy. (#445, #447)
1006
+
1007
+ ## [0.12.0] - 2018-05-08
1008
+
1009
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0
1010
+
1011
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1012
+
1013
+ ### Added
1014
+
1015
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
1016
+ - ActiveRecord object instantiation tracing (#311, #334)
1017
+ - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1018
+ - HTTP quantization module (#384)
1019
+ - Partial flushing option to tracer (#247, #397)
1020
+
1021
+ ### Changed
1022
+
1023
+ - Rack applies URL quantization by default (#371)
1024
+ - Elasticsearch applies body quantization by default (#362)
1025
+ - Context for a single trace now has hard limit of 100,000 spans (#247)
1026
+ - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1027
+
1028
+ ### Fixed
1029
+
1030
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1031
+ - Some scenarios where `middleware_names` could result in bad resource names (#354)
1032
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1033
+
1034
+ ### Deprecated
1035
+
1036
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1037
+
1038
+ ### Refactored
1039
+
1040
+ - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1041
+ - Rails to use ActiveRecord integration instead of its own implementation (#396)
1042
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1043
+
1044
+ ## [0.12.0.rc1] - 2018-04-11
1045
+
1046
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.rc1
1047
+
1048
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1049
+
1050
+ ### Added
1051
+
1052
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
1053
+ - ActiveRecord object instantiation tracing (#311, #334)
1054
+ - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1055
+ - HTTP quantization module (#384)
1056
+ - Partial flushing option to tracer (#247, #397)
1057
+
1058
+ ### Changed
1059
+
1060
+ - Rack applies URL quantization by default (#371)
1061
+ - Elasticsearch applies body quantization by default (#362)
1062
+ - Context for a single trace now has hard limit of 100,000 spans (#247)
1063
+ - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1064
+
1065
+ ### Fixed
1066
+
1067
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1068
+ - Some scenarios where `middleware_names` could result in bad resource names (#354)
1069
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1070
+
1071
+ ### Deprecated
1072
+
1073
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1074
+
1075
+ ### Refactored
1076
+
1077
+ - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1078
+ - Rails to use ActiveRecord integration instead of its own implementation (#396)
1079
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1080
+
1081
+ ## [0.12.0.beta2] - 2018-02-28
1082
+
1083
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.beta2
1084
+
1085
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0.beta2
1086
+
1087
+ ### Fixed
1088
+
1089
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1090
+
1091
+ ## [0.12.0.beta1] - 2018-02-09
1092
+
1093
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.beta1
1094
+
1095
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1096
+
1097
+ ### Added
1098
+
1099
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
1100
+ - ActiveRecord object instantiation tracing (#311, #334)
1101
+ - `http.request_id` tag to Rack spans (#335)
1102
+
1103
+ ## [0.11.4] - 2018-03-29
1104
+
1105
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.4
1106
+
1107
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1108
+
1109
+ ### Fixed
1110
+
1111
+ - Transport body parsing when downgrading (#369)
1112
+ - Transport incorrectly attempting to apply sampling to service metadata (#370)
1113
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
1114
+
1115
+ ## [0.11.3] - 2018-03-06
1116
+
1117
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.3
1118
+
1119
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1120
+
1121
+ ### Added
1122
+
1123
+ - CHANGELOG.md (#350, #363) (@awendt)
1124
+ - `http.request_id` tag to Rack spans (#335)
1125
+ - Tracer configuration to README.md (#332) (@noma4i)
1126
+
1127
+ ### Fixed
1128
+
1129
+ - Extra indentation in README.md (#349) (@ck3g)
1130
+ - `http.url` when Rails raises exceptions (#351, #353)
1131
+ - Rails from being patched twice (#352)
1132
+ - 4XX responses from middleware being marked as errors (#345)
1133
+ - Rails exception middleware sometimes not being inserted at correct position (#345)
1134
+ - Processing pipeline documentation typo (#355) (@MMartyn)
1135
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1136
+ - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
1137
+
1138
+ ## [0.11.2] - 2018-02-02
1139
+
1140
+ **Critical update**: `Datadog::Monkey` removed in version 0.11.1. Adds `Datadog::Monkey` back as no-op, deprecated module.
1141
+
1142
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.2
1143
+
1144
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.1...v0.11.2
1145
+
1146
+ ### Deprecated
1147
+
1148
+ - `Datadog::Monkey` to be no-op and print deprecation warnings.
1149
+
1150
+ ## [0.11.1] - 2018-01-29
1151
+
1152
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.1
1153
+
1154
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1155
+
1156
+ ### Added
1157
+
1158
+ - `http.base_url` tag for Rack applications (#301, #327)
1159
+ - `distributed_tracing` option to Sinatra (#325)
1160
+ - `exception_controller` option to Rails (#320)
1161
+
1162
+ ### Changed
1163
+
1164
+ - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1165
+ - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1166
+
1167
+ ### Removed
1168
+
1169
+ - `Datadog::Monkey` in favor of newer configuration API (#322)
1170
+
1171
+ ### Fixed
1172
+
1173
+ - Custom resource names from Rails controllers being overridden (#321)
1174
+ - Custom Rails exception controllers reporting as the resource (#320)
1175
+
1176
+ ## [0.11.0] - 2018-01-17
1177
+
1178
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0
1179
+
1180
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0
1181
+
1182
+ ## [0.11.0.beta2] - 2017-12-27
1183
+
1184
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0.beta2
1185
+
1186
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0.beta1...v0.11.0.beta2
1187
+
1188
+ ## [0.11.0.beta1] - 2017-12-04
1189
+
1190
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0.beta1
1191
+
1192
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0.beta1
1193
+
1194
+ ## [0.10.0] - 2017-11-30
1195
+
1196
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.10.0
1197
+
1198
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.2...v0.10.0
1199
+
1200
+ ## [0.9.2] - 2017-11-03
1201
+
1202
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.2
1203
+
1204
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.1...v0.9.2
1205
+
1206
+ ## [0.9.1] - 2017-11-02
1207
+
1208
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.1
1209
+
1210
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.0...v0.9.1
1211
+
1212
+ ## [0.9.0] - 2017-10-06
1213
+
1214
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.0
1215
+
1216
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.2...v0.9.0
1217
+
1218
+ ## [0.8.2] - 2017-09-08
1219
+
1220
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.2
1221
+
1222
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.1...v0.8.2
1223
+
1224
+ ## [0.8.1] - 2017-08-10
1225
+
1226
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.1
1227
+
1228
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.0...v0.8.1
1229
+
1230
+ ## [0.8.0] - 2017-07-24
1231
+
1232
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.0
1233
+
1234
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.2...v0.8.0
1235
+
1236
+ ## [0.7.2] - 2017-05-24
1237
+
1238
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.2
1239
+
1240
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.1...v0.7.2
1241
+
1242
+ ## [0.7.1] - 2017-05-10
1243
+
1244
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.1
1245
+
1246
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.0...v0.7.1
1247
+
1248
+ ## [0.7.0] - 2017-04-24
1249
+
1250
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.0
1251
+
1252
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.2...v0.7.0
1253
+
1254
+ ## [0.6.2] - 2017-04-07
1255
+
1256
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.2
1257
+
1258
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.1...v0.6.2
1259
+
1260
+ ## [0.6.1] - 2017-04-05
1261
+
1262
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.1
1263
+
1264
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.0...v0.6.1
1265
+
1266
+ ## [0.6.0] - 2017-03-28
1267
+
1268
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.0
1269
+
1270
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.5.0...v0.6.0
1271
+
1272
+ ## [0.5.0] - 2017-03-08
1273
+
1274
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.5.0
1275
+
1276
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.3...v0.5.0
1277
+
1278
+ ## [0.4.3] - 2017-02-17
1279
+
1280
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.3
1281
+
1282
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.2...v0.4.3
1283
+
1284
+ ## [0.4.2] - 2017-02-14
1285
+
1286
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.2
1287
+
1288
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.1...v0.4.2
1289
+
1290
+ ## [0.4.1] - 2017-02-14
1291
+
1292
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.1
1293
+
1294
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.0...v0.4.1
1295
+
1296
+ ## [0.4.0] - 2017-01-24
1297
+
1298
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.0
1299
+
1300
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.1...v0.4.0
1301
+
1302
+ ## [0.3.1] - 2017-01-23
1303
+
1304
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1305
+
1306
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1307
+
1308
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...master
1309
+ [0.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
1310
+ [0.37.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
1311
+ [0.36.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
1312
+ [0.35.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
1313
+ [0.35.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
1314
+ [0.35.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
1315
+ [0.34.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
1316
+ [0.34.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
1317
+ [0.34.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
1318
+ [0.33.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
1319
+ [0.33.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
1320
+ [0.32.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
1321
+ [0.31.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
1322
+ [0.31.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
1323
+ [0.30.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
1324
+ [0.30.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
1325
+ [0.29.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
1326
+ [0.29.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
1327
+ [0.28.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
1328
+ [0.27.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.26.0...v0.27.0
1329
+ [0.26.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.25.1...v0.26.0
1330
+ [0.25.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
1331
+ [0.25.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.24.0...v0.25.0
1332
+ [0.24.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
1333
+ [0.23.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
1334
+ [0.23.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
1335
+ [0.23.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
1336
+ [0.23.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
1337
+ [0.22.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.2...v0.22.0
1338
+ [0.21.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
1339
+ [0.21.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
1340
+ [0.21.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
1341
+ [0.20.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0
1342
+ [0.19.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
1343
+ [0.19.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
1344
+ [0.18.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
1345
+ [0.18.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
1346
+ [0.18.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
1347
+ [0.18.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
1348
+ [0.17.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
1349
+ [0.17.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
1350
+ [0.17.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
1351
+ [0.17.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
1352
+ [0.16.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
1353
+ [0.16.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
1354
+ [0.15.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
1355
+ [0.14.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
1356
+ [0.14.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
1357
+ [0.14.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
1358
+ [0.14.0.rc1]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0.rc1
1359
+ [0.14.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0.beta2
1360
+ [0.14.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.14.0.beta1
1361
+ [0.13.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
1362
+ [0.13.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
1363
+ [0.13.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
1364
+ [0.13.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
1365
+ [0.12.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1366
+ [0.12.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1367
+ [0.12.0.rc1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1368
+ [0.12.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0.beta2
1369
+ [0.12.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1370
+ [0.11.4]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1371
+ [0.11.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1372
+ [0.11.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.1...v0.11.2
1373
+ [0.11.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1374
+ [0.11.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0
1375
+ [0.11.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0.beta1...v0.11.0.beta2
1376
+ [0.11.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0.beta1
1377
+ [0.10.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.2...v0.10.0
1378
+ [0.9.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.1...v0.9.2
1379
+ [0.9.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.0...v0.9.1
1380
+ [0.9.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.2...v0.9.0
1381
+ [0.8.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.1...v0.8.2
1382
+ [0.8.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.0...v0.8.1
1383
+ [0.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.2...v0.8.0
1384
+ [0.7.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.1...v0.7.2
1385
+ [0.7.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.0...v0.7.1
1386
+ [0.7.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.2...v0.7.0
1387
+ [0.6.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.1...v0.6.2
1388
+ [0.6.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.0...v0.6.1
1389
+ [0.6.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.5.0...v0.6.0
1390
+ [0.5.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.3...v0.5.0
1391
+ [0.4.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.2...v0.4.3
1392
+ [0.4.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.1...v0.4.2
1393
+ [0.4.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.0...v0.4.1
1394
+ [0.4.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.3.1...v0.4.0
1395
+ [0.3.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1396
+ [0.3.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.2.0...v0.3.0
1397
+ [0.2.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.5...v0.2.0
1398
+ [0.1.5]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.4...v0.1.5
1399
+ [0.1.4]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.3...v0.1.4
1400
+ [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1401
+ [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1402
+ [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1