ls-trace 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (356) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +673 -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/.dockerignore +1 -0
  11. data/.env +24 -0
  12. data/.github/CODEOWNERS +1 -0
  13. data/.gitignore +59 -0
  14. data/.rspec +1 -0
  15. data/.rubocop.yml +77 -0
  16. data/.yardopts +5 -0
  17. data/Appraisals +820 -0
  18. data/CHANGELOG.md +1051 -0
  19. data/CONTRIBUTING.md +85 -0
  20. data/Gemfile +7 -0
  21. data/LICENSE +24 -0
  22. data/README.md +108 -0
  23. data/Rakefile +635 -0
  24. data/benchmarks/postgres_database.yml +9 -0
  25. data/benchmarks/sidekiq_test.rb +154 -0
  26. data/ddtrace.gemspec +63 -0
  27. data/docker-compose.yml +276 -0
  28. data/docs/DevelopmentGuide.md +195 -0
  29. data/docs/GettingStarted.md +1981 -0
  30. data/lib/ddtrace.rb +63 -0
  31. data/lib/ddtrace/analytics.rb +29 -0
  32. data/lib/ddtrace/augmentation.rb +13 -0
  33. data/lib/ddtrace/augmentation/method_wrapper.rb +20 -0
  34. data/lib/ddtrace/augmentation/method_wrapping.rb +38 -0
  35. data/lib/ddtrace/augmentation/shim.rb +102 -0
  36. data/lib/ddtrace/buffer.rb +119 -0
  37. data/lib/ddtrace/configuration.rb +30 -0
  38. data/lib/ddtrace/configuration/base.rb +82 -0
  39. data/lib/ddtrace/configuration/dependency_resolver.rb +24 -0
  40. data/lib/ddtrace/configuration/option.rb +55 -0
  41. data/lib/ddtrace/configuration/option_definition.rb +127 -0
  42. data/lib/ddtrace/configuration/option_definition_set.rb +18 -0
  43. data/lib/ddtrace/configuration/option_set.rb +6 -0
  44. data/lib/ddtrace/configuration/options.rb +107 -0
  45. data/lib/ddtrace/configuration/pin_setup.rb +30 -0
  46. data/lib/ddtrace/configuration/settings.rb +105 -0
  47. data/lib/ddtrace/context.rb +284 -0
  48. data/lib/ddtrace/context_flush.rb +132 -0
  49. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +144 -0
  50. data/lib/ddtrace/contrib/action_pack/action_controller/patcher.rb +37 -0
  51. data/lib/ddtrace/contrib/action_pack/configuration/settings.rb +27 -0
  52. data/lib/ddtrace/contrib/action_pack/ext.rb +16 -0
  53. data/lib/ddtrace/contrib/action_pack/integration.rb +36 -0
  54. data/lib/ddtrace/contrib/action_pack/patcher.rb +29 -0
  55. data/lib/ddtrace/contrib/action_pack/utils.rb +36 -0
  56. data/lib/ddtrace/contrib/action_view/configuration/settings.rb +26 -0
  57. data/lib/ddtrace/contrib/action_view/ext.rb +17 -0
  58. data/lib/ddtrace/contrib/action_view/instrumentation/partial_renderer.rb +78 -0
  59. data/lib/ddtrace/contrib/action_view/instrumentation/template_renderer.rb +167 -0
  60. data/lib/ddtrace/contrib/action_view/integration.rb +43 -0
  61. data/lib/ddtrace/contrib/action_view/patcher.rb +53 -0
  62. data/lib/ddtrace/contrib/action_view/utils.rb +32 -0
  63. data/lib/ddtrace/contrib/active_model_serializers/configuration/settings.rb +25 -0
  64. data/lib/ddtrace/contrib/active_model_serializers/event.rb +65 -0
  65. data/lib/ddtrace/contrib/active_model_serializers/events.rb +30 -0
  66. data/lib/ddtrace/contrib/active_model_serializers/events/render.rb +32 -0
  67. data/lib/ddtrace/contrib/active_model_serializers/events/serialize.rb +35 -0
  68. data/lib/ddtrace/contrib/active_model_serializers/ext.rb +17 -0
  69. data/lib/ddtrace/contrib/active_model_serializers/integration.rb +39 -0
  70. data/lib/ddtrace/contrib/active_model_serializers/patcher.rb +36 -0
  71. data/lib/ddtrace/contrib/active_record/configuration/resolver.rb +46 -0
  72. data/lib/ddtrace/contrib/active_record/configuration/settings.rb +30 -0
  73. data/lib/ddtrace/contrib/active_record/event.rb +30 -0
  74. data/lib/ddtrace/contrib/active_record/events.rb +30 -0
  75. data/lib/ddtrace/contrib/active_record/events/instantiation.rb +57 -0
  76. data/lib/ddtrace/contrib/active_record/events/sql.rb +64 -0
  77. data/lib/ddtrace/contrib/active_record/ext.rb +21 -0
  78. data/lib/ddtrace/contrib/active_record/integration.rb +44 -0
  79. data/lib/ddtrace/contrib/active_record/patcher.rb +29 -0
  80. data/lib/ddtrace/contrib/active_record/utils.rb +76 -0
  81. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +157 -0
  82. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +62 -0
  83. data/lib/ddtrace/contrib/active_support/cache/redis.rb +47 -0
  84. data/lib/ddtrace/contrib/active_support/configuration/settings.rb +25 -0
  85. data/lib/ddtrace/contrib/active_support/ext.rb +21 -0
  86. data/lib/ddtrace/contrib/active_support/integration.rb +38 -0
  87. data/lib/ddtrace/contrib/active_support/notifications/event.rb +62 -0
  88. data/lib/ddtrace/contrib/active_support/notifications/subscriber.rb +66 -0
  89. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +159 -0
  90. data/lib/ddtrace/contrib/active_support/patcher.rb +29 -0
  91. data/lib/ddtrace/contrib/analytics.rb +20 -0
  92. data/lib/ddtrace/contrib/aws/configuration/settings.rb +25 -0
  93. data/lib/ddtrace/contrib/aws/ext.rb +20 -0
  94. data/lib/ddtrace/contrib/aws/instrumentation.rb +56 -0
  95. data/lib/ddtrace/contrib/aws/integration.rb +36 -0
  96. data/lib/ddtrace/contrib/aws/parsed_context.rb +56 -0
  97. data/lib/ddtrace/contrib/aws/patcher.rb +49 -0
  98. data/lib/ddtrace/contrib/aws/services.rb +115 -0
  99. data/lib/ddtrace/contrib/concurrent_ruby/configuration/settings.rb +15 -0
  100. data/lib/ddtrace/contrib/concurrent_ruby/context_composite_executor_service.rb +35 -0
  101. data/lib/ddtrace/contrib/concurrent_ruby/ext.rb +11 -0
  102. data/lib/ddtrace/contrib/concurrent_ruby/future_patch.rb +23 -0
  103. data/lib/ddtrace/contrib/concurrent_ruby/integration.rb +32 -0
  104. data/lib/ddtrace/contrib/concurrent_ruby/patcher.rb +35 -0
  105. data/lib/ddtrace/contrib/configurable.rb +59 -0
  106. data/lib/ddtrace/contrib/configuration/resolver.rb +12 -0
  107. data/lib/ddtrace/contrib/configuration/settings.rb +35 -0
  108. data/lib/ddtrace/contrib/dalli/configuration/settings.rb +25 -0
  109. data/lib/ddtrace/contrib/dalli/ext.rb +17 -0
  110. data/lib/ddtrace/contrib/dalli/instrumentation.rb +50 -0
  111. data/lib/ddtrace/contrib/dalli/integration.rb +36 -0
  112. data/lib/ddtrace/contrib/dalli/patcher.rb +73 -0
  113. data/lib/ddtrace/contrib/dalli/quantize.rb +22 -0
  114. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +25 -0
  115. data/lib/ddtrace/contrib/delayed_job/ext.rb +18 -0
  116. data/lib/ddtrace/contrib/delayed_job/integration.rb +32 -0
  117. data/lib/ddtrace/contrib/delayed_job/patcher.rb +34 -0
  118. data/lib/ddtrace/contrib/delayed_job/plugin.rb +57 -0
  119. data/lib/ddtrace/contrib/elasticsearch/configuration/settings.rb +26 -0
  120. data/lib/ddtrace/contrib/elasticsearch/ext.rb +19 -0
  121. data/lib/ddtrace/contrib/elasticsearch/integration.rb +37 -0
  122. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +124 -0
  123. data/lib/ddtrace/contrib/elasticsearch/quantize.rb +80 -0
  124. data/lib/ddtrace/contrib/ethon/configuration/settings.rb +26 -0
  125. data/lib/ddtrace/contrib/ethon/easy_patch.rb +139 -0
  126. data/lib/ddtrace/contrib/ethon/ext.rb +15 -0
  127. data/lib/ddtrace/contrib/ethon/integration.rb +31 -0
  128. data/lib/ddtrace/contrib/ethon/multi_patch.rb +80 -0
  129. data/lib/ddtrace/contrib/ethon/patcher.rb +27 -0
  130. data/lib/ddtrace/contrib/excon/configuration/settings.rb +28 -0
  131. data/lib/ddtrace/contrib/excon/ext.rb +14 -0
  132. data/lib/ddtrace/contrib/excon/integration.rb +32 -0
  133. data/lib/ddtrace/contrib/excon/middleware.rb +154 -0
  134. data/lib/ddtrace/contrib/excon/patcher.rb +34 -0
  135. data/lib/ddtrace/contrib/extensions.rb +59 -0
  136. data/lib/ddtrace/contrib/faraday/configuration/settings.rb +33 -0
  137. data/lib/ddtrace/contrib/faraday/ext.rb +14 -0
  138. data/lib/ddtrace/contrib/faraday/integration.rb +36 -0
  139. data/lib/ddtrace/contrib/faraday/middleware.rb +93 -0
  140. data/lib/ddtrace/contrib/faraday/patcher.rb +82 -0
  141. data/lib/ddtrace/contrib/faraday/rack_builder.rb +18 -0
  142. data/lib/ddtrace/contrib/grape/configuration/settings.rb +27 -0
  143. data/lib/ddtrace/contrib/grape/endpoint.rb +199 -0
  144. data/lib/ddtrace/contrib/grape/ext.rb +19 -0
  145. data/lib/ddtrace/contrib/grape/instrumentation.rb +33 -0
  146. data/lib/ddtrace/contrib/grape/integration.rb +36 -0
  147. data/lib/ddtrace/contrib/grape/patcher.rb +79 -0
  148. data/lib/ddtrace/contrib/graphql/configuration/settings.rb +27 -0
  149. data/lib/ddtrace/contrib/graphql/ext.rb +13 -0
  150. data/lib/ddtrace/contrib/graphql/integration.rb +38 -0
  151. data/lib/ddtrace/contrib/graphql/patcher.rb +63 -0
  152. data/lib/ddtrace/contrib/grpc/configuration/settings.rb +25 -0
  153. data/lib/ddtrace/contrib/grpc/datadog_interceptor.rb +74 -0
  154. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +56 -0
  155. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +73 -0
  156. data/lib/ddtrace/contrib/grpc/ext.rb +15 -0
  157. data/lib/ddtrace/contrib/grpc/integration.rb +36 -0
  158. data/lib/ddtrace/contrib/grpc/intercept_with_datadog.rb +49 -0
  159. data/lib/ddtrace/contrib/grpc/patcher.rb +78 -0
  160. data/lib/ddtrace/contrib/http/circuit_breaker.rb +63 -0
  161. data/lib/ddtrace/contrib/http/configuration/settings.rb +26 -0
  162. data/lib/ddtrace/contrib/http/ext.rb +14 -0
  163. data/lib/ddtrace/contrib/http/instrumentation.rb +114 -0
  164. data/lib/ddtrace/contrib/http/integration.rb +32 -0
  165. data/lib/ddtrace/contrib/http/patcher.rb +32 -0
  166. data/lib/ddtrace/contrib/integration.rb +16 -0
  167. data/lib/ddtrace/contrib/mongodb/configuration/settings.rb +28 -0
  168. data/lib/ddtrace/contrib/mongodb/ext.rb +20 -0
  169. data/lib/ddtrace/contrib/mongodb/instrumentation.rb +68 -0
  170. data/lib/ddtrace/contrib/mongodb/integration.rb +36 -0
  171. data/lib/ddtrace/contrib/mongodb/parsers.rb +68 -0
  172. data/lib/ddtrace/contrib/mongodb/patcher.rb +37 -0
  173. data/lib/ddtrace/contrib/mongodb/subscribers.rb +108 -0
  174. data/lib/ddtrace/contrib/mysql2/configuration/settings.rb +25 -0
  175. data/lib/ddtrace/contrib/mysql2/ext.rb +15 -0
  176. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +60 -0
  177. data/lib/ddtrace/contrib/mysql2/integration.rb +32 -0
  178. data/lib/ddtrace/contrib/mysql2/patcher.rb +33 -0
  179. data/lib/ddtrace/contrib/patchable.rb +42 -0
  180. data/lib/ddtrace/contrib/patcher.rb +28 -0
  181. data/lib/ddtrace/contrib/racecar/configuration/settings.rb +25 -0
  182. data/lib/ddtrace/contrib/racecar/event.rb +67 -0
  183. data/lib/ddtrace/contrib/racecar/events.rb +30 -0
  184. data/lib/ddtrace/contrib/racecar/events/batch.rb +27 -0
  185. data/lib/ddtrace/contrib/racecar/events/message.rb +27 -0
  186. data/lib/ddtrace/contrib/racecar/ext.rb +21 -0
  187. data/lib/ddtrace/contrib/racecar/integration.rb +36 -0
  188. data/lib/ddtrace/contrib/racecar/patcher.rb +32 -0
  189. data/lib/ddtrace/contrib/rack/configuration/settings.rb +41 -0
  190. data/lib/ddtrace/contrib/rack/ext.rb +18 -0
  191. data/lib/ddtrace/contrib/rack/integration.rb +32 -0
  192. data/lib/ddtrace/contrib/rack/middlewares.rb +283 -0
  193. data/lib/ddtrace/contrib/rack/patcher.rb +72 -0
  194. data/lib/ddtrace/contrib/rack/request_queue.rb +39 -0
  195. data/lib/ddtrace/contrib/rails/configuration/settings.rb +80 -0
  196. data/lib/ddtrace/contrib/rails/ext.rb +12 -0
  197. data/lib/ddtrace/contrib/rails/framework.rb +100 -0
  198. data/lib/ddtrace/contrib/rails/integration.rb +37 -0
  199. data/lib/ddtrace/contrib/rails/middlewares.rb +38 -0
  200. data/lib/ddtrace/contrib/rails/patcher.rb +78 -0
  201. data/lib/ddtrace/contrib/rails/railtie.rb +17 -0
  202. data/lib/ddtrace/contrib/rails/utils.rb +20 -0
  203. data/lib/ddtrace/contrib/rake/configuration/settings.rb +27 -0
  204. data/lib/ddtrace/contrib/rake/ext.rb +18 -0
  205. data/lib/ddtrace/contrib/rake/instrumentation.rb +84 -0
  206. data/lib/ddtrace/contrib/rake/integration.rb +32 -0
  207. data/lib/ddtrace/contrib/rake/patcher.rb +36 -0
  208. data/lib/ddtrace/contrib/redis/configuration/settings.rb +25 -0
  209. data/lib/ddtrace/contrib/redis/ext.rb +18 -0
  210. data/lib/ddtrace/contrib/redis/integration.rb +36 -0
  211. data/lib/ddtrace/contrib/redis/patcher.rb +94 -0
  212. data/lib/ddtrace/contrib/redis/quantize.rb +47 -0
  213. data/lib/ddtrace/contrib/redis/tags.rb +38 -0
  214. data/lib/ddtrace/contrib/registerable.rb +33 -0
  215. data/lib/ddtrace/contrib/registry.rb +42 -0
  216. data/lib/ddtrace/contrib/resque/configuration/settings.rb +26 -0
  217. data/lib/ddtrace/contrib/resque/ext.rb +14 -0
  218. data/lib/ddtrace/contrib/resque/integration.rb +37 -0
  219. data/lib/ddtrace/contrib/resque/patcher.rb +35 -0
  220. data/lib/ddtrace/contrib/resque/resque_job.rb +76 -0
  221. data/lib/ddtrace/contrib/rest_client/configuration/settings.rb +26 -0
  222. data/lib/ddtrace/contrib/rest_client/ext.rb +14 -0
  223. data/lib/ddtrace/contrib/rest_client/integration.rb +31 -0
  224. data/lib/ddtrace/contrib/rest_client/patcher.rb +25 -0
  225. data/lib/ddtrace/contrib/rest_client/request_patch.rb +89 -0
  226. data/lib/ddtrace/contrib/sequel/configuration/settings.rb +23 -0
  227. data/lib/ddtrace/contrib/sequel/database.rb +61 -0
  228. data/lib/ddtrace/contrib/sequel/dataset.rb +62 -0
  229. data/lib/ddtrace/contrib/sequel/ext.rb +15 -0
  230. data/lib/ddtrace/contrib/sequel/integration.rb +32 -0
  231. data/lib/ddtrace/contrib/sequel/patcher.rb +39 -0
  232. data/lib/ddtrace/contrib/sequel/utils.rb +46 -0
  233. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +24 -0
  234. data/lib/ddtrace/contrib/shoryuken/ext.rb +18 -0
  235. data/lib/ddtrace/contrib/shoryuken/integration.rb +35 -0
  236. data/lib/ddtrace/contrib/shoryuken/patcher.rb +30 -0
  237. data/lib/ddtrace/contrib/shoryuken/tracer.rb +45 -0
  238. data/lib/ddtrace/contrib/sidekiq/client_tracer.rb +43 -0
  239. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +26 -0
  240. data/lib/ddtrace/contrib/sidekiq/ext.rb +21 -0
  241. data/lib/ddtrace/contrib/sidekiq/integration.rb +36 -0
  242. data/lib/ddtrace/contrib/sidekiq/patcher.rb +40 -0
  243. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +58 -0
  244. data/lib/ddtrace/contrib/sidekiq/tracing.rb +28 -0
  245. data/lib/ddtrace/contrib/sinatra/configuration/settings.rb +34 -0
  246. data/lib/ddtrace/contrib/sinatra/env.rb +38 -0
  247. data/lib/ddtrace/contrib/sinatra/ext.rb +18 -0
  248. data/lib/ddtrace/contrib/sinatra/headers.rb +31 -0
  249. data/lib/ddtrace/contrib/sinatra/integration.rb +36 -0
  250. data/lib/ddtrace/contrib/sinatra/patcher.rb +33 -0
  251. data/lib/ddtrace/contrib/sinatra/tracer.rb +84 -0
  252. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +72 -0
  253. data/lib/ddtrace/contrib/sucker_punch/configuration/settings.rb +25 -0
  254. data/lib/ddtrace/contrib/sucker_punch/exception_handler.rb +26 -0
  255. data/lib/ddtrace/contrib/sucker_punch/ext.rb +18 -0
  256. data/lib/ddtrace/contrib/sucker_punch/instrumentation.rb +70 -0
  257. data/lib/ddtrace/contrib/sucker_punch/integration.rb +36 -0
  258. data/lib/ddtrace/contrib/sucker_punch/patcher.rb +48 -0
  259. data/lib/ddtrace/correlation.rb +28 -0
  260. data/lib/ddtrace/diagnostics/health.rb +30 -0
  261. data/lib/ddtrace/distributed_tracing/headers/b3.rb +44 -0
  262. data/lib/ddtrace/distributed_tracing/headers/b3_single.rb +56 -0
  263. data/lib/ddtrace/distributed_tracing/headers/datadog.rb +42 -0
  264. data/lib/ddtrace/distributed_tracing/headers/headers.rb +70 -0
  265. data/lib/ddtrace/distributed_tracing/headers/helpers.rb +45 -0
  266. data/lib/ddtrace/encoding.rb +65 -0
  267. data/lib/ddtrace/environment.rb +23 -0
  268. data/lib/ddtrace/error.rb +27 -0
  269. data/lib/ddtrace/ext/analytics.rb +11 -0
  270. data/lib/ddtrace/ext/app_types.rb +11 -0
  271. data/lib/ddtrace/ext/diagnostics.rb +25 -0
  272. data/lib/ddtrace/ext/distributed.rb +33 -0
  273. data/lib/ddtrace/ext/errors.rb +10 -0
  274. data/lib/ddtrace/ext/forced_tracing.rb +25 -0
  275. data/lib/ddtrace/ext/http.rb +46 -0
  276. data/lib/ddtrace/ext/manual_tracing.rb +9 -0
  277. data/lib/ddtrace/ext/metrics.rb +15 -0
  278. data/lib/ddtrace/ext/net.rb +10 -0
  279. data/lib/ddtrace/ext/priority.rb +16 -0
  280. data/lib/ddtrace/ext/runtime.rb +26 -0
  281. data/lib/ddtrace/ext/sql.rb +8 -0
  282. data/lib/ddtrace/ext/transport.rb +17 -0
  283. data/lib/ddtrace/forced_tracing.rb +36 -0
  284. data/lib/ddtrace/logger.rb +39 -0
  285. data/lib/ddtrace/metrics.rb +215 -0
  286. data/lib/ddtrace/monkey.rb +58 -0
  287. data/lib/ddtrace/opentracer.rb +40 -0
  288. data/lib/ddtrace/opentracer/binary_propagator.rb +24 -0
  289. data/lib/ddtrace/opentracer/carrier.rb +6 -0
  290. data/lib/ddtrace/opentracer/distributed_headers.rb +52 -0
  291. data/lib/ddtrace/opentracer/global_tracer.rb +15 -0
  292. data/lib/ddtrace/opentracer/propagator.rb +22 -0
  293. data/lib/ddtrace/opentracer/rack_propagator.rb +60 -0
  294. data/lib/ddtrace/opentracer/scope.rb +15 -0
  295. data/lib/ddtrace/opentracer/scope_manager.rb +6 -0
  296. data/lib/ddtrace/opentracer/span.rb +98 -0
  297. data/lib/ddtrace/opentracer/span_context.rb +14 -0
  298. data/lib/ddtrace/opentracer/span_context_factory.rb +23 -0
  299. data/lib/ddtrace/opentracer/text_map_propagator.rb +75 -0
  300. data/lib/ddtrace/opentracer/thread_local_scope.rb +30 -0
  301. data/lib/ddtrace/opentracer/thread_local_scope_manager.rb +40 -0
  302. data/lib/ddtrace/opentracer/tracer.rb +208 -0
  303. data/lib/ddtrace/patcher.rb +47 -0
  304. data/lib/ddtrace/pin.rb +114 -0
  305. data/lib/ddtrace/pipeline.rb +46 -0
  306. data/lib/ddtrace/pipeline/span_filter.rb +38 -0
  307. data/lib/ddtrace/pipeline/span_processor.rb +20 -0
  308. data/lib/ddtrace/propagation/grpc_propagator.rb +61 -0
  309. data/lib/ddtrace/propagation/http_propagator.rb +75 -0
  310. data/lib/ddtrace/provider.rb +21 -0
  311. data/lib/ddtrace/quantization/hash.rb +103 -0
  312. data/lib/ddtrace/quantization/http.rb +86 -0
  313. data/lib/ddtrace/runtime/cgroup.rb +44 -0
  314. data/lib/ddtrace/runtime/class_count.rb +17 -0
  315. data/lib/ddtrace/runtime/container.rb +73 -0
  316. data/lib/ddtrace/runtime/gc.rb +16 -0
  317. data/lib/ddtrace/runtime/identity.rb +41 -0
  318. data/lib/ddtrace/runtime/metrics.rb +93 -0
  319. data/lib/ddtrace/runtime/object_space.rb +19 -0
  320. data/lib/ddtrace/runtime/socket.rb +14 -0
  321. data/lib/ddtrace/runtime/thread_count.rb +16 -0
  322. data/lib/ddtrace/sampler.rb +195 -0
  323. data/lib/ddtrace/span.rb +260 -0
  324. data/lib/ddtrace/sync_writer.rb +62 -0
  325. data/lib/ddtrace/tracer.rb +459 -0
  326. data/lib/ddtrace/transport/http.rb +91 -0
  327. data/lib/ddtrace/transport/http/adapters/net.rb +112 -0
  328. data/lib/ddtrace/transport/http/adapters/registry.rb +24 -0
  329. data/lib/ddtrace/transport/http/adapters/test.rb +77 -0
  330. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +64 -0
  331. data/lib/ddtrace/transport/http/api.rb +46 -0
  332. data/lib/ddtrace/transport/http/api/endpoint.rb +27 -0
  333. data/lib/ddtrace/transport/http/api/fallbacks.rb +22 -0
  334. data/lib/ddtrace/transport/http/api/instance.rb +29 -0
  335. data/lib/ddtrace/transport/http/api/map.rb +14 -0
  336. data/lib/ddtrace/transport/http/api/spec.rb +15 -0
  337. data/lib/ddtrace/transport/http/builder.rb +165 -0
  338. data/lib/ddtrace/transport/http/client.rb +107 -0
  339. data/lib/ddtrace/transport/http/env.rb +48 -0
  340. data/lib/ddtrace/transport/http/response.rb +26 -0
  341. data/lib/ddtrace/transport/http/statistics.rb +30 -0
  342. data/lib/ddtrace/transport/http/traces.rb +140 -0
  343. data/lib/ddtrace/transport/parcel.rb +13 -0
  344. data/lib/ddtrace/transport/request.rb +13 -0
  345. data/lib/ddtrace/transport/response.rb +49 -0
  346. data/lib/ddtrace/transport/statistics.rb +72 -0
  347. data/lib/ddtrace/transport/traces.rb +33 -0
  348. data/lib/ddtrace/utils.rb +65 -0
  349. data/lib/ddtrace/utils/database.rb +25 -0
  350. data/lib/ddtrace/utils/time.rb +14 -0
  351. data/lib/ddtrace/vendor/active_record/connection_specification.rb +301 -0
  352. data/lib/ddtrace/version.rb +12 -0
  353. data/lib/ddtrace/workers.rb +125 -0
  354. data/lib/ddtrace/writer.rb +157 -0
  355. data/tasks/release_gem.rake +28 -0
  356. metadata +682 -0
@@ -0,0 +1,1051 @@
1
+ # Changelog
2
+
3
+ ## [Unreleased]
4
+
5
+ ## [0.29.0] - 2019-11-20
6
+
7
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.29.0
8
+
9
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
10
+
11
+ ### Added
12
+
13
+ - Tracer health metrics (#838, #859)
14
+
15
+ ### Changed
16
+
17
+ - Default trace buffer size from 100 to 1000 (#865)
18
+ - Rack request start headers to accept more values (#832) (@JamesHarker)
19
+ - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
20
+
21
+ ### Fixed
22
+
23
+ - Synthetics trace context being ignored (#856)
24
+
25
+ ### Refactored
26
+
27
+ - Tracer buffer constants (#851)
28
+
29
+ ### Removed
30
+
31
+ - Some old Ruby 1.9 code (#819, #844)
32
+
33
+ ## [0.28.0] - 2019-10-01
34
+
35
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.28.0
36
+
37
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
38
+
39
+ ### Added
40
+
41
+ - Support for Rails 6.0 (#814)
42
+ - Multiplexing on hostname/port for Dalli (#823)
43
+ - Support for Redis array arguments (#796, #817) (@brafales)
44
+
45
+ ### Refactored
46
+
47
+ - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
48
+
49
+ ## [0.27.0] - 2019-09-04
50
+
51
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.27.0
52
+
53
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.26.0...v0.27.0
54
+
55
+ Support for Ruby < 2.0 is *removed*. Plan for timeline is as follows:
56
+
57
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
58
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
59
+ - 0.27.0: Support for Ruby < 2.0 is removed.
60
+
61
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0 (August 6th, 2020.)
62
+
63
+ ### Added
64
+
65
+ - Support for Ruby 2.5 & 2.6 (#800, #802)
66
+ - Ethon integration (#527, #778) (@al-kudryavtsev)
67
+
68
+ ### Refactored
69
+
70
+ - Rails integration into smaller integrations per component (#747, #762, #795)
71
+
72
+ ### Removed
73
+
74
+ - Support for Ruby 1.9 (#791)
75
+
76
+ ## [0.26.0] - 2019-08-06
77
+
78
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.26.0
79
+
80
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.1...v0.26.0
81
+
82
+ Support for Ruby < 2.0 is *deprecated*. Plan for timeline is as follows:
83
+
84
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
85
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
86
+ - 0.27.0: Support for Ruby < 2.0 is removed.
87
+
88
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0 (August 6th, 2020.)
89
+
90
+ ### Added
91
+
92
+ - Container ID tagging for containerized environments (#784)
93
+
94
+ ### Refactored
95
+
96
+ - Datadog::Metrics constants (#789)
97
+
98
+ ### Removed
99
+
100
+ - Datadog::HTTPTransport and related components (#782)
101
+
102
+ ## [0.25.1] - 2019-07-16
103
+
104
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.25.1
105
+
106
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
107
+
108
+ ### Fixed
109
+
110
+ - Redis integration not quantizing AUTH command (#776)
111
+
112
+ ## [0.25.0] - 2019-06-27
113
+
114
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.25.0
115
+
116
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.24.0...v0.25.0
117
+
118
+ Support for Ruby < 2.0 is *deprecated*. Plan for timeline is as follows:
119
+
120
+ - 0.25.0: Support for Ruby < 2.0 is deprecated; retains full feature support.
121
+ - 0.26.0: Last version to support Ruby < 2.0; any new features will not support 1.9.
122
+ - 0.27.0: Support for Ruby < 2.0 is removed.
123
+
124
+ Version 0.26.x will receive only critical bugfixes for 1 year following the release of 0.26.0.
125
+
126
+ ### Added
127
+
128
+ - Unix socket support for transport layer (#770)
129
+
130
+ ### Changed
131
+
132
+ - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
133
+
134
+ ### Fixed
135
+
136
+ - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
137
+
138
+ ### Refactored
139
+
140
+ - Transport layer (#628)
141
+
142
+ ### Deprecated
143
+
144
+ - Ruby < 2.0 support (#771)
145
+ - Use of `Datadog::HTTPTransport` (#628)
146
+ - Use of `Datadog::Ext::ForcedTracing` (#765)
147
+
148
+ ## [0.24.0] - 2019-05-21
149
+
150
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.24.0
151
+
152
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
153
+
154
+ ### Added
155
+
156
+ - B3 header support (#753)
157
+ - Hostname tagging option (#760)
158
+ - Contribution and development guides (#754)
159
+
160
+ ## [0.23.3] - 2019-05-16
161
+
162
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.3
163
+
164
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
165
+
166
+ ### Fixed
167
+
168
+ - Integrations initializing tracer at load time (#756)
169
+
170
+ ## [0.23.2] - 2019-05-10
171
+
172
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.2
173
+
174
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
175
+
176
+ ### Fixed
177
+
178
+ - Span types for HTTP, web, and some datastore integrations (#751)
179
+ - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
180
+ - Rails 6 warning for `parent_name` (#750) (@sinsoku)
181
+
182
+ ## [0.23.1] - 2019-05-02
183
+
184
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.1
185
+
186
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
187
+
188
+ ### Fixed
189
+
190
+ - NoMethodError runtime_metrics for SyncWriter (#748)
191
+
192
+ ## [0.23.0] - 2019-04-30
193
+
194
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.23.0
195
+
196
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
197
+
198
+ ### Added
199
+
200
+ - Error status support via tags for OpenTracing (#739)
201
+ - Forced sampling support via tags (#720)
202
+
203
+ ### Fixed
204
+
205
+ - Wrong return values for Rake integration (#742) (@Redapted)
206
+
207
+ ### Removed
208
+
209
+ - Obsolete service telemetry (#738)
210
+
211
+ ## [0.22.0] - 2019-04-15
212
+
213
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.22.0
214
+
215
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.2...v0.22.0
216
+
217
+ 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.
218
+
219
+ ### Changed
220
+
221
+ - Add warning log if an integration is incompatible (#722) (@ericmustin)
222
+
223
+ ### Added
224
+
225
+ - Initial beta support for Runtime metrics collection (#677)
226
+
227
+ ## [0.21.2] - 2019-04-10
228
+
229
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.2
230
+
231
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
232
+
233
+ ### Changed
234
+
235
+ - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
236
+
237
+ ## [0.21.1] - 2019-03-26
238
+
239
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.1
240
+
241
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
242
+
243
+ ### Changed
244
+
245
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
246
+
247
+ ## [0.21.0] - 2019-03-20
248
+
249
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.21.0
250
+
251
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
252
+
253
+ ### Added
254
+
255
+ - Trace analytics support (#697, #715)
256
+ - HTTP after_request span hook (#716, #724)
257
+
258
+ ### Fixed
259
+
260
+ - Distributed traces with IDs in 2^64 range being dropped (#719)
261
+ - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
262
+
263
+ ### Refactored
264
+
265
+ - Global configuration for tracing into configuration API (#714)
266
+
267
+ ## [0.20.0] - 2019-03-07
268
+
269
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.20.0
270
+
271
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0
272
+
273
+ This release will log deprecation warnings for any usage of `Datadog::Pin`.
274
+ These changes are backwards compatible, but all integration configuration should be moved away from `Pin` and to the configuration API instead.
275
+
276
+ ### Added
277
+
278
+ - Propagate synthetics origin header (#699)
279
+
280
+ ### Changed
281
+
282
+ - Enable distributed tracing by default (#701)
283
+
284
+ ### Fixed
285
+
286
+ - Fix Rack http_server.queue spans missing from distributed traces (#709)
287
+
288
+ ### Refactored
289
+
290
+ - Refactor MongoDB to use instrumentation module (#704)
291
+ - Refactor HTTP to use instrumentation module (#703)
292
+ - Deprecate GRPC global pin in favor of configuration API (#702)
293
+ - Deprecate Grape pin in favor of configuration API (#700)
294
+ - Deprecate Faraday pin in favor of configuration API (#696)
295
+ - Deprecate Dalli pin in favor of configuration API (#693)
296
+
297
+ ## [0.19.1] - 2019-02-07
298
+
299
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.19.1
300
+
301
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
302
+
303
+ ### Added
304
+
305
+ - Documentation for Lograge implementation (#683, #687) (@nic-lan)
306
+
307
+ ### Fixed
308
+
309
+ - Priority sampling dropping spans (#686)
310
+
311
+ ## [0.19.0] - 2019-01-22
312
+
313
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.19.0
314
+
315
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
316
+
317
+ ### Added
318
+
319
+ - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
320
+ - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
321
+
322
+ ### Changed
323
+
324
+ - Priority sampling enabled by default. (#654)
325
+
326
+ ## [0.18.3] - 2019-01-17
327
+
328
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.3
329
+
330
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
331
+
332
+ ### Fixed
333
+
334
+ - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
335
+ - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
336
+ - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
337
+
338
+ ## [0.18.2] - 2019-01-03
339
+
340
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.2
341
+
342
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
343
+
344
+ ### Fixed
345
+
346
+ - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
347
+ - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
348
+
349
+ ## [0.18.1] - 2018-12-20
350
+
351
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.1
352
+
353
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
354
+
355
+ ### Fixed
356
+
357
+ - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
358
+
359
+ ## [0.18.0] - 2018-12-18
360
+
361
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.18.0
362
+
363
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
364
+
365
+ ### Added
366
+
367
+ - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
368
+ - Sidekiq client integration (#602, #650) (@dirk)
369
+ - Datadog::Shim for adding instrumentation (#648)
370
+
371
+ ### Changed
372
+
373
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
374
+ - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
375
+ - Return default configuration instead of `nil` on miss (#651)
376
+
377
+ ## [0.17.3] - 2018-11-29
378
+
379
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.3
380
+
381
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
382
+
383
+ ### Fixed
384
+
385
+ - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
386
+ - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
387
+ - Rack middleware inserted twice in some Rails applications (#641)
388
+
389
+ ## [0.17.2] - 2018-11-23
390
+
391
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.2
392
+
393
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
394
+
395
+ ### Fixed
396
+
397
+ - Resque integration shutting down tracer when forking is disabled (#637)
398
+
399
+ ## [0.17.1] - 2018-11-07
400
+
401
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.1
402
+
403
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
404
+
405
+ ### Fixed
406
+
407
+ - RestClient incorrect app type (#583) (@gaborszakacs)
408
+ - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
409
+
410
+ ## [0.17.0] - 2018-10-30
411
+
412
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.17.0
413
+
414
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
415
+
416
+ ### Added
417
+
418
+ - [BETA] Span memory `allocations` attribute (#597) (@dasch)
419
+
420
+ ### Changed
421
+
422
+ - Use Rack Env to update resource in Rails (#580) (@dasch)
423
+ - Expand support for Sidekiq to 3.5.4+ (#593)
424
+ - Expand support for mysql2 to 0.3.21+ (#578)
425
+
426
+ ### Refactored
427
+
428
+ - Upgraded integrations to new API (#544)
429
+ - Encoding classes into modules (#598)
430
+
431
+ ## [0.16.1] - 2018-10-17
432
+
433
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.16.1
434
+
435
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
436
+
437
+ ### Fixed
438
+
439
+ - Priority sampling response being mishandled (#591)
440
+ - HTTP open timeout to agent too long (#582)
441
+
442
+ ## [0.16.0] - 2018-09-18
443
+
444
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.16.0
445
+
446
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
447
+
448
+ ### Added
449
+
450
+ - OpenTracing support (#517)
451
+ - `middleware` option for disabling Rails trace middleware. (#552)
452
+
453
+ ## [0.15.0] - 2018-09-12
454
+
455
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.15.0
456
+
457
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
458
+
459
+ ### Added
460
+
461
+ - Rails 5.2 support (#535)
462
+ - Context propagation support for `Concurrent::Future` (#415, #496)
463
+
464
+ ### Fixed
465
+
466
+ - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
467
+ - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
468
+
469
+ ## [0.14.2] - 2018-08-23
470
+
471
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.2
472
+
473
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
474
+
475
+ ### Fixed
476
+
477
+ - Sampling priority from request headers not being used (#521)
478
+
479
+ ## [0.14.1] - 2018-08-21
480
+
481
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.1
482
+
483
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
484
+
485
+ ### Changed
486
+
487
+ - Reduce verbosity of connection errors in log (#515)
488
+
489
+ ### Fixed
490
+
491
+ - Sequel 'not a valid integration' error (#514, #516) (@steveh)
492
+
493
+ ## [0.14.0] - 2018-08-14
494
+
495
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0
496
+
497
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
498
+
499
+ ### Added
500
+
501
+ - RestClient integration (#422, #460)
502
+ - DelayedJob integration (#393 #444)
503
+ - Version information to integrations (#483)
504
+ - Tracer#active_root_span helper (#503)
505
+
506
+ ### Changed
507
+
508
+ - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
509
+ - ActiveRecord to allow configuring multiple databases (#451)
510
+ - Integrations configuration settings (#450, #452, #451)
511
+
512
+ ### Fixed
513
+
514
+ - Context propagation for distributed traces when context is full (#502)
515
+ - Rake shutdown tracer after execution (#487) (@kissrobber)
516
+ - Deprecation warnings fired using Unicorn (#508)
517
+
518
+ ## [0.14.0.rc1] - 2018-08-08
519
+
520
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.rc1
521
+
522
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0.rc1
523
+
524
+ ### Added
525
+
526
+ - RestClient integration (#422, #460)
527
+ - Tracer#active_root_span helper (#503)
528
+
529
+ ### Fixed
530
+
531
+ - Context propagation for distributed traces when context is full (#502)
532
+
533
+ ## [0.14.0.beta2] - 2018-07-25
534
+
535
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.beta2
536
+
537
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0.beta2
538
+
539
+ ### Fixed
540
+
541
+ - Rake shutdown tracer after execution (#487) @kissrobber
542
+
543
+ ## [0.14.0.beta1] - 2018-07-24
544
+
545
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.14.0.beta1
546
+
547
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
548
+
549
+ ### Changed
550
+
551
+ - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
552
+ - ActiveRecord to allow configuring multiple databases (#451)
553
+ - Integrations configuration settings (#450, #452, #451)
554
+
555
+ ### Fixed
556
+
557
+ - Ruby warnings during tests (#499)
558
+ - Tests failing intermittently on Ruby 1.9.3 (#497)
559
+
560
+ ### Added
561
+
562
+ - DelayedJob integration (#393 #444)
563
+ - Version information to integrations (#483)
564
+
565
+ ## [0.13.2] - 2018-08-07
566
+
567
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.2
568
+
569
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
570
+
571
+ ### Fixed
572
+
573
+ - Context propagation for distributed traces when context is full (#502)
574
+
575
+ ## [0.13.1] - 2018-07-17
576
+
577
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.1
578
+
579
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
580
+
581
+ ### Changed
582
+
583
+ - Configuration class variables don't lazy load (#477)
584
+ - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
585
+
586
+ ### Fixed
587
+
588
+ - Workers not shutting down quickly in some short running processes (#475)
589
+ - Missing documentation for mysql2 and Rails (#476, #488)
590
+ - Missing variable in rescue block (#481) (@kitop)
591
+ - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
592
+
593
+ ## [0.13.0] - 2018-06-20
594
+
595
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.0
596
+
597
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
598
+
599
+ ### Added
600
+
601
+ - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
602
+ - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
603
+ - ActiveModelSerializers integration (#340) (@sullimander)
604
+ - Excon integration (#211, #426) (@walterking, @jeffjo)
605
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
606
+ - Request queuing tracing to Rack (experimental) (#272)
607
+ - ActiveSupport::Notifications::Event helper for event tracing (#400)
608
+ - Request and response header tags to Rack (#389)
609
+ - Request and response header tags to Sinatra (#427, #375)
610
+ - MySQL2 integration (#453) (@jamiehodge)
611
+ - Sidekiq job delay tag (#443, #418) (@gottfrois)
612
+
613
+ ### Fixed
614
+
615
+ - Elasticsearch quantization of ids (#458)
616
+ - MongoDB to allow quantization of collection name (#463)
617
+
618
+ ### Refactored
619
+
620
+ - Hash quantization into core library (#410)
621
+ - MongoDB integration to use Hash quantization library (#463)
622
+
623
+ ### Changed
624
+
625
+ - Hash quantization truncates arrays with nested objects (#463)
626
+
627
+ ## [0.13.0.beta1] - 2018-05-09
628
+
629
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.13.0.beta1
630
+
631
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
632
+
633
+ ### Added
634
+
635
+ - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
636
+ - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
637
+ - ActiveModelSerializers integration (#340) (@sullimander)
638
+ - Excon integration (#211) (@walterking)
639
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
640
+ - Request queuing tracing to Rack (experimental) (#272)
641
+ - ActiveSupport::Notifications::Event helper for event tracing (#400)
642
+ - Request and response header tags to Rack (#389)
643
+
644
+ ### Refactored
645
+
646
+ - Hash quantization into core library (#410)
647
+
648
+ ## [0.12.1] - 2018-06-12
649
+
650
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.1
651
+
652
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
653
+
654
+ ### Changed
655
+
656
+ - Cache configuration `Proxy` objects (#446)
657
+ - `freeze` more constant strings, to improve memory usage (#446)
658
+ - `Utils#truncate` to use slightly less memory (#446)
659
+
660
+ ### Fixed
661
+
662
+ - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
663
+ - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
664
+ - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
665
+ - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
666
+ - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
667
+
668
+ ### Refactored
669
+
670
+ - ActionController patching strategy using modules. (#439)
671
+ - ActionView tracing strategy. (#445, #447)
672
+
673
+ ## [0.12.0] - 2018-05-08
674
+
675
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0
676
+
677
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
678
+
679
+ ### Added
680
+
681
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
682
+ - ActiveRecord object instantiation tracing (#311, #334)
683
+ - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
684
+ - HTTP quantization module (#384)
685
+ - Partial flushing option to tracer (#247, #397)
686
+
687
+ ### Changed
688
+
689
+ - Rack applies URL quantization by default (#371)
690
+ - Elasticsearch applies body quantization by default (#362)
691
+ - Context for a single trace now has hard limit of 100,000 spans (#247)
692
+ - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
693
+
694
+ ### Fixed
695
+
696
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
697
+ - Some scenarios where `middleware_names` could result in bad resource names (#354)
698
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
699
+
700
+ ### Deprecated
701
+
702
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
703
+
704
+ ### Refactored
705
+
706
+ - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
707
+ - Rails to use ActiveRecord integration instead of its own implementation (#396)
708
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
709
+
710
+ ## [0.12.0.rc1] - 2018-04-11
711
+
712
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.rc1
713
+
714
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
715
+
716
+ ### Added
717
+
718
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
719
+ - ActiveRecord object instantiation tracing (#311, #334)
720
+ - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
721
+ - HTTP quantization module (#384)
722
+ - Partial flushing option to tracer (#247, #397)
723
+
724
+ ### Changed
725
+
726
+ - Rack applies URL quantization by default (#371)
727
+ - Elasticsearch applies body quantization by default (#362)
728
+ - Context for a single trace now has hard limit of 100,000 spans (#247)
729
+ - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
730
+
731
+ ### Fixed
732
+
733
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
734
+ - Some scenarios where `middleware_names` could result in bad resource names (#354)
735
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
736
+
737
+ ### Deprecated
738
+
739
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
740
+
741
+ ### Refactored
742
+
743
+ - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
744
+ - Rails to use ActiveRecord integration instead of its own implementation (#396)
745
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
746
+
747
+ ## [0.12.0.beta2] - 2018-02-28
748
+
749
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.beta2
750
+
751
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0.beta2
752
+
753
+ ### Fixed
754
+
755
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
756
+
757
+ ## [0.12.0.beta1] - 2018-02-09
758
+
759
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.12.0.beta1
760
+
761
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
762
+
763
+ ### Added
764
+
765
+ - GraphQL integration (supporting graphql 1.7.9+) (#295)
766
+ - ActiveRecord object instantiation tracing (#311, #334)
767
+ - `http.request_id` tag to Rack spans (#335)
768
+
769
+ ## [0.11.4] - 2018-03-29
770
+
771
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.4
772
+
773
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
774
+
775
+ ### Fixed
776
+
777
+ - Transport body parsing when downgrading (#369)
778
+ - Transport incorrectly attempting to apply sampling to service metadata (#370)
779
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
780
+
781
+ ## [0.11.3] - 2018-03-06
782
+
783
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.3
784
+
785
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
786
+
787
+ ### Added
788
+
789
+ - CHANGELOG.md (#350, #363) (@awendt)
790
+ - `http.request_id` tag to Rack spans (#335)
791
+ - Tracer configuration to README.md (#332) (@noma4i)
792
+
793
+ ### Fixed
794
+
795
+ - Extra indentation in README.md (#349) (@ck3g)
796
+ - `http.url` when Rails raises exceptions (#351, #353)
797
+ - Rails from being patched twice (#352)
798
+ - 4XX responses from middleware being marked as errors (#345)
799
+ - Rails exception middleware sometimes not being inserted at correct position (#345)
800
+ - Processing pipeline documentation typo (#355) (@MMartyn)
801
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
802
+ - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
803
+
804
+ ## [0.11.2] - 2018-02-02
805
+
806
+ **Critical update**: `Datadog::Monkey` removed in version 0.11.1. Adds `Datadog::Monkey` back as no-op, deprecated module.
807
+
808
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.2
809
+
810
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.1...v0.11.2
811
+
812
+ ### Deprecated
813
+
814
+ - `Datadog::Monkey` to be no-op and print deprecation warnings.
815
+
816
+ ## [0.11.1] - 2018-01-29
817
+
818
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.1
819
+
820
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
821
+
822
+ ### Added
823
+
824
+ - `http.base_url` tag for Rack applications (#301, #327)
825
+ - `distributed_tracing` option to Sinatra (#325)
826
+ - `exception_controller` option to Rails (#320)
827
+
828
+ ### Changed
829
+
830
+ - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
831
+ - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
832
+
833
+ ### Removed
834
+
835
+ - `Datadog::Monkey` in favor of newer configuration API (#322)
836
+
837
+ ### Fixed
838
+
839
+ - Custom resource names from Rails controllers being overridden (#321)
840
+ - Custom Rails exception controllers reporting as the resource (#320)
841
+
842
+ ## [0.11.0] - 2018-01-17
843
+
844
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0
845
+
846
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0
847
+
848
+ ## [0.11.0.beta2] - 2017-12-27
849
+
850
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0.beta2
851
+
852
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0.beta1...v0.11.0.beta2
853
+
854
+ ## [0.11.0.beta1] - 2017-12-04
855
+
856
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.11.0.beta1
857
+
858
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0.beta1
859
+
860
+ ## [0.10.0] - 2017-11-30
861
+
862
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.10.0
863
+
864
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.2...v0.10.0
865
+
866
+ ## [0.9.2] - 2017-11-03
867
+
868
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.2
869
+
870
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.1...v0.9.2
871
+
872
+ ## [0.9.1] - 2017-11-02
873
+
874
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.1
875
+
876
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.9.0...v0.9.1
877
+
878
+ ## [0.9.0] - 2017-10-06
879
+
880
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.9.0
881
+
882
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.2...v0.9.0
883
+
884
+ ## [0.8.2] - 2017-09-08
885
+
886
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.2
887
+
888
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.1...v0.8.2
889
+
890
+ ## [0.8.1] - 2017-08-10
891
+
892
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.1
893
+
894
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.8.0...v0.8.1
895
+
896
+ ## [0.8.0] - 2017-07-24
897
+
898
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.8.0
899
+
900
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.2...v0.8.0
901
+
902
+ ## [0.7.2] - 2017-05-24
903
+
904
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.2
905
+
906
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.1...v0.7.2
907
+
908
+ ## [0.7.1] - 2017-05-10
909
+
910
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.1
911
+
912
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.7.0...v0.7.1
913
+
914
+ ## [0.7.0] - 2017-04-24
915
+
916
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.7.0
917
+
918
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.2...v0.7.0
919
+
920
+ ## [0.6.2] - 2017-04-07
921
+
922
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.2
923
+
924
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.1...v0.6.2
925
+
926
+ ## [0.6.1] - 2017-04-05
927
+
928
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.1
929
+
930
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.6.0...v0.6.1
931
+
932
+ ## [0.6.0] - 2017-03-28
933
+
934
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.6.0
935
+
936
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.5.0...v0.6.0
937
+
938
+ ## [0.5.0] - 2017-03-08
939
+
940
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.5.0
941
+
942
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.3...v0.5.0
943
+
944
+ ## [0.4.3] - 2017-02-17
945
+
946
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.3
947
+
948
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.2...v0.4.3
949
+
950
+ ## [0.4.2] - 2017-02-14
951
+
952
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.2
953
+
954
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.1...v0.4.2
955
+
956
+ ## [0.4.1] - 2017-02-14
957
+
958
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.1
959
+
960
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.4.0...v0.4.1
961
+
962
+ ## [0.4.0] - 2017-01-24
963
+
964
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.4.0
965
+
966
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.1...v0.4.0
967
+
968
+ ## [0.3.1] - 2017-01-23
969
+
970
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
971
+
972
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
973
+
974
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...master
975
+ [0.29.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
976
+ [0.28.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
977
+ [0.27.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.26.0...v0.27.0
978
+ [0.26.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.25.1...v0.26.0
979
+ [0.25.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
980
+ [0.25.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.24.0...v0.25.0
981
+ [0.24.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
982
+ [0.23.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
983
+ [0.23.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
984
+ [0.23.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
985
+ [0.23.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
986
+ [0.22.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.2...v0.22.0
987
+ [0.21.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
988
+ [0.21.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
989
+ [0.21.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
990
+ [0.20.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.1...v0.20.0
991
+ [0.19.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
992
+ [0.19.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
993
+ [0.18.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
994
+ [0.18.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
995
+ [0.18.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
996
+ [0.18.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
997
+ [0.17.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
998
+ [0.17.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
999
+ [0.17.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
1000
+ [0.17.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
1001
+ [0.16.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
1002
+ [0.16.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
1003
+ [0.15.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
1004
+ [0.14.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
1005
+ [0.14.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
1006
+ [0.14.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
1007
+ [0.14.0.rc1]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0.rc1
1008
+ [0.14.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0.beta2
1009
+ [0.14.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.14.0.beta1
1010
+ [0.13.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
1011
+ [0.13.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
1012
+ [0.13.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
1013
+ [0.13.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
1014
+ [0.12.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1015
+ [0.12.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1016
+ [0.12.0.rc1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1017
+ [0.12.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0.beta2
1018
+ [0.12.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1019
+ [0.11.4]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1020
+ [0.11.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1021
+ [0.11.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.1...v0.11.2
1022
+ [0.11.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1023
+ [0.11.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0
1024
+ [0.11.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0.beta1...v0.11.0.beta2
1025
+ [0.11.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.10.0...v0.11.0.beta1
1026
+ [0.10.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.2...v0.10.0
1027
+ [0.9.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.1...v0.9.2
1028
+ [0.9.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.9.0...v0.9.1
1029
+ [0.9.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.2...v0.9.0
1030
+ [0.8.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.1...v0.8.2
1031
+ [0.8.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.8.0...v0.8.1
1032
+ [0.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.2...v0.8.0
1033
+ [0.7.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.1...v0.7.2
1034
+ [0.7.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.7.0...v0.7.1
1035
+ [0.7.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.2...v0.7.0
1036
+ [0.6.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.1...v0.6.2
1037
+ [0.6.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.6.0...v0.6.1
1038
+ [0.6.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.5.0...v0.6.0
1039
+ [0.5.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.3...v0.5.0
1040
+ [0.4.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.2...v0.4.3
1041
+ [0.4.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.1...v0.4.2
1042
+ [0.4.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.4.0...v0.4.1
1043
+ [0.4.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.3.1...v0.4.0
1044
+ [0.3.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1045
+ [0.3.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.2.0...v0.3.0
1046
+ [0.2.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.5...v0.2.0
1047
+ [0.1.5]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.4...v0.1.5
1048
+ [0.1.4]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.3...v0.1.4
1049
+ [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1050
+ [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1051
+ [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1