ddtrace 0.35.2 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1018) hide show
  1. checksums.yaml +4 -4
  2. data/.editorconfig +22 -0
  3. data/.gitignore +16 -17
  4. data/CHANGELOG.md +1969 -293
  5. data/CONTRIBUTING.md +3 -7
  6. data/LICENSE-3rdparty.csv +4 -0
  7. data/README.md +5 -0
  8. data/bin/ddtracerb +15 -0
  9. data/ddtrace.gemspec +34 -32
  10. data/docs/0.x-trace.png +0 -0
  11. data/docs/1.0-trace.png +0 -0
  12. data/docs/AutoInstrumentation.md +36 -0
  13. data/docs/Deprecation.md +8 -0
  14. data/docs/DevelopmentGuide.md +73 -9
  15. data/docs/GettingStarted.md +989 -496
  16. data/docs/ProfilingDevelopment.md +110 -0
  17. data/docs/PublicApi.md +14 -0
  18. data/docs/UpgradeGuide.md +736 -0
  19. data/ext/ddtrace_profiling_loader/ddtrace_profiling_loader.c +118 -0
  20. data/ext/ddtrace_profiling_loader/extconf.rb +53 -0
  21. data/ext/ddtrace_profiling_native_extension/NativeExtensionDesign.md +112 -0
  22. data/ext/ddtrace_profiling_native_extension/clock_id.h +4 -0
  23. data/ext/ddtrace_profiling_native_extension/clock_id_from_pthread.c +44 -0
  24. data/ext/ddtrace_profiling_native_extension/clock_id_noop.c +14 -0
  25. data/ext/ddtrace_profiling_native_extension/collectors_stack.c +278 -0
  26. data/ext/ddtrace_profiling_native_extension/extconf.rb +176 -0
  27. data/ext/ddtrace_profiling_native_extension/libddprof_helpers.h +13 -0
  28. data/ext/ddtrace_profiling_native_extension/native_extension_helpers.rb +186 -0
  29. data/ext/ddtrace_profiling_native_extension/private_vm_api_access.c +607 -0
  30. data/ext/ddtrace_profiling_native_extension/private_vm_api_access.h +33 -0
  31. data/ext/ddtrace_profiling_native_extension/profiling.c +31 -0
  32. data/ext/ddtrace_profiling_native_extension/stack_recorder.c +139 -0
  33. data/ext/ddtrace_profiling_native_extension/stack_recorder.h +28 -0
  34. data/lib/datadog/appsec/assets/blocked.html +4 -0
  35. data/lib/datadog/appsec/assets/waf_rules/README.md +7 -0
  36. data/lib/datadog/appsec/assets/waf_rules/recommended.json +5638 -0
  37. data/lib/datadog/appsec/assets/waf_rules/risky.json +1499 -0
  38. data/lib/datadog/appsec/assets/waf_rules/strict.json +1298 -0
  39. data/lib/datadog/appsec/assets.rb +38 -0
  40. data/lib/datadog/appsec/autoload.rb +16 -0
  41. data/lib/datadog/appsec/configuration/settings.rb +194 -0
  42. data/lib/datadog/appsec/configuration.rb +80 -0
  43. data/lib/datadog/appsec/contrib/auto_instrument.rb +29 -0
  44. data/lib/datadog/appsec/contrib/configuration/settings.rb +20 -0
  45. data/lib/datadog/appsec/contrib/integration.rb +37 -0
  46. data/lib/datadog/appsec/contrib/patcher.rb +12 -0
  47. data/lib/datadog/appsec/contrib/rack/configuration/settings.rb +22 -0
  48. data/lib/datadog/appsec/contrib/rack/ext.rb +15 -0
  49. data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +169 -0
  50. data/lib/datadog/appsec/contrib/rack/integration.rb +49 -0
  51. data/lib/datadog/appsec/contrib/rack/patcher.rb +32 -0
  52. data/lib/datadog/appsec/contrib/rack/reactive/request.rb +87 -0
  53. data/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +64 -0
  54. data/lib/datadog/appsec/contrib/rack/reactive/response.rb +64 -0
  55. data/lib/datadog/appsec/contrib/rack/request.rb +58 -0
  56. data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +41 -0
  57. data/lib/datadog/appsec/contrib/rack/request_middleware.rb +112 -0
  58. data/lib/datadog/appsec/contrib/rack/response.rb +24 -0
  59. data/lib/datadog/appsec/contrib/rails/configuration/settings.rb +22 -0
  60. data/lib/datadog/appsec/contrib/rails/ext.rb +15 -0
  61. data/lib/datadog/appsec/contrib/rails/framework.rb +30 -0
  62. data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +81 -0
  63. data/lib/datadog/appsec/contrib/rails/integration.rb +48 -0
  64. data/lib/datadog/appsec/contrib/rails/patcher.rb +158 -0
  65. data/lib/datadog/appsec/contrib/rails/reactive/action.rb +68 -0
  66. data/lib/datadog/appsec/contrib/rails/request.rb +33 -0
  67. data/lib/datadog/appsec/contrib/rails/request_middleware.rb +20 -0
  68. data/lib/datadog/appsec/contrib/sinatra/configuration/settings.rb +22 -0
  69. data/lib/datadog/appsec/contrib/sinatra/ext.rb +15 -0
  70. data/lib/datadog/appsec/contrib/sinatra/framework.rb +34 -0
  71. data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +124 -0
  72. data/lib/datadog/appsec/contrib/sinatra/integration.rb +48 -0
  73. data/lib/datadog/appsec/contrib/sinatra/patcher.rb +144 -0
  74. data/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +63 -0
  75. data/lib/datadog/appsec/contrib/sinatra/request_middleware.rb +20 -0
  76. data/lib/datadog/appsec/event.rb +121 -0
  77. data/lib/datadog/appsec/extensions.rb +118 -0
  78. data/lib/datadog/appsec/instrumentation/gateway.rb +44 -0
  79. data/lib/datadog/appsec/processor.rb +164 -0
  80. data/lib/datadog/appsec/rate_limiter.rb +60 -0
  81. data/lib/datadog/appsec/reactive/address_hash.rb +18 -0
  82. data/lib/datadog/appsec/reactive/engine.rb +44 -0
  83. data/lib/datadog/appsec/reactive/operation.rb +51 -0
  84. data/lib/datadog/appsec/reactive/subscriber.rb +18 -0
  85. data/lib/datadog/appsec.rb +23 -0
  86. data/lib/datadog/ci/configuration/components.rb +32 -0
  87. data/lib/datadog/ci/configuration/settings.rb +53 -0
  88. data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +33 -0
  89. data/lib/datadog/ci/contrib/cucumber/ext.rb +22 -0
  90. data/lib/datadog/ci/contrib/cucumber/formatter.rb +94 -0
  91. data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +28 -0
  92. data/lib/datadog/ci/contrib/cucumber/integration.rb +49 -0
  93. data/lib/datadog/ci/contrib/cucumber/patcher.rb +27 -0
  94. data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +33 -0
  95. data/lib/datadog/ci/contrib/rspec/example.rb +70 -0
  96. data/lib/datadog/ci/contrib/rspec/ext.rb +21 -0
  97. data/lib/datadog/ci/contrib/rspec/integration.rb +50 -0
  98. data/lib/datadog/ci/contrib/rspec/patcher.rb +27 -0
  99. data/lib/datadog/ci/ext/app_types.rb +11 -0
  100. data/lib/datadog/ci/ext/environment.rb +503 -0
  101. data/lib/datadog/ci/ext/settings.rb +12 -0
  102. data/lib/datadog/ci/ext/test.rb +37 -0
  103. data/lib/datadog/ci/extensions.rb +19 -0
  104. data/lib/datadog/ci/flush.rb +38 -0
  105. data/lib/datadog/ci/test.rb +83 -0
  106. data/lib/datadog/ci.rb +20 -0
  107. data/lib/datadog/core/buffer/cruby.rb +55 -0
  108. data/lib/datadog/core/buffer/random.rb +134 -0
  109. data/lib/datadog/core/buffer/thread_safe.rb +58 -0
  110. data/lib/datadog/core/chunker.rb +35 -0
  111. data/lib/datadog/core/configuration/agent_settings_resolver.rb +365 -0
  112. data/lib/datadog/core/configuration/base.rb +89 -0
  113. data/lib/datadog/core/configuration/components.rb +411 -0
  114. data/lib/datadog/core/configuration/dependency_resolver.rb +28 -0
  115. data/lib/datadog/core/configuration/option.rb +69 -0
  116. data/lib/datadog/core/configuration/option_definition.rb +126 -0
  117. data/lib/datadog/core/configuration/option_definition_set.rb +22 -0
  118. data/lib/datadog/core/configuration/option_set.rb +10 -0
  119. data/lib/datadog/core/configuration/options.rb +118 -0
  120. data/lib/datadog/core/configuration/settings.rb +618 -0
  121. data/lib/datadog/core/configuration.rb +286 -0
  122. data/lib/datadog/core/diagnostics/environment_logger.rb +283 -0
  123. data/lib/datadog/core/diagnostics/ext.rb +41 -0
  124. data/lib/datadog/core/diagnostics/health.rb +37 -0
  125. data/lib/datadog/core/encoding.rb +76 -0
  126. data/lib/datadog/core/environment/cgroup.rb +55 -0
  127. data/lib/datadog/core/environment/class_count.rb +21 -0
  128. data/lib/datadog/core/environment/container.rb +93 -0
  129. data/lib/datadog/core/environment/ext.rb +46 -0
  130. data/lib/datadog/core/environment/gc.rb +20 -0
  131. data/lib/datadog/core/environment/identity.rb +58 -0
  132. data/lib/datadog/core/environment/socket.rb +24 -0
  133. data/lib/datadog/core/environment/thread_count.rb +20 -0
  134. data/lib/datadog/core/environment/variable_helpers.rb +68 -0
  135. data/lib/datadog/core/environment/vm_cache.rb +47 -0
  136. data/lib/datadog/core/error.rb +101 -0
  137. data/lib/datadog/core/extensions.rb +16 -0
  138. data/lib/datadog/core/git/ext.rb +35 -0
  139. data/lib/datadog/core/logger.rb +46 -0
  140. data/lib/datadog/core/logging/ext.rb +11 -0
  141. data/lib/datadog/core/metrics/client.rb +198 -0
  142. data/lib/datadog/core/metrics/ext.rb +20 -0
  143. data/lib/datadog/core/metrics/helpers.rb +25 -0
  144. data/lib/datadog/core/metrics/logging.rb +44 -0
  145. data/lib/datadog/core/metrics/metric.rb +14 -0
  146. data/lib/datadog/core/metrics/options.rb +50 -0
  147. data/lib/datadog/core/pin.rb +75 -0
  148. data/lib/datadog/core/runtime/ext.rb +28 -0
  149. data/lib/datadog/core/runtime/metrics.rb +126 -0
  150. data/lib/datadog/core/utils/compression.rb +32 -0
  151. data/lib/datadog/core/utils/forking.rb +63 -0
  152. data/lib/datadog/core/utils/object_set.rb +43 -0
  153. data/lib/datadog/core/utils/only_once.rb +44 -0
  154. data/lib/datadog/core/utils/safe_dup.rb +27 -0
  155. data/lib/datadog/core/utils/sequence.rb +21 -0
  156. data/lib/datadog/core/utils/string_table.rb +49 -0
  157. data/lib/datadog/core/utils/time.rb +54 -0
  158. data/lib/datadog/core/utils.rb +115 -0
  159. data/lib/datadog/core/vendor/multipart-post/LICENSE +11 -0
  160. data/lib/datadog/core/vendor/multipart-post/multipart/post/composite_read_io.rb +120 -0
  161. data/lib/datadog/core/vendor/multipart-post/multipart/post/multipartable.rb +61 -0
  162. data/lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb +139 -0
  163. data/lib/datadog/core/vendor/multipart-post/multipart/post/version.rb +13 -0
  164. data/lib/datadog/core/vendor/multipart-post/multipart/post.rb +12 -0
  165. data/lib/datadog/core/vendor/multipart-post/multipart.rb +16 -0
  166. data/lib/datadog/core/vendor/multipart-post/net/http/post/multipart.rb +36 -0
  167. data/lib/datadog/core/worker.rb +24 -0
  168. data/lib/datadog/core/workers/async.rb +182 -0
  169. data/lib/datadog/core/workers/interval_loop.rb +119 -0
  170. data/lib/datadog/core/workers/polling.rb +59 -0
  171. data/lib/datadog/core/workers/queue.rb +44 -0
  172. data/lib/datadog/core/workers/runtime_metrics.rb +62 -0
  173. data/lib/datadog/core.rb +80 -0
  174. data/lib/datadog/kit/enable_core_dumps.rb +50 -0
  175. data/lib/datadog/kit/identity.rb +63 -0
  176. data/lib/datadog/kit.rb +11 -0
  177. data/lib/datadog/opentracer/binary_propagator.rb +26 -0
  178. data/lib/datadog/opentracer/carrier.rb +9 -0
  179. data/lib/datadog/opentracer/distributed_headers.rb +58 -0
  180. data/lib/datadog/opentracer/global_tracer.rb +17 -0
  181. data/lib/datadog/opentracer/propagator.rb +26 -0
  182. data/lib/datadog/opentracer/rack_propagator.rb +72 -0
  183. data/lib/datadog/opentracer/scope.rb +18 -0
  184. data/lib/datadog/opentracer/scope_manager.rb +9 -0
  185. data/lib/datadog/opentracer/span.rb +101 -0
  186. data/lib/datadog/opentracer/span_context.rb +19 -0
  187. data/lib/datadog/opentracer/span_context_factory.rb +27 -0
  188. data/lib/datadog/opentracer/text_map_propagator.rb +87 -0
  189. data/lib/datadog/opentracer/thread_local_scope.rb +34 -0
  190. data/lib/datadog/opentracer/thread_local_scope_manager.rb +43 -0
  191. data/lib/datadog/opentracer/tracer.rb +212 -0
  192. data/lib/datadog/opentracer.rb +24 -0
  193. data/lib/datadog/profiling/backtrace_location.rb +34 -0
  194. data/lib/datadog/profiling/buffer.rb +43 -0
  195. data/lib/datadog/profiling/collectors/code_provenance.rb +114 -0
  196. data/lib/datadog/profiling/collectors/old_stack.rb +298 -0
  197. data/lib/datadog/profiling/collectors/stack.rb +16 -0
  198. data/lib/datadog/profiling/encoding/profile.rb +47 -0
  199. data/lib/datadog/profiling/event.rb +15 -0
  200. data/lib/datadog/profiling/events/stack.rb +82 -0
  201. data/lib/datadog/profiling/exporter.rb +25 -0
  202. data/lib/datadog/profiling/ext/forking.rb +99 -0
  203. data/lib/datadog/profiling/ext.rb +57 -0
  204. data/lib/datadog/profiling/flush.rb +69 -0
  205. data/lib/datadog/profiling/load_native_extension.rb +22 -0
  206. data/lib/datadog/profiling/native_extension.rb +41 -0
  207. data/lib/datadog/profiling/pprof/builder.rb +127 -0
  208. data/lib/datadog/profiling/pprof/converter.rb +104 -0
  209. data/lib/datadog/profiling/pprof/message_set.rb +16 -0
  210. data/lib/datadog/profiling/pprof/payload.rb +20 -0
  211. data/lib/datadog/profiling/pprof/pprof.proto +212 -0
  212. data/lib/datadog/profiling/pprof/pprof_pb.rb +83 -0
  213. data/lib/datadog/profiling/pprof/stack_sample.rb +141 -0
  214. data/lib/datadog/profiling/pprof/string_table.rb +12 -0
  215. data/lib/datadog/profiling/pprof/template.rb +120 -0
  216. data/lib/datadog/profiling/preload.rb +5 -0
  217. data/lib/datadog/profiling/profiler.rb +34 -0
  218. data/lib/datadog/profiling/recorder.rb +117 -0
  219. data/lib/datadog/profiling/scheduler.rb +151 -0
  220. data/lib/datadog/profiling/stack_recorder.rb +33 -0
  221. data/lib/datadog/profiling/tag_builder.rb +48 -0
  222. data/lib/datadog/profiling/tasks/exec.rb +50 -0
  223. data/lib/datadog/profiling/tasks/help.rb +18 -0
  224. data/lib/datadog/profiling/tasks/setup.rb +93 -0
  225. data/lib/datadog/profiling/trace_identifiers/ddtrace.rb +45 -0
  226. data/lib/datadog/profiling/trace_identifiers/helper.rb +47 -0
  227. data/lib/datadog/profiling/transport/client.rb +16 -0
  228. data/lib/datadog/profiling/transport/http/api/endpoint.rb +107 -0
  229. data/lib/datadog/profiling/transport/http/api/instance.rb +38 -0
  230. data/lib/datadog/profiling/transport/http/api/spec.rb +42 -0
  231. data/lib/datadog/profiling/transport/http/api.rb +45 -0
  232. data/lib/datadog/profiling/transport/http/builder.rb +30 -0
  233. data/lib/datadog/profiling/transport/http/client.rb +35 -0
  234. data/lib/datadog/profiling/transport/http/response.rb +23 -0
  235. data/lib/datadog/profiling/transport/http.rb +112 -0
  236. data/lib/datadog/profiling/transport/io/client.rb +29 -0
  237. data/lib/datadog/profiling/transport/io/response.rb +18 -0
  238. data/lib/datadog/profiling/transport/io.rb +32 -0
  239. data/lib/datadog/profiling/transport/parcel.rb +19 -0
  240. data/lib/datadog/profiling/transport/request.rb +17 -0
  241. data/lib/datadog/profiling/transport/response.rb +10 -0
  242. data/lib/datadog/profiling.rb +170 -0
  243. data/lib/datadog/tracing/analytics.rb +25 -0
  244. data/lib/datadog/tracing/buffer.rb +132 -0
  245. data/lib/datadog/tracing/configuration/ext.rb +51 -0
  246. data/lib/datadog/tracing/context.rb +68 -0
  247. data/lib/datadog/tracing/context_provider.rb +66 -0
  248. data/lib/datadog/tracing/contrib/action_cable/configuration/settings.rb +35 -0
  249. data/lib/datadog/tracing/contrib/action_cable/event.rb +72 -0
  250. data/lib/datadog/tracing/contrib/action_cable/events/broadcast.rb +58 -0
  251. data/lib/datadog/tracing/contrib/action_cable/events/perform_action.rb +63 -0
  252. data/lib/datadog/tracing/contrib/action_cable/events/transmit.rb +59 -0
  253. data/lib/datadog/tracing/contrib/action_cable/events.rb +37 -0
  254. data/lib/datadog/tracing/contrib/action_cable/ext.rb +32 -0
  255. data/lib/datadog/tracing/contrib/action_cable/instrumentation.rb +91 -0
  256. data/lib/datadog/tracing/contrib/action_cable/integration.rb +50 -0
  257. data/lib/datadog/tracing/contrib/action_cable/patcher.rb +31 -0
  258. data/lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb +36 -0
  259. data/lib/datadog/tracing/contrib/action_mailer/event.rb +52 -0
  260. data/lib/datadog/tracing/contrib/action_mailer/events/deliver.rb +60 -0
  261. data/lib/datadog/tracing/contrib/action_mailer/events/process.rb +47 -0
  262. data/lib/datadog/tracing/contrib/action_mailer/events.rb +34 -0
  263. data/lib/datadog/tracing/contrib/action_mailer/ext.rb +33 -0
  264. data/lib/datadog/tracing/contrib/action_mailer/integration.rb +50 -0
  265. data/lib/datadog/tracing/contrib/action_mailer/patcher.rb +29 -0
  266. data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +156 -0
  267. data/lib/datadog/tracing/contrib/action_pack/action_controller/patcher.rb +29 -0
  268. data/lib/datadog/tracing/contrib/action_pack/configuration/settings.rb +36 -0
  269. data/lib/datadog/tracing/contrib/action_pack/ext.rb +22 -0
  270. data/lib/datadog/tracing/contrib/action_pack/integration.rb +50 -0
  271. data/lib/datadog/tracing/contrib/action_pack/patcher.rb +27 -0
  272. data/lib/datadog/tracing/contrib/action_pack/utils.rb +40 -0
  273. data/lib/datadog/tracing/contrib/action_view/configuration/settings.rb +36 -0
  274. data/lib/datadog/tracing/contrib/action_view/event.rb +35 -0
  275. data/lib/datadog/tracing/contrib/action_view/events/render_partial.rb +54 -0
  276. data/lib/datadog/tracing/contrib/action_view/events/render_template.rb +57 -0
  277. data/lib/datadog/tracing/contrib/action_view/events.rb +34 -0
  278. data/lib/datadog/tracing/contrib/action_view/ext.rb +24 -0
  279. data/lib/datadog/tracing/contrib/action_view/instrumentation/partial_renderer.rb +78 -0
  280. data/lib/datadog/tracing/contrib/action_view/instrumentation/template_renderer.rb +91 -0
  281. data/lib/datadog/tracing/contrib/action_view/integration.rb +57 -0
  282. data/lib/datadog/tracing/contrib/action_view/patcher.rb +47 -0
  283. data/lib/datadog/tracing/contrib/action_view/utils.rb +36 -0
  284. data/lib/datadog/tracing/contrib/active_job/configuration/settings.rb +37 -0
  285. data/lib/datadog/tracing/contrib/active_job/event.rb +58 -0
  286. data/lib/datadog/tracing/contrib/active_job/events/discard.rb +50 -0
  287. data/lib/datadog/tracing/contrib/active_job/events/enqueue.rb +49 -0
  288. data/lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb +49 -0
  289. data/lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb +51 -0
  290. data/lib/datadog/tracing/contrib/active_job/events/perform.rb +49 -0
  291. data/lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb +50 -0
  292. data/lib/datadog/tracing/contrib/active_job/events.rb +42 -0
  293. data/lib/datadog/tracing/contrib/active_job/ext.rb +39 -0
  294. data/lib/datadog/tracing/contrib/active_job/integration.rb +50 -0
  295. data/lib/datadog/tracing/contrib/active_job/log_injection.rb +26 -0
  296. data/lib/datadog/tracing/contrib/active_job/patcher.rb +36 -0
  297. data/lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb +33 -0
  298. data/lib/datadog/tracing/contrib/active_model_serializers/event.rb +69 -0
  299. data/lib/datadog/tracing/contrib/active_model_serializers/events/render.rb +45 -0
  300. data/lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb +47 -0
  301. data/lib/datadog/tracing/contrib/active_model_serializers/events.rb +34 -0
  302. data/lib/datadog/tracing/contrib/active_model_serializers/ext.rb +24 -0
  303. data/lib/datadog/tracing/contrib/active_model_serializers/integration.rb +45 -0
  304. data/lib/datadog/tracing/contrib/active_model_serializers/patcher.rb +33 -0
  305. data/lib/datadog/tracing/contrib/active_record/configuration/makara_resolver.rb +36 -0
  306. data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +138 -0
  307. data/lib/datadog/tracing/contrib/active_record/configuration/settings.rb +39 -0
  308. data/lib/datadog/tracing/contrib/active_record/event.rb +30 -0
  309. data/lib/datadog/tracing/contrib/active_record/events/instantiation.rb +58 -0
  310. data/lib/datadog/tracing/contrib/active_record/events/sql.rb +78 -0
  311. data/lib/datadog/tracing/contrib/active_record/events.rb +34 -0
  312. data/lib/datadog/tracing/contrib/active_record/ext.rb +29 -0
  313. data/lib/datadog/tracing/contrib/active_record/integration.rb +56 -0
  314. data/lib/datadog/tracing/contrib/active_record/patcher.rb +27 -0
  315. data/lib/datadog/tracing/contrib/active_record/utils.rb +128 -0
  316. data/lib/datadog/tracing/contrib/active_record/vendor/MIT-LICENSE +20 -0
  317. data/lib/datadog/tracing/contrib/active_record/vendor/connection_specification.rb +307 -0
  318. data/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +270 -0
  319. data/lib/datadog/tracing/contrib/active_support/cache/patcher.rb +73 -0
  320. data/lib/datadog/tracing/contrib/active_support/cache/redis.rb +47 -0
  321. data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +35 -0
  322. data/lib/datadog/tracing/contrib/active_support/ext.rb +31 -0
  323. data/lib/datadog/tracing/contrib/active_support/integration.rb +51 -0
  324. data/lib/datadog/tracing/contrib/active_support/notifications/event.rb +71 -0
  325. data/lib/datadog/tracing/contrib/active_support/notifications/subscriber.rb +71 -0
  326. data/lib/datadog/tracing/contrib/active_support/notifications/subscription.rb +164 -0
  327. data/lib/datadog/tracing/contrib/active_support/patcher.rb +27 -0
  328. data/lib/datadog/tracing/contrib/analytics.rb +29 -0
  329. data/lib/datadog/tracing/contrib/auto_instrument.rb +53 -0
  330. data/lib/datadog/tracing/contrib/aws/configuration/settings.rb +35 -0
  331. data/lib/datadog/tracing/contrib/aws/ext.rb +27 -0
  332. data/lib/datadog/tracing/contrib/aws/instrumentation.rb +95 -0
  333. data/lib/datadog/tracing/contrib/aws/integration.rb +47 -0
  334. data/lib/datadog/tracing/contrib/aws/parsed_context.rb +60 -0
  335. data/lib/datadog/tracing/contrib/aws/patcher.rb +57 -0
  336. data/lib/datadog/tracing/contrib/aws/services.rb +123 -0
  337. data/lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb +23 -0
  338. data/lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb +53 -0
  339. data/lib/datadog/tracing/contrib/concurrent_ruby/ext.rb +16 -0
  340. data/lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb +27 -0
  341. data/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +43 -0
  342. data/lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb +33 -0
  343. data/lib/datadog/tracing/contrib/configurable.rb +102 -0
  344. data/lib/datadog/tracing/contrib/configuration/resolver.rb +85 -0
  345. data/lib/datadog/tracing/contrib/configuration/resolvers/pattern_resolver.rb +43 -0
  346. data/lib/datadog/tracing/contrib/configuration/settings.rb +43 -0
  347. data/lib/datadog/tracing/contrib/dalli/configuration/settings.rb +35 -0
  348. data/lib/datadog/tracing/contrib/dalli/ext.rb +24 -0
  349. data/lib/datadog/tracing/contrib/dalli/instrumentation.rb +58 -0
  350. data/lib/datadog/tracing/contrib/dalli/integration.rb +52 -0
  351. data/lib/datadog/tracing/contrib/dalli/patcher.rb +28 -0
  352. data/lib/datadog/tracing/contrib/dalli/quantize.rb +26 -0
  353. data/lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb +38 -0
  354. data/lib/datadog/tracing/contrib/delayed_job/ext.rb +26 -0
  355. data/lib/datadog/tracing/contrib/delayed_job/integration.rb +43 -0
  356. data/lib/datadog/tracing/contrib/delayed_job/patcher.rb +31 -0
  357. data/lib/datadog/tracing/contrib/delayed_job/plugin.rb +101 -0
  358. data/lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb +36 -0
  359. data/lib/datadog/tracing/contrib/elasticsearch/ext.rb +26 -0
  360. data/lib/datadog/tracing/contrib/elasticsearch/integration.rb +50 -0
  361. data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +151 -0
  362. data/lib/datadog/tracing/contrib/elasticsearch/quantize.rb +89 -0
  363. data/lib/datadog/tracing/contrib/ethon/configuration/settings.rb +37 -0
  364. data/lib/datadog/tracing/contrib/ethon/easy_patch.rb +177 -0
  365. data/lib/datadog/tracing/contrib/ethon/ext.rb +24 -0
  366. data/lib/datadog/tracing/contrib/ethon/integration.rb +48 -0
  367. data/lib/datadog/tracing/contrib/ethon/multi_patch.rb +96 -0
  368. data/lib/datadog/tracing/contrib/ethon/patcher.rb +31 -0
  369. data/lib/datadog/tracing/contrib/excon/configuration/settings.rb +38 -0
  370. data/lib/datadog/tracing/contrib/excon/ext.rb +21 -0
  371. data/lib/datadog/tracing/contrib/excon/integration.rb +48 -0
  372. data/lib/datadog/tracing/contrib/excon/middleware.rb +170 -0
  373. data/lib/datadog/tracing/contrib/excon/patcher.rb +31 -0
  374. data/lib/datadog/tracing/contrib/extensions.rb +197 -0
  375. data/lib/datadog/tracing/contrib/faraday/configuration/settings.rb +42 -0
  376. data/lib/datadog/tracing/contrib/faraday/connection.rb +22 -0
  377. data/lib/datadog/tracing/contrib/faraday/ext.rb +21 -0
  378. data/lib/datadog/tracing/contrib/faraday/integration.rb +48 -0
  379. data/lib/datadog/tracing/contrib/faraday/middleware.rb +93 -0
  380. data/lib/datadog/tracing/contrib/faraday/patcher.rb +56 -0
  381. data/lib/datadog/tracing/contrib/faraday/rack_builder.rb +22 -0
  382. data/lib/datadog/tracing/contrib/grape/configuration/settings.rb +42 -0
  383. data/lib/datadog/tracing/contrib/grape/endpoint.rb +253 -0
  384. data/lib/datadog/tracing/contrib/grape/ext.rb +28 -0
  385. data/lib/datadog/tracing/contrib/grape/instrumentation.rb +37 -0
  386. data/lib/datadog/tracing/contrib/grape/integration.rb +44 -0
  387. data/lib/datadog/tracing/contrib/grape/patcher.rb +33 -0
  388. data/lib/datadog/tracing/contrib/graphql/configuration/settings.rb +36 -0
  389. data/lib/datadog/tracing/contrib/graphql/ext.rb +19 -0
  390. data/lib/datadog/tracing/contrib/graphql/integration.rb +44 -0
  391. data/lib/datadog/tracing/contrib/graphql/patcher.rb +91 -0
  392. data/lib/datadog/tracing/contrib/grpc/configuration/settings.rb +37 -0
  393. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +84 -0
  394. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +90 -0
  395. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb +104 -0
  396. data/lib/datadog/tracing/contrib/grpc/ext.rb +23 -0
  397. data/lib/datadog/tracing/contrib/grpc/integration.rb +43 -0
  398. data/lib/datadog/tracing/contrib/grpc/intercept_with_datadog.rb +53 -0
  399. data/lib/datadog/tracing/contrib/grpc/patcher.rb +37 -0
  400. data/lib/datadog/tracing/contrib/http/circuit_breaker.rb +44 -0
  401. data/lib/datadog/tracing/contrib/http/configuration/settings.rb +37 -0
  402. data/lib/datadog/tracing/contrib/http/ext.rb +21 -0
  403. data/lib/datadog/tracing/contrib/http/instrumentation.rb +139 -0
  404. data/lib/datadog/tracing/contrib/http/integration.rb +49 -0
  405. data/lib/datadog/tracing/contrib/http/patcher.rb +30 -0
  406. data/lib/datadog/tracing/contrib/http_annotation_helper.rb +17 -0
  407. data/lib/datadog/tracing/contrib/httpclient/configuration/settings.rb +37 -0
  408. data/lib/datadog/tracing/contrib/httpclient/ext.rb +21 -0
  409. data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +117 -0
  410. data/lib/datadog/tracing/contrib/httpclient/integration.rb +48 -0
  411. data/lib/datadog/tracing/contrib/httpclient/patcher.rb +42 -0
  412. data/lib/datadog/tracing/contrib/httprb/configuration/settings.rb +37 -0
  413. data/lib/datadog/tracing/contrib/httprb/ext.rb +21 -0
  414. data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +128 -0
  415. data/lib/datadog/tracing/contrib/httprb/integration.rb +48 -0
  416. data/lib/datadog/tracing/contrib/httprb/patcher.rb +42 -0
  417. data/lib/datadog/tracing/contrib/integration.rb +78 -0
  418. data/lib/datadog/tracing/contrib/kafka/configuration/settings.rb +35 -0
  419. data/lib/datadog/tracing/contrib/kafka/consumer_event.rb +18 -0
  420. data/lib/datadog/tracing/contrib/kafka/consumer_group_event.rb +18 -0
  421. data/lib/datadog/tracing/contrib/kafka/event.rb +52 -0
  422. data/lib/datadog/tracing/contrib/kafka/events/connection/request.rb +42 -0
  423. data/lib/datadog/tracing/contrib/kafka/events/consumer/process_batch.rb +49 -0
  424. data/lib/datadog/tracing/contrib/kafka/events/consumer/process_message.rb +47 -0
  425. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/heartbeat.rb +47 -0
  426. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/join_group.rb +37 -0
  427. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/leave_group.rb +37 -0
  428. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/sync_group.rb +37 -0
  429. data/lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb +40 -0
  430. data/lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb +43 -0
  431. data/lib/datadog/tracing/contrib/kafka/events.rb +48 -0
  432. data/lib/datadog/tracing/contrib/kafka/ext.rb +52 -0
  433. data/lib/datadog/tracing/contrib/kafka/integration.rb +44 -0
  434. data/lib/datadog/tracing/contrib/kafka/patcher.rb +29 -0
  435. data/lib/datadog/tracing/contrib/lograge/configuration/settings.rb +23 -0
  436. data/lib/datadog/tracing/contrib/lograge/ext.rb +15 -0
  437. data/lib/datadog/tracing/contrib/lograge/instrumentation.rb +47 -0
  438. data/lib/datadog/tracing/contrib/lograge/integration.rb +50 -0
  439. data/lib/datadog/tracing/contrib/lograge/patcher.rb +29 -0
  440. data/lib/datadog/tracing/contrib/mongodb/configuration/settings.rb +38 -0
  441. data/lib/datadog/tracing/contrib/mongodb/ext.rb +27 -0
  442. data/lib/datadog/tracing/contrib/mongodb/instrumentation.rb +47 -0
  443. data/lib/datadog/tracing/contrib/mongodb/integration.rb +48 -0
  444. data/lib/datadog/tracing/contrib/mongodb/parsers.rb +49 -0
  445. data/lib/datadog/tracing/contrib/mongodb/patcher.rb +34 -0
  446. data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +121 -0
  447. data/lib/datadog/tracing/contrib/mysql2/configuration/settings.rb +35 -0
  448. data/lib/datadog/tracing/contrib/mysql2/ext.rb +22 -0
  449. data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +62 -0
  450. data/lib/datadog/tracing/contrib/mysql2/integration.rb +43 -0
  451. data/lib/datadog/tracing/contrib/mysql2/patcher.rb +31 -0
  452. data/lib/datadog/tracing/contrib/patchable.rb +109 -0
  453. data/lib/datadog/tracing/contrib/patcher.rb +74 -0
  454. data/lib/datadog/tracing/contrib/presto/configuration/settings.rb +35 -0
  455. data/lib/datadog/tracing/contrib/presto/ext.rb +32 -0
  456. data/lib/datadog/tracing/contrib/presto/instrumentation.rb +125 -0
  457. data/lib/datadog/tracing/contrib/presto/integration.rb +43 -0
  458. data/lib/datadog/tracing/contrib/presto/patcher.rb +37 -0
  459. data/lib/datadog/tracing/contrib/qless/configuration/settings.rb +40 -0
  460. data/lib/datadog/tracing/contrib/qless/ext.rb +26 -0
  461. data/lib/datadog/tracing/contrib/qless/integration.rb +43 -0
  462. data/lib/datadog/tracing/contrib/qless/patcher.rb +38 -0
  463. data/lib/datadog/tracing/contrib/qless/qless_job.rb +75 -0
  464. data/lib/datadog/tracing/contrib/qless/tracer_cleaner.rb +32 -0
  465. data/lib/datadog/tracing/contrib/que/configuration/settings.rb +49 -0
  466. data/lib/datadog/tracing/contrib/que/ext.rb +34 -0
  467. data/lib/datadog/tracing/contrib/que/integration.rb +46 -0
  468. data/lib/datadog/tracing/contrib/que/patcher.rb +28 -0
  469. data/lib/datadog/tracing/contrib/que/tracer.rb +61 -0
  470. data/lib/datadog/tracing/contrib/racecar/configuration/settings.rb +35 -0
  471. data/lib/datadog/tracing/contrib/racecar/event.rb +79 -0
  472. data/lib/datadog/tracing/contrib/racecar/events/batch.rb +35 -0
  473. data/lib/datadog/tracing/contrib/racecar/events/consume.rb +35 -0
  474. data/lib/datadog/tracing/contrib/racecar/events/message.rb +35 -0
  475. data/lib/datadog/tracing/contrib/racecar/events.rb +36 -0
  476. data/lib/datadog/tracing/contrib/racecar/ext.rb +31 -0
  477. data/lib/datadog/tracing/contrib/racecar/integration.rb +44 -0
  478. data/lib/datadog/tracing/contrib/racecar/patcher.rb +29 -0
  479. data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +51 -0
  480. data/lib/datadog/tracing/contrib/rack/ext.rb +25 -0
  481. data/lib/datadog/tracing/contrib/rack/integration.rb +50 -0
  482. data/lib/datadog/tracing/contrib/rack/middlewares.rb +255 -0
  483. data/lib/datadog/tracing/contrib/rack/patcher.rb +109 -0
  484. data/lib/datadog/tracing/contrib/rack/request_queue.rb +48 -0
  485. data/lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb +12 -0
  486. data/lib/datadog/tracing/contrib/rails/configuration/settings.rb +71 -0
  487. data/lib/datadog/tracing/contrib/rails/ext.rb +19 -0
  488. data/lib/datadog/tracing/contrib/rails/framework.rb +152 -0
  489. data/lib/datadog/tracing/contrib/rails/integration.rb +49 -0
  490. data/lib/datadog/tracing/contrib/rails/log_injection.rb +34 -0
  491. data/lib/datadog/tracing/contrib/rails/middlewares.rb +47 -0
  492. data/lib/datadog/tracing/contrib/rails/patcher.rb +121 -0
  493. data/lib/datadog/tracing/contrib/rails/railtie.rb +19 -0
  494. data/lib/datadog/tracing/contrib/rails/utils.rb +28 -0
  495. data/lib/datadog/tracing/contrib/rake/configuration/settings.rb +36 -0
  496. data/lib/datadog/tracing/contrib/rake/ext.rb +26 -0
  497. data/lib/datadog/tracing/contrib/rake/instrumentation.rb +98 -0
  498. data/lib/datadog/tracing/contrib/rake/integration.rb +43 -0
  499. data/lib/datadog/tracing/contrib/rake/patcher.rb +34 -0
  500. data/lib/datadog/tracing/contrib/redis/configuration/resolver.rb +49 -0
  501. data/lib/datadog/tracing/contrib/redis/configuration/settings.rb +40 -0
  502. data/lib/datadog/tracing/contrib/redis/ext.rb +26 -0
  503. data/lib/datadog/tracing/contrib/redis/instrumentation.rb +78 -0
  504. data/lib/datadog/tracing/contrib/redis/integration.rb +47 -0
  505. data/lib/datadog/tracing/contrib/redis/patcher.rb +35 -0
  506. data/lib/datadog/tracing/contrib/redis/quantize.rb +79 -0
  507. data/lib/datadog/tracing/contrib/redis/tags.rb +54 -0
  508. data/lib/datadog/tracing/contrib/redis/vendor/LICENSE +20 -0
  509. data/lib/datadog/tracing/contrib/redis/vendor/resolver.rb +162 -0
  510. data/lib/datadog/tracing/contrib/registerable.rb +50 -0
  511. data/lib/datadog/tracing/contrib/registry.rb +52 -0
  512. data/lib/datadog/tracing/contrib/resque/configuration/settings.rb +37 -0
  513. data/lib/datadog/tracing/contrib/resque/ext.rb +21 -0
  514. data/lib/datadog/tracing/contrib/resque/integration.rb +48 -0
  515. data/lib/datadog/tracing/contrib/resque/patcher.rb +29 -0
  516. data/lib/datadog/tracing/contrib/resque/resque_job.rb +103 -0
  517. data/lib/datadog/tracing/contrib/rest_client/configuration/settings.rb +36 -0
  518. data/lib/datadog/tracing/contrib/rest_client/ext.rb +21 -0
  519. data/lib/datadog/tracing/contrib/rest_client/integration.rb +43 -0
  520. data/lib/datadog/tracing/contrib/rest_client/patcher.rb +29 -0
  521. data/lib/datadog/tracing/contrib/rest_client/request_patch.rb +105 -0
  522. data/lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb +23 -0
  523. data/lib/datadog/tracing/contrib/semantic_logger/ext.rb +15 -0
  524. data/lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb +51 -0
  525. data/lib/datadog/tracing/contrib/semantic_logger/integration.rb +52 -0
  526. data/lib/datadog/tracing/contrib/semantic_logger/patcher.rb +29 -0
  527. data/lib/datadog/tracing/contrib/sequel/configuration/settings.rb +33 -0
  528. data/lib/datadog/tracing/contrib/sequel/database.rb +60 -0
  529. data/lib/datadog/tracing/contrib/sequel/dataset.rb +65 -0
  530. data/lib/datadog/tracing/contrib/sequel/ext.rb +22 -0
  531. data/lib/datadog/tracing/contrib/sequel/integration.rb +43 -0
  532. data/lib/datadog/tracing/contrib/sequel/patcher.rb +37 -0
  533. data/lib/datadog/tracing/contrib/sequel/utils.rb +87 -0
  534. data/lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb +38 -0
  535. data/lib/datadog/tracing/contrib/shoryuken/ext.rb +25 -0
  536. data/lib/datadog/tracing/contrib/shoryuken/integration.rb +44 -0
  537. data/lib/datadog/tracing/contrib/shoryuken/patcher.rb +28 -0
  538. data/lib/datadog/tracing/contrib/shoryuken/tracer.rb +61 -0
  539. data/lib/datadog/tracing/contrib/sidekiq/client_tracer.rb +53 -0
  540. data/lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb +44 -0
  541. data/lib/datadog/tracing/contrib/sidekiq/ext.rb +38 -0
  542. data/lib/datadog/tracing/contrib/sidekiq/integration.rb +53 -0
  543. data/lib/datadog/tracing/contrib/sidekiq/patcher.rb +71 -0
  544. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/heartbeat.rb +34 -0
  545. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/job_fetch.rb +34 -0
  546. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/scheduled_push.rb +33 -0
  547. data/lib/datadog/tracing/contrib/sidekiq/server_tracer.rb +98 -0
  548. data/lib/datadog/tracing/contrib/sidekiq/tracing.rb +44 -0
  549. data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +43 -0
  550. data/lib/datadog/tracing/contrib/sinatra/env.rb +66 -0
  551. data/lib/datadog/tracing/contrib/sinatra/ext.rb +32 -0
  552. data/lib/datadog/tracing/contrib/sinatra/framework.rb +118 -0
  553. data/lib/datadog/tracing/contrib/sinatra/headers.rb +35 -0
  554. data/lib/datadog/tracing/contrib/sinatra/integration.rb +43 -0
  555. data/lib/datadog/tracing/contrib/sinatra/patcher.rb +76 -0
  556. data/lib/datadog/tracing/contrib/sinatra/tracer.rb +159 -0
  557. data/lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb +123 -0
  558. data/lib/datadog/tracing/contrib/sneakers/configuration/settings.rb +38 -0
  559. data/lib/datadog/tracing/contrib/sneakers/ext.rb +26 -0
  560. data/lib/datadog/tracing/contrib/sneakers/integration.rb +46 -0
  561. data/lib/datadog/tracing/contrib/sneakers/patcher.rb +29 -0
  562. data/lib/datadog/tracing/contrib/sneakers/tracer.rb +58 -0
  563. data/lib/datadog/tracing/contrib/status_code_matcher.rb +75 -0
  564. data/lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb +35 -0
  565. data/lib/datadog/tracing/contrib/sucker_punch/exception_handler.rb +28 -0
  566. data/lib/datadog/tracing/contrib/sucker_punch/ext.rb +27 -0
  567. data/lib/datadog/tracing/contrib/sucker_punch/instrumentation.rb +105 -0
  568. data/lib/datadog/tracing/contrib/sucker_punch/integration.rb +43 -0
  569. data/lib/datadog/tracing/contrib/sucker_punch/patcher.rb +37 -0
  570. data/lib/datadog/tracing/contrib/utils/database.rb +31 -0
  571. data/lib/datadog/tracing/contrib/utils/quantization/hash.rb +111 -0
  572. data/lib/datadog/tracing/contrib/utils/quantization/http.rb +99 -0
  573. data/lib/datadog/tracing/contrib.rb +76 -0
  574. data/lib/datadog/tracing/correlation.rb +100 -0
  575. data/lib/datadog/tracing/distributed/headers/b3.rb +55 -0
  576. data/lib/datadog/tracing/distributed/headers/b3_single.rb +67 -0
  577. data/lib/datadog/tracing/distributed/headers/datadog.rb +52 -0
  578. data/lib/datadog/tracing/distributed/headers/ext.rb +31 -0
  579. data/lib/datadog/tracing/distributed/helpers.rb +44 -0
  580. data/lib/datadog/tracing/distributed/parser.rb +70 -0
  581. data/lib/datadog/tracing/event.rb +78 -0
  582. data/lib/datadog/tracing/flush.rb +74 -0
  583. data/lib/datadog/tracing/metadata/analytics.rb +26 -0
  584. data/lib/datadog/tracing/metadata/errors.rb +24 -0
  585. data/lib/datadog/tracing/metadata/ext.rb +151 -0
  586. data/lib/datadog/tracing/metadata/tagging.rb +110 -0
  587. data/lib/datadog/tracing/metadata.rb +20 -0
  588. data/lib/datadog/tracing/pipeline/span_filter.rb +42 -0
  589. data/lib/datadog/tracing/pipeline/span_processor.rb +39 -0
  590. data/lib/datadog/tracing/pipeline.rb +65 -0
  591. data/lib/datadog/tracing/propagation/grpc.rb +88 -0
  592. data/lib/datadog/tracing/propagation/http.rb +109 -0
  593. data/lib/datadog/tracing/runtime/metrics.rb +19 -0
  594. data/lib/datadog/tracing/sampling/all_sampler.rb +25 -0
  595. data/lib/datadog/tracing/sampling/ext.rb +27 -0
  596. data/lib/datadog/tracing/sampling/matcher.rb +68 -0
  597. data/lib/datadog/tracing/sampling/priority_sampler.rb +112 -0
  598. data/lib/datadog/tracing/sampling/rate_by_key_sampler.rb +97 -0
  599. data/lib/datadog/tracing/sampling/rate_by_service_sampler.rb +41 -0
  600. data/lib/datadog/tracing/sampling/rate_limiter.rb +185 -0
  601. data/lib/datadog/tracing/sampling/rate_sampler.rb +55 -0
  602. data/lib/datadog/tracing/sampling/rule.rb +76 -0
  603. data/lib/datadog/tracing/sampling/rule_sampler.rb +131 -0
  604. data/lib/datadog/tracing/sampling/sampler.rb +44 -0
  605. data/lib/datadog/tracing/span.rb +212 -0
  606. data/lib/datadog/tracing/span_operation.rb +520 -0
  607. data/lib/datadog/tracing/sync_writer.rb +69 -0
  608. data/lib/datadog/tracing/trace_digest.rb +60 -0
  609. data/lib/datadog/tracing/trace_operation.rb +431 -0
  610. data/lib/datadog/tracing/trace_segment.rb +207 -0
  611. data/lib/datadog/tracing/tracer.rb +505 -0
  612. data/lib/datadog/tracing/workers/trace_writer.rb +195 -0
  613. data/lib/datadog/tracing/workers.rb +125 -0
  614. data/lib/datadog/tracing/writer.rb +180 -0
  615. data/lib/datadog/tracing.rb +142 -0
  616. data/lib/ddtrace/auto_instrument.rb +9 -0
  617. data/lib/ddtrace/auto_instrument_base.rb +8 -0
  618. data/lib/ddtrace/profiling/preload.rb +4 -0
  619. data/lib/ddtrace/transport/ext.rb +35 -0
  620. data/lib/ddtrace/transport/http/adapters/net.rb +57 -12
  621. data/lib/ddtrace/transport/http/adapters/registry.rb +3 -0
  622. data/lib/ddtrace/transport/http/adapters/test.rb +12 -2
  623. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +30 -15
  624. data/lib/ddtrace/transport/http/api/endpoint.rb +2 -0
  625. data/lib/ddtrace/transport/http/api/fallbacks.rb +2 -0
  626. data/lib/ddtrace/transport/http/api/instance.rb +2 -0
  627. data/lib/ddtrace/transport/http/api/map.rb +2 -0
  628. data/lib/ddtrace/transport/http/api/spec.rb +2 -0
  629. data/lib/ddtrace/transport/http/api.rb +6 -11
  630. data/lib/ddtrace/transport/http/builder.rb +22 -7
  631. data/lib/ddtrace/transport/http/client.rb +5 -1
  632. data/lib/ddtrace/transport/http/env.rb +10 -0
  633. data/lib/ddtrace/transport/http/response.rb +36 -4
  634. data/lib/ddtrace/transport/http/statistics.rb +18 -3
  635. data/lib/ddtrace/transport/http/traces.rb +9 -6
  636. data/lib/ddtrace/transport/http.rb +66 -39
  637. data/lib/ddtrace/transport/io/client.rb +20 -9
  638. data/lib/ddtrace/transport/io/response.rb +3 -3
  639. data/lib/ddtrace/transport/io/traces.rb +12 -2
  640. data/lib/ddtrace/transport/io.rb +5 -3
  641. data/lib/ddtrace/transport/parcel.rb +9 -0
  642. data/lib/ddtrace/transport/request.rb +2 -0
  643. data/lib/ddtrace/transport/response.rb +13 -0
  644. data/lib/ddtrace/transport/serializable_trace.rb +118 -0
  645. data/lib/ddtrace/transport/statistics.rb +7 -4
  646. data/lib/ddtrace/transport/trace_formatter.rb +187 -0
  647. data/lib/ddtrace/transport/traces.rb +43 -10
  648. data/lib/ddtrace/version.rb +20 -5
  649. data/lib/ddtrace.rb +10 -71
  650. metadata +643 -603
  651. data/.circleci/config.yml +0 -490
  652. data/.circleci/images/primary/Dockerfile-2.0.0 +0 -73
  653. data/.circleci/images/primary/Dockerfile-2.1.10 +0 -73
  654. data/.circleci/images/primary/Dockerfile-2.2.10 +0 -73
  655. data/.circleci/images/primary/Dockerfile-2.3.8 +0 -75
  656. data/.circleci/images/primary/Dockerfile-2.4.6 +0 -73
  657. data/.circleci/images/primary/Dockerfile-2.5.6 +0 -73
  658. data/.circleci/images/primary/Dockerfile-2.6.4 +0 -73
  659. data/.circleci/images/primary/Dockerfile-2.7.0 +0 -73
  660. data/.circleci/images/primary/Dockerfile-jruby-9.2 +0 -77
  661. data/.dockerignore +0 -1
  662. data/.env +0 -26
  663. data/.github/CODEOWNERS +0 -1
  664. data/.rspec +0 -1
  665. data/.rubocop.yml +0 -81
  666. data/.yardopts +0 -5
  667. data/Appraisals +0 -944
  668. data/Gemfile +0 -7
  669. data/Rakefile +0 -731
  670. data/benchmarks/postgres_database.yml +0 -9
  671. data/benchmarks/sidekiq_test.rb +0 -154
  672. data/docker-compose.yml +0 -335
  673. data/lib/ddtrace/analytics.rb +0 -36
  674. data/lib/ddtrace/augmentation/method_wrapper.rb +0 -20
  675. data/lib/ddtrace/augmentation/method_wrapping.rb +0 -38
  676. data/lib/ddtrace/augmentation/shim.rb +0 -102
  677. data/lib/ddtrace/augmentation.rb +0 -13
  678. data/lib/ddtrace/buffer.rb +0 -119
  679. data/lib/ddtrace/chunker.rb +0 -34
  680. data/lib/ddtrace/configuration/base.rb +0 -84
  681. data/lib/ddtrace/configuration/components.rb +0 -154
  682. data/lib/ddtrace/configuration/dependency_resolver.rb +0 -24
  683. data/lib/ddtrace/configuration/option.rb +0 -64
  684. data/lib/ddtrace/configuration/option_definition.rb +0 -123
  685. data/lib/ddtrace/configuration/option_definition_set.rb +0 -18
  686. data/lib/ddtrace/configuration/option_set.rb +0 -6
  687. data/lib/ddtrace/configuration/options.rb +0 -112
  688. data/lib/ddtrace/configuration/pin_setup.rb +0 -30
  689. data/lib/ddtrace/configuration/settings.rb +0 -255
  690. data/lib/ddtrace/configuration.rb +0 -53
  691. data/lib/ddtrace/context.rb +0 -305
  692. data/lib/ddtrace/context_flush.rb +0 -69
  693. data/lib/ddtrace/context_provider.rb +0 -50
  694. data/lib/ddtrace/contrib/action_cable/configuration/settings.rb +0 -25
  695. data/lib/ddtrace/contrib/action_cable/event.rb +0 -65
  696. data/lib/ddtrace/contrib/action_cable/events/broadcast.rb +0 -49
  697. data/lib/ddtrace/contrib/action_cable/events/perform_action.rb +0 -55
  698. data/lib/ddtrace/contrib/action_cable/events/transmit.rb +0 -50
  699. data/lib/ddtrace/contrib/action_cable/events.rb +0 -33
  700. data/lib/ddtrace/contrib/action_cable/ext.rb +0 -23
  701. data/lib/ddtrace/contrib/action_cable/instrumentation.rb +0 -31
  702. data/lib/ddtrace/contrib/action_cable/integration.rb +0 -38
  703. data/lib/ddtrace/contrib/action_cable/patcher.rb +0 -27
  704. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +0 -148
  705. data/lib/ddtrace/contrib/action_pack/action_controller/patcher.rb +0 -25
  706. data/lib/ddtrace/contrib/action_pack/configuration/settings.rb +0 -27
  707. data/lib/ddtrace/contrib/action_pack/ext.rb +0 -16
  708. data/lib/ddtrace/contrib/action_pack/integration.rb +0 -38
  709. data/lib/ddtrace/contrib/action_pack/patcher.rb +0 -23
  710. data/lib/ddtrace/contrib/action_pack/utils.rb +0 -36
  711. data/lib/ddtrace/contrib/action_view/configuration/settings.rb +0 -26
  712. data/lib/ddtrace/contrib/action_view/event.rb +0 -39
  713. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +0 -45
  714. data/lib/ddtrace/contrib/action_view/events/render_template.rb +0 -48
  715. data/lib/ddtrace/contrib/action_view/events.rb +0 -30
  716. data/lib/ddtrace/contrib/action_view/ext.rb +0 -17
  717. data/lib/ddtrace/contrib/action_view/instrumentation/partial_renderer.rb +0 -74
  718. data/lib/ddtrace/contrib/action_view/instrumentation/template_renderer.rb +0 -167
  719. data/lib/ddtrace/contrib/action_view/integration.rb +0 -45
  720. data/lib/ddtrace/contrib/action_view/patcher.rb +0 -47
  721. data/lib/ddtrace/contrib/action_view/utils.rb +0 -32
  722. data/lib/ddtrace/contrib/active_model_serializers/configuration/settings.rb +0 -25
  723. data/lib/ddtrace/contrib/active_model_serializers/event.rb +0 -68
  724. data/lib/ddtrace/contrib/active_model_serializers/events/render.rb +0 -32
  725. data/lib/ddtrace/contrib/active_model_serializers/events/serialize.rb +0 -35
  726. data/lib/ddtrace/contrib/active_model_serializers/events.rb +0 -30
  727. data/lib/ddtrace/contrib/active_model_serializers/ext.rb +0 -17
  728. data/lib/ddtrace/contrib/active_model_serializers/integration.rb +0 -40
  729. data/lib/ddtrace/contrib/active_model_serializers/patcher.rb +0 -29
  730. data/lib/ddtrace/contrib/active_record/configuration/resolver.rb +0 -45
  731. data/lib/ddtrace/contrib/active_record/configuration/settings.rb +0 -30
  732. data/lib/ddtrace/contrib/active_record/event.rb +0 -30
  733. data/lib/ddtrace/contrib/active_record/events/instantiation.rb +0 -60
  734. data/lib/ddtrace/contrib/active_record/events/sql.rb +0 -64
  735. data/lib/ddtrace/contrib/active_record/events.rb +0 -30
  736. data/lib/ddtrace/contrib/active_record/ext.rb +0 -21
  737. data/lib/ddtrace/contrib/active_record/integration.rb +0 -46
  738. data/lib/ddtrace/contrib/active_record/patcher.rb +0 -23
  739. data/lib/ddtrace/contrib/active_record/utils.rb +0 -76
  740. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +0 -157
  741. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +0 -48
  742. data/lib/ddtrace/contrib/active_support/cache/redis.rb +0 -47
  743. data/lib/ddtrace/contrib/active_support/configuration/settings.rb +0 -25
  744. data/lib/ddtrace/contrib/active_support/ext.rb +0 -21
  745. data/lib/ddtrace/contrib/active_support/integration.rb +0 -40
  746. data/lib/ddtrace/contrib/active_support/notifications/event.rb +0 -62
  747. data/lib/ddtrace/contrib/active_support/notifications/subscriber.rb +0 -66
  748. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +0 -159
  749. data/lib/ddtrace/contrib/active_support/patcher.rb +0 -23
  750. data/lib/ddtrace/contrib/analytics.rb +0 -24
  751. data/lib/ddtrace/contrib/aws/configuration/settings.rb +0 -25
  752. data/lib/ddtrace/contrib/aws/ext.rb +0 -20
  753. data/lib/ddtrace/contrib/aws/instrumentation.rb +0 -56
  754. data/lib/ddtrace/contrib/aws/integration.rb +0 -42
  755. data/lib/ddtrace/contrib/aws/parsed_context.rb +0 -56
  756. data/lib/ddtrace/contrib/aws/patcher.rb +0 -49
  757. data/lib/ddtrace/contrib/aws/services.rb +0 -115
  758. data/lib/ddtrace/contrib/concurrent_ruby/configuration/settings.rb +0 -15
  759. data/lib/ddtrace/contrib/concurrent_ruby/context_composite_executor_service.rb +0 -35
  760. data/lib/ddtrace/contrib/concurrent_ruby/ext.rb +0 -11
  761. data/lib/ddtrace/contrib/concurrent_ruby/future_patch.rb +0 -23
  762. data/lib/ddtrace/contrib/concurrent_ruby/integration.rb +0 -38
  763. data/lib/ddtrace/contrib/concurrent_ruby/patcher.rb +0 -28
  764. data/lib/ddtrace/contrib/configurable.rb +0 -76
  765. data/lib/ddtrace/contrib/configuration/resolver.rb +0 -16
  766. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +0 -39
  767. data/lib/ddtrace/contrib/configuration/settings.rb +0 -35
  768. data/lib/ddtrace/contrib/dalli/configuration/settings.rb +0 -25
  769. data/lib/ddtrace/contrib/dalli/ext.rb +0 -17
  770. data/lib/ddtrace/contrib/dalli/instrumentation.rb +0 -50
  771. data/lib/ddtrace/contrib/dalli/integration.rb +0 -38
  772. data/lib/ddtrace/contrib/dalli/patcher.rb +0 -67
  773. data/lib/ddtrace/contrib/dalli/quantize.rb +0 -22
  774. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +0 -25
  775. data/lib/ddtrace/contrib/delayed_job/ext.rb +0 -18
  776. data/lib/ddtrace/contrib/delayed_job/integration.rb +0 -38
  777. data/lib/ddtrace/contrib/delayed_job/patcher.rb +0 -28
  778. data/lib/ddtrace/contrib/delayed_job/plugin.rb +0 -61
  779. data/lib/ddtrace/contrib/elasticsearch/configuration/settings.rb +0 -26
  780. data/lib/ddtrace/contrib/elasticsearch/ext.rb +0 -19
  781. data/lib/ddtrace/contrib/elasticsearch/integration.rb +0 -39
  782. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +0 -118
  783. data/lib/ddtrace/contrib/elasticsearch/quantize.rb +0 -80
  784. data/lib/ddtrace/contrib/ethon/configuration/settings.rb +0 -27
  785. data/lib/ddtrace/contrib/ethon/easy_patch.rb +0 -148
  786. data/lib/ddtrace/contrib/ethon/ext.rb +0 -15
  787. data/lib/ddtrace/contrib/ethon/integration.rb +0 -43
  788. data/lib/ddtrace/contrib/ethon/multi_patch.rb +0 -80
  789. data/lib/ddtrace/contrib/ethon/patcher.rb +0 -25
  790. data/lib/ddtrace/contrib/excon/configuration/settings.rb +0 -28
  791. data/lib/ddtrace/contrib/excon/ext.rb +0 -14
  792. data/lib/ddtrace/contrib/excon/integration.rb +0 -43
  793. data/lib/ddtrace/contrib/excon/middleware.rb +0 -157
  794. data/lib/ddtrace/contrib/excon/patcher.rb +0 -27
  795. data/lib/ddtrace/contrib/extensions.rb +0 -59
  796. data/lib/ddtrace/contrib/faraday/configuration/settings.rb +0 -33
  797. data/lib/ddtrace/contrib/faraday/connection.rb +0 -18
  798. data/lib/ddtrace/contrib/faraday/ext.rb +0 -14
  799. data/lib/ddtrace/contrib/faraday/integration.rb +0 -43
  800. data/lib/ddtrace/contrib/faraday/middleware.rb +0 -81
  801. data/lib/ddtrace/contrib/faraday/patcher.rb +0 -81
  802. data/lib/ddtrace/contrib/faraday/rack_builder.rb +0 -18
  803. data/lib/ddtrace/contrib/grape/configuration/settings.rb +0 -27
  804. data/lib/ddtrace/contrib/grape/endpoint.rb +0 -208
  805. data/lib/ddtrace/contrib/grape/ext.rb +0 -19
  806. data/lib/ddtrace/contrib/grape/instrumentation.rb +0 -33
  807. data/lib/ddtrace/contrib/grape/integration.rb +0 -39
  808. data/lib/ddtrace/contrib/grape/patcher.rb +0 -73
  809. data/lib/ddtrace/contrib/graphql/configuration/settings.rb +0 -27
  810. data/lib/ddtrace/contrib/graphql/ext.rb +0 -13
  811. data/lib/ddtrace/contrib/graphql/integration.rb +0 -39
  812. data/lib/ddtrace/contrib/graphql/patcher.rb +0 -57
  813. data/lib/ddtrace/contrib/grpc/configuration/settings.rb +0 -25
  814. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +0 -56
  815. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +0 -76
  816. data/lib/ddtrace/contrib/grpc/datadog_interceptor.rb +0 -74
  817. data/lib/ddtrace/contrib/grpc/ext.rb +0 -15
  818. data/lib/ddtrace/contrib/grpc/integration.rb +0 -38
  819. data/lib/ddtrace/contrib/grpc/intercept_with_datadog.rb +0 -49
  820. data/lib/ddtrace/contrib/grpc/patcher.rb +0 -72
  821. data/lib/ddtrace/contrib/http/circuit_breaker.rb +0 -39
  822. data/lib/ddtrace/contrib/http/configuration/settings.rb +0 -27
  823. data/lib/ddtrace/contrib/http/ext.rb +0 -14
  824. data/lib/ddtrace/contrib/http/instrumentation.rb +0 -170
  825. data/lib/ddtrace/contrib/http/integration.rb +0 -45
  826. data/lib/ddtrace/contrib/http/patcher.rb +0 -26
  827. data/lib/ddtrace/contrib/http_annotation_helper.rb +0 -10
  828. data/lib/ddtrace/contrib/integration.rb +0 -16
  829. data/lib/ddtrace/contrib/mongodb/configuration/settings.rb +0 -28
  830. data/lib/ddtrace/contrib/mongodb/ext.rb +0 -20
  831. data/lib/ddtrace/contrib/mongodb/instrumentation.rb +0 -68
  832. data/lib/ddtrace/contrib/mongodb/integration.rb +0 -38
  833. data/lib/ddtrace/contrib/mongodb/parsers.rb +0 -68
  834. data/lib/ddtrace/contrib/mongodb/patcher.rb +0 -31
  835. data/lib/ddtrace/contrib/mongodb/subscribers.rb +0 -108
  836. data/lib/ddtrace/contrib/mysql2/configuration/settings.rb +0 -25
  837. data/lib/ddtrace/contrib/mysql2/ext.rb +0 -15
  838. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +0 -60
  839. data/lib/ddtrace/contrib/mysql2/integration.rb +0 -38
  840. data/lib/ddtrace/contrib/mysql2/patcher.rb +0 -27
  841. data/lib/ddtrace/contrib/patchable.rb +0 -59
  842. data/lib/ddtrace/contrib/patcher.rb +0 -56
  843. data/lib/ddtrace/contrib/presto/configuration/settings.rb +0 -25
  844. data/lib/ddtrace/contrib/presto/ext.rb +0 -25
  845. data/lib/ddtrace/contrib/presto/instrumentation.rb +0 -107
  846. data/lib/ddtrace/contrib/presto/integration.rb +0 -38
  847. data/lib/ddtrace/contrib/presto/patcher.rb +0 -30
  848. data/lib/ddtrace/contrib/racecar/configuration/settings.rb +0 -25
  849. data/lib/ddtrace/contrib/racecar/event.rb +0 -71
  850. data/lib/ddtrace/contrib/racecar/events/batch.rb +0 -27
  851. data/lib/ddtrace/contrib/racecar/events/message.rb +0 -27
  852. data/lib/ddtrace/contrib/racecar/events.rb +0 -30
  853. data/lib/ddtrace/contrib/racecar/ext.rb +0 -21
  854. data/lib/ddtrace/contrib/racecar/integration.rb +0 -39
  855. data/lib/ddtrace/contrib/racecar/patcher.rb +0 -26
  856. data/lib/ddtrace/contrib/rack/configuration/settings.rb +0 -41
  857. data/lib/ddtrace/contrib/rack/ext.rb +0 -18
  858. data/lib/ddtrace/contrib/rack/integration.rb +0 -38
  859. data/lib/ddtrace/contrib/rack/middlewares.rb +0 -287
  860. data/lib/ddtrace/contrib/rack/patcher.rb +0 -107
  861. data/lib/ddtrace/contrib/rack/request_queue.rb +0 -39
  862. data/lib/ddtrace/contrib/rails/configuration/settings.rb +0 -94
  863. data/lib/ddtrace/contrib/rails/ext.rb +0 -13
  864. data/lib/ddtrace/contrib/rails/framework.rb +0 -118
  865. data/lib/ddtrace/contrib/rails/integration.rb +0 -44
  866. data/lib/ddtrace/contrib/rails/middlewares.rb +0 -38
  867. data/lib/ddtrace/contrib/rails/patcher.rb +0 -74
  868. data/lib/ddtrace/contrib/rails/railtie.rb +0 -17
  869. data/lib/ddtrace/contrib/rails/utils.rb +0 -20
  870. data/lib/ddtrace/contrib/rake/configuration/settings.rb +0 -27
  871. data/lib/ddtrace/contrib/rake/ext.rb +0 -18
  872. data/lib/ddtrace/contrib/rake/instrumentation.rb +0 -88
  873. data/lib/ddtrace/contrib/rake/integration.rb +0 -38
  874. data/lib/ddtrace/contrib/rake/patcher.rb +0 -30
  875. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +0 -36
  876. data/lib/ddtrace/contrib/redis/configuration/settings.rb +0 -25
  877. data/lib/ddtrace/contrib/redis/ext.rb +0 -18
  878. data/lib/ddtrace/contrib/redis/integration.rb +0 -42
  879. data/lib/ddtrace/contrib/redis/patcher.rb +0 -97
  880. data/lib/ddtrace/contrib/redis/quantize.rb +0 -47
  881. data/lib/ddtrace/contrib/redis/tags.rb +0 -38
  882. data/lib/ddtrace/contrib/redis/vendor/resolver.rb +0 -159
  883. data/lib/ddtrace/contrib/registerable.rb +0 -33
  884. data/lib/ddtrace/contrib/registry.rb +0 -42
  885. data/lib/ddtrace/contrib/resque/configuration/settings.rb +0 -26
  886. data/lib/ddtrace/contrib/resque/ext.rb +0 -14
  887. data/lib/ddtrace/contrib/resque/integration.rb +0 -47
  888. data/lib/ddtrace/contrib/resque/patcher.rb +0 -29
  889. data/lib/ddtrace/contrib/resque/resque_job.rb +0 -80
  890. data/lib/ddtrace/contrib/rest_client/configuration/settings.rb +0 -26
  891. data/lib/ddtrace/contrib/rest_client/ext.rb +0 -14
  892. data/lib/ddtrace/contrib/rest_client/integration.rb +0 -38
  893. data/lib/ddtrace/contrib/rest_client/patcher.rb +0 -23
  894. data/lib/ddtrace/contrib/rest_client/request_patch.rb +0 -89
  895. data/lib/ddtrace/contrib/sequel/configuration/settings.rb +0 -23
  896. data/lib/ddtrace/contrib/sequel/database.rb +0 -61
  897. data/lib/ddtrace/contrib/sequel/dataset.rb +0 -62
  898. data/lib/ddtrace/contrib/sequel/ext.rb +0 -15
  899. data/lib/ddtrace/contrib/sequel/integration.rb +0 -38
  900. data/lib/ddtrace/contrib/sequel/patcher.rb +0 -33
  901. data/lib/ddtrace/contrib/sequel/utils.rb +0 -46
  902. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +0 -24
  903. data/lib/ddtrace/contrib/shoryuken/ext.rb +0 -18
  904. data/lib/ddtrace/contrib/shoryuken/integration.rb +0 -39
  905. data/lib/ddtrace/contrib/shoryuken/patcher.rb +0 -24
  906. data/lib/ddtrace/contrib/shoryuken/tracer.rb +0 -49
  907. data/lib/ddtrace/contrib/sidekiq/client_tracer.rb +0 -43
  908. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +0 -31
  909. data/lib/ddtrace/contrib/sidekiq/ext.rb +0 -23
  910. data/lib/ddtrace/contrib/sidekiq/integration.rb +0 -38
  911. data/lib/ddtrace/contrib/sidekiq/patcher.rb +0 -34
  912. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +0 -66
  913. data/lib/ddtrace/contrib/sidekiq/tracing.rb +0 -45
  914. data/lib/ddtrace/contrib/sinatra/configuration/settings.rb +0 -34
  915. data/lib/ddtrace/contrib/sinatra/env.rb +0 -58
  916. data/lib/ddtrace/contrib/sinatra/ext.rb +0 -24
  917. data/lib/ddtrace/contrib/sinatra/headers.rb +0 -31
  918. data/lib/ddtrace/contrib/sinatra/integration.rb +0 -38
  919. data/lib/ddtrace/contrib/sinatra/patcher.rb +0 -28
  920. data/lib/ddtrace/contrib/sinatra/tracer.rb +0 -150
  921. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +0 -78
  922. data/lib/ddtrace/contrib/sucker_punch/configuration/settings.rb +0 -25
  923. data/lib/ddtrace/contrib/sucker_punch/exception_handler.rb +0 -26
  924. data/lib/ddtrace/contrib/sucker_punch/ext.rb +0 -18
  925. data/lib/ddtrace/contrib/sucker_punch/instrumentation.rb +0 -84
  926. data/lib/ddtrace/contrib/sucker_punch/integration.rb +0 -38
  927. data/lib/ddtrace/contrib/sucker_punch/patcher.rb +0 -42
  928. data/lib/ddtrace/correlation.rb +0 -38
  929. data/lib/ddtrace/diagnostics/health.rb +0 -33
  930. data/lib/ddtrace/distributed_tracing/headers/b3.rb +0 -44
  931. data/lib/ddtrace/distributed_tracing/headers/b3_single.rb +0 -56
  932. data/lib/ddtrace/distributed_tracing/headers/datadog.rb +0 -42
  933. data/lib/ddtrace/distributed_tracing/headers/headers.rb +0 -70
  934. data/lib/ddtrace/distributed_tracing/headers/helpers.rb +0 -45
  935. data/lib/ddtrace/encoding.rb +0 -69
  936. data/lib/ddtrace/environment.rb +0 -27
  937. data/lib/ddtrace/error.rb +0 -27
  938. data/lib/ddtrace/event.rb +0 -52
  939. data/lib/ddtrace/ext/analytics.rb +0 -12
  940. data/lib/ddtrace/ext/app_types.rb +0 -11
  941. data/lib/ddtrace/ext/correlation.rb +0 -11
  942. data/lib/ddtrace/ext/diagnostics.rb +0 -33
  943. data/lib/ddtrace/ext/distributed.rb +0 -33
  944. data/lib/ddtrace/ext/environment.rb +0 -14
  945. data/lib/ddtrace/ext/errors.rb +0 -10
  946. data/lib/ddtrace/ext/forced_tracing.rb +0 -25
  947. data/lib/ddtrace/ext/http.rb +0 -46
  948. data/lib/ddtrace/ext/manual_tracing.rb +0 -9
  949. data/lib/ddtrace/ext/metrics.rb +0 -15
  950. data/lib/ddtrace/ext/net.rb +0 -10
  951. data/lib/ddtrace/ext/priority.rb +0 -16
  952. data/lib/ddtrace/ext/runtime.rb +0 -26
  953. data/lib/ddtrace/ext/sampling.rb +0 -16
  954. data/lib/ddtrace/ext/sql.rb +0 -8
  955. data/lib/ddtrace/ext/transport.rb +0 -17
  956. data/lib/ddtrace/forced_tracing.rb +0 -36
  957. data/lib/ddtrace/logger.rb +0 -40
  958. data/lib/ddtrace/metrics.rb +0 -222
  959. data/lib/ddtrace/monkey.rb +0 -58
  960. data/lib/ddtrace/opentelemetry/extensions.rb +0 -13
  961. data/lib/ddtrace/opentelemetry/span.rb +0 -33
  962. data/lib/ddtrace/opentracer/binary_propagator.rb +0 -24
  963. data/lib/ddtrace/opentracer/carrier.rb +0 -6
  964. data/lib/ddtrace/opentracer/distributed_headers.rb +0 -52
  965. data/lib/ddtrace/opentracer/global_tracer.rb +0 -15
  966. data/lib/ddtrace/opentracer/propagator.rb +0 -22
  967. data/lib/ddtrace/opentracer/rack_propagator.rb +0 -60
  968. data/lib/ddtrace/opentracer/scope.rb +0 -15
  969. data/lib/ddtrace/opentracer/scope_manager.rb +0 -6
  970. data/lib/ddtrace/opentracer/span.rb +0 -98
  971. data/lib/ddtrace/opentracer/span_context.rb +0 -14
  972. data/lib/ddtrace/opentracer/span_context_factory.rb +0 -23
  973. data/lib/ddtrace/opentracer/text_map_propagator.rb +0 -75
  974. data/lib/ddtrace/opentracer/thread_local_scope.rb +0 -30
  975. data/lib/ddtrace/opentracer/thread_local_scope_manager.rb +0 -40
  976. data/lib/ddtrace/opentracer/tracer.rb +0 -208
  977. data/lib/ddtrace/opentracer.rb +0 -40
  978. data/lib/ddtrace/patcher.rb +0 -47
  979. data/lib/ddtrace/pin.rb +0 -114
  980. data/lib/ddtrace/pipeline/span_filter.rb +0 -38
  981. data/lib/ddtrace/pipeline/span_processor.rb +0 -20
  982. data/lib/ddtrace/pipeline.rb +0 -46
  983. data/lib/ddtrace/propagation/grpc_propagator.rb +0 -61
  984. data/lib/ddtrace/propagation/http_propagator.rb +0 -75
  985. data/lib/ddtrace/quantization/hash.rb +0 -103
  986. data/lib/ddtrace/quantization/http.rb +0 -86
  987. data/lib/ddtrace/runtime/cgroup.rb +0 -44
  988. data/lib/ddtrace/runtime/class_count.rb +0 -17
  989. data/lib/ddtrace/runtime/container.rb +0 -73
  990. data/lib/ddtrace/runtime/gc.rb +0 -16
  991. data/lib/ddtrace/runtime/identity.rb +0 -41
  992. data/lib/ddtrace/runtime/metrics.rb +0 -96
  993. data/lib/ddtrace/runtime/object_space.rb +0 -19
  994. data/lib/ddtrace/runtime/socket.rb +0 -14
  995. data/lib/ddtrace/runtime/thread_count.rb +0 -16
  996. data/lib/ddtrace/sampler.rb +0 -290
  997. data/lib/ddtrace/sampling/matcher.rb +0 -57
  998. data/lib/ddtrace/sampling/rate_limiter.rb +0 -127
  999. data/lib/ddtrace/sampling/rule.rb +0 -61
  1000. data/lib/ddtrace/sampling/rule_sampler.rb +0 -125
  1001. data/lib/ddtrace/sampling.rb +0 -2
  1002. data/lib/ddtrace/span.rb +0 -297
  1003. data/lib/ddtrace/sync_writer.rb +0 -67
  1004. data/lib/ddtrace/tracer.rb +0 -432
  1005. data/lib/ddtrace/utils/database.rb +0 -25
  1006. data/lib/ddtrace/utils/time.rb +0 -14
  1007. data/lib/ddtrace/utils.rb +0 -65
  1008. data/lib/ddtrace/vendor/active_record/connection_specification.rb +0 -301
  1009. data/lib/ddtrace/worker.rb +0 -20
  1010. data/lib/ddtrace/workers/async.rb +0 -165
  1011. data/lib/ddtrace/workers/loop.rb +0 -105
  1012. data/lib/ddtrace/workers/polling.rb +0 -48
  1013. data/lib/ddtrace/workers/queue.rb +0 -39
  1014. data/lib/ddtrace/workers/runtime_metrics.rb +0 -47
  1015. data/lib/ddtrace/workers/trace_writer.rb +0 -199
  1016. data/lib/ddtrace/workers.rb +0 -117
  1017. data/lib/ddtrace/writer.rb +0 -154
  1018. data/tasks/release_gem.rake +0 -28
data/CHANGELOG.md CHANGED
@@ -2,6 +2,797 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.1.0] - 2022-05-25
6
+
7
+ ### Added
8
+
9
+ * [Application Security Monitoring](https://docs.datadoghq.com/security_platform/application_security/)
10
+ * Elasticsearch: v8.0 support ([#1985][])
11
+ * Sidekiq: Quantize args ([#1972][]) ([@dudo][])
12
+ * Profiling: Add libddprof dependency to power the new Ruby profiler ([#2028][])
13
+ * Helper to easily enable core dumps ([#2010][])
14
+
15
+ ### Changed
16
+
17
+ * Support spaces in environment variable DD_TAGS ([#2011][])
18
+
19
+ ### Fixed
20
+
21
+ * Fix "circular require considered harmful" warnings ([#1998][])
22
+ * Logging: Change ddsource to a scalar value ([#2022][])
23
+ * Improve exception logging ([#1992][])
24
+
25
+ ## [1.0.0] - 2022-04-28
26
+
27
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0
28
+
29
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta2...v1.0.0
30
+
31
+ Diff since last stable release: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0
32
+
33
+ ### Added
34
+
35
+ - GraphQL 2.0 support ([#1982][])
36
+
37
+ ### Changed
38
+
39
+ - AppSec: Update libddwaf to 1.3.0 ([#1981][])
40
+
41
+ ### Fixed
42
+
43
+ - Rails log correlation ([#1989][]) ([@cwoodcox][])
44
+ - Resource not inherited from lazily annotated spans ([#1983][])
45
+ - AppSec: Query address for libddwaf ([#1990][])
46
+
47
+ ### Refactored
48
+
49
+ - Docs: Add undocumented Rake option ([#1980][]) ([@ecdemis123][])
50
+ - Improvements to test suite & CI ([#1970][], [#1974][], [#1991][])
51
+ - Improvements to documentation ([#1984][])
52
+
53
+ ## [1.0.0.beta2] - 2022-04-14
54
+
55
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta2
56
+
57
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2
58
+
59
+ ### Added
60
+
61
+ - Ruby 3.1 & 3.2 support ([#1975][], [#1955][])
62
+ - Trace tag API ([#1959][])
63
+
64
+ ### Changed
65
+
66
+ - Access to configuration settings is namespaced ([#1922][])
67
+ - AWS provides metrics by default ([#1976][]) ([@dudo][])
68
+ - Update `debase-ruby_core_source` version ([#1964][])
69
+ - Profiling: Hide symbols/functions in native extension ([#1968][])
70
+ - Profiling: Renamed code_provenance.json to code-provenance.json ([#1919][])
71
+ - AppSec: Update libddwaf to v1.2.1 ([#1942][])
72
+ - AppSec: Update rulesets to v1.3.1 ([#1965][], [#1961][], [#1937][])
73
+ - AppSec: Avoid exception on missing ruleset file ([#1948][])
74
+ - AppSec: Env var consistency ([#1938][])
75
+
76
+ ### Fixed
77
+
78
+ - Rake instrumenting while disabled ([#1940][], [#1945][])
79
+ - Grape instrumenting while disabled ([#1940][], [#1943][])
80
+ - CI: require 'datadog/ci' not loading dependencies ([#1911][])
81
+ - CI: RSpec shared example file names ([#1816][]) ([@Drowze][])
82
+ - General documentation improvements ([#1958][], [#1933][], [#1927][])
83
+ - Documentation fixes & improvements to 1.0 upgrade guide ([#1956][], [#1973][], [#1939][], [#1914][])
84
+
85
+ ### Removed
86
+
87
+ - OpenTelemetry extensions (Use [OTLP](https://docs.datadoghq.com/tracing/setup_overview/open_standards/#otlp-ingest-in-datadog-agent) instead) ([#1917][])
88
+
89
+ ### Refactored
90
+
91
+ - Agent settings resolver logic ([#1930][], [#1931][], [#1932][])
92
+
93
+ ## [1.0.0.beta1] - 2022-02-15
94
+
95
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta1
96
+
97
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1
98
+
99
+ See https://github.com/DataDog/dd-trace-rb/blob/v1.0.0.beta1/docs/UpgradeGuide.md.
100
+
101
+ ## [0.54.2] - 2022-01-18
102
+
103
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.2
104
+
105
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.1...v0.54.2
106
+
107
+ ### Changed
108
+
109
+ - Bump `debase-ruby_core_source` dependency version; also allow older versions to be used ([#1798][], [#1829][])
110
+ - Profiler: Reduce impact of reporting data in multi-process applications ([#1807][])
111
+ - Profiler: Update API used to report data to backend ([#1820][])
112
+
113
+ ### Fixed
114
+
115
+ - Gracefully handle installation on environments where Ruby JIT seems to be available but is actually broken ([#1801][])
116
+
117
+ ## [0.54.1] - 2021-11-30
118
+
119
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.1
120
+
121
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...v0.54.1
122
+
123
+ ### Fixed
124
+
125
+ - Skip building profiling native extension when Ruby has been compiled without JIT ([#1774][], [#1776][])
126
+
127
+ ## [0.54.0] - 2021-11-17
128
+
129
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.0
130
+
131
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
132
+
133
+ ### Added
134
+
135
+ - MongoDB service name resolver when using multi cluster ([#1423][]) ([@skcc321][])
136
+ - Service name override for ActiveJob in Rails configuration ([#1703][], [#1770][]) ([@hatstand][])
137
+ - Profiler: Expose profile duration and start to the UI ([#1709][])
138
+ - Profiler: Gather CPU time without monkey patching Thread ([#1735][], [#1740][])
139
+ - Profiler: Link profiler samples to individual web requests ([#1688][])
140
+ - Profiler: Capture threads with empty backtrace ([#1719][])
141
+ - CI-App: Memoize environment tags to improve performance ([#1762][])
142
+ - CI-App: `test.framework_version` tag for rspec and cucumber ([#1713][])
143
+
144
+ ### Changed
145
+
146
+ - Set minimum version of dogstatsd-ruby 5 series to 5.3 ([#1717][])
147
+ - Use USER_KEEP/USER_REJECT for RuleSampler decisions ([#1769][])
148
+
149
+ ### Fixed
150
+
151
+ - "private method `ruby2_keywords' called" errors ([#1712][], [#1714][])
152
+ - Configuration warning when Agent port is a String ([#1720][])
153
+ - Ensure internal trace buffer respects its maximum size ([#1715][])
154
+ - Remove erroneous maximum resque version support ([#1761][])
155
+ - CI-App: Environment variables parsing precedence ([#1745][], [#1763][])
156
+ - CI-App: GitHub Metadata Extraction ([#1771][])
157
+ - Profiler: Missing thread id for natively created threads ([#1718][])
158
+ - Docs: Active Job integration example code ([#1721][]) ([@y-yagi][])
159
+
160
+ ### Refactored
161
+
162
+ - Redis client patch to use prepend ([#1743][]) ([@justinhoward][])
163
+
164
+ ## [0.53.0] - 2021-10-06
165
+
166
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.53.0
167
+
168
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
169
+
170
+ ### Added
171
+
172
+ - ActiveJob integration ([#1639][]) ([@bensheldon][])
173
+ - Instrument Action Cable subscribe/unsubscribe hooks ([#1674][]) ([@agrobbin][])
174
+ - Instrument Sidekiq server internal events (heartbeat, job fetch, and scheduled push) ([#1685][]) ([@agrobbin][])
175
+ - Correlate Active Job logs to the active DataDog trace ([#1694][]) ([@agrobbin][])
176
+ - Runtime Metrics: Global VM cache statistics ([#1680][])
177
+ - Automatically send traces to agent Unix socket if present ([#1700][])
178
+ - CI-App: User Provided Git Metadata ([#1662][])
179
+ - ActionMailer integration ([#1280][])
180
+
181
+ ### Changed
182
+
183
+ - Profiler: Set Sinatra resource setting at beginning of request and delay setting fallback resource ([#1628][])
184
+ - Profiler: Use most recent event for trace resource name ([#1695][])
185
+ - Profiler: Limit number of threads per sample ([#1699][])
186
+ - Profiler: Rename `extract_trace_resource` to `endpoint.collection.enabled` ([#1702][])
187
+
188
+ ### Fixed
189
+
190
+ - Capture Rails exception before default error page is rendered ([#1684][])
191
+ - `NoMethodError` in sinatra integration when Tracer middleware is missing ([#1643][], [#1644][]) ([@mscrivo][])
192
+ - CI-App: Require `rspec-core` for RSpec integration ([#1654][]) ([@elliterate][])
193
+ - CI-App: Use the merge request branch on merge requests ([#1687][]) ([@carlallen][])
194
+ - Remove circular dependencies. ([#1668][]) ([@saturnflyer][])
195
+ - Links in the Table of Contents ([#1661][]) ([@chychkan][])
196
+ - CI-App: Fix CI Visibility Spec Tests ([#1706][])
197
+
198
+ ### Refactored
199
+
200
+ - Profiler: pprof encoding benchmark and improvements ([#1511][])
201
+
202
+ ## [0.52.0] - 2021-08-09
203
+
204
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.52.0
205
+
206
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
207
+
208
+ ### Added
209
+
210
+ - Add Sorbet typechecker to dd-trace-rb ([#1607][])
211
+
212
+ Note that no inline type signatures were added, to avoid a hard dependency on sorbet.
213
+
214
+ - Profiler: Add support for annotating profiler stacks with the resource of the active web trace, if any ([#1623][])
215
+
216
+ Note that this data is not yet visible on the profiling interface.
217
+
218
+ - Add error_handler option to GRPC tracer configuration ([#1583][]) ([@fteem][])
219
+ - User-friendly handling of slow submissions on shutdown ([#1601][])
220
+ - Profiler: Add experimental toggle to disable the profiling native extension ([#1594][])
221
+ - Profiler: Bootstrap profiling native extension ([#1584][])
222
+
223
+ ### Changed
224
+
225
+ - Profiler: Profiling data is no longer reported when there's less than 1 second of data to report ([#1630][])
226
+ - Move Grape span resource setting to beginning of request ([#1629][])
227
+ - Set resource in Sinatra spans at the beginning of requests, and delay setting fallback resource to end of requests ([#1628][])
228
+ - Move Rails span resource setting to beginning of request ([#1626][])
229
+ - Make registry a global constant repository ([#1572][])
230
+ - Profiler: Remove automatic agentless support ([#1590][])
231
+
232
+ ### Fixed
233
+
234
+ - Profiler: Fix CPU-time accounting in Profiling when fibers are used ([#1636][])
235
+ - Don't set peer.service tag on grpc.server spans ([#1632][])
236
+ - CI-App: Fix GitHub actions environment variable extraction ([#1622][])
237
+ - Additional Faraday 1.4+ cgroup parsing formats ([#1595][])
238
+ - Avoid shipping development cruft files in gem releases ([#1585][])
239
+
240
+ ## [0.51.1] - 2021-07-13
241
+
242
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.1
243
+
244
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
245
+
246
+ ### Fixed
247
+
248
+ - AWS-SDK instrumentation without `aws-sdk-s3` ([#1592][])
249
+
250
+ ## [0.51.0] - 2021-07-12
251
+
252
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.0
253
+
254
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
255
+
256
+ ### Added
257
+
258
+ - Semantic Logger trace correlation injection ([#1566][])
259
+ - New and improved Lograge trace correlation injection ([#1555][])
260
+ - Profiler: Start profiler on `ddtrace/auto_instrument`
261
+ - CI-App: Add runtime and OS information ([#1587][])
262
+ - CI-App: Read metadata from local git repository ([#1561][])
263
+
264
+ ### Changed
265
+
266
+ - Rename `Datadog::Runtime` to `Datadog::Core::Environment` ([#1570][])
267
+
268
+ As we prepare the `Datadog` Ruby namespace to better accommodate new products, we are moving a few internal modules to a different location to avoid conflicts.
269
+
270
+ None of the affected files are exposed publicly in our documentation, and they are only expected to be used internally and may change at any time, even between patch releases.
271
+
272
+ * The following modules have been moved:
273
+ ```ruby
274
+ Datadog::Runtime::Cgroup -> Datadog::Core::Environment::Cgroup
275
+ Datadog::Runtime::ClassCount -> Datadog::Core::Environment::ClassCount
276
+ Datadog::Runtime::Container -> Datadog::Core::Environment::Container
277
+ Datadog::Runtime::GC -> Datadog::Core::Environment::GC
278
+ Datadog::Runtime::Identity -> Datadog::Core::Environment::Identity
279
+ Datadog::Runtime::ObjectSpace -> Datadog::Core::Environment::ObjectSpace
280
+ Datadog::Runtime::Socket -> Datadog::Core::Environment::Socket
281
+ Datadog::Runtime::ThreadCount -> Datadog::Core::Environment::ThreadCount
282
+ ```
283
+ * Most constants from `Datadog::Ext::Runtime` have been moved to a new module: `Datadog::Core::Environment::Ext`.
284
+ - Skip CPU time instrumentation if logging gem is detected ([#1557][])
285
+
286
+ ### Fixed
287
+
288
+ - Initialize `dogstatsd-ruby` in single threaded mode ([#1576][])
289
+
290
+ This should alleviate any existing issues with `dogstatsd-ruby` resource leaks.
291
+
292
+ - Do not use configured `dogstatsd-ruby` instance when it's an incompatible version ([#1560][])
293
+ - Ensure tags with special Datadog processing are consistently serialized ([#1556][])
294
+ - Profiler: NameError during initialization ([#1552][])
295
+
296
+ ### Refactored
297
+ - Improvements to test suite & CI ([#1586][])
298
+ - Improvements to documentation ([#1397][])
299
+
300
+ ## [0.50.0] - 2021-06-07
301
+
302
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.50.0
303
+
304
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.49.0...v0.50.0
305
+
306
+ ### Added
307
+
308
+ - Add warning, update documentation, for incompatible dogstastd-ruby version ([#1544][][#1533][])
309
+ - Add CI mode and Test mode feature ([#1504][])
310
+ - Add Gem.loaded_specs fallback behavior if protobuf or dogstatsd-ruby already loaded([#1506][][#1510][])
311
+
312
+ ### Changed
313
+
314
+ - Declare EOL for Ruby 2.0 support ([#1534][])
315
+ - Rename Thread#native_thread_id to #pthread_thread_id to avoid conflict with Ruby 3.1 ([#1537][])
316
+
317
+ ### Fixed
318
+
319
+ - Fix tracer ignoring value for service tag (service.name) in DD_TAGS ([#1543][])
320
+ - Fix nested error reporting to correctly walk clause chain ([#1535][])
321
+ - Fix AWS integration to prevent S3 URL presigning from generating a remote request span ([#1494][])
322
+ - Fix backtrace handling of exception classes that return nil message ([#1500][]) ([@masato-hi][])
323
+
324
+ ### Refactored
325
+
326
+ - Cleanup Ruby 2.0 Code (dropping Ruby 2.0 support) ([#1529][][#1523][][#1524][][#1509][][#1507][][#1503][][#1502][])
327
+
328
+ ## [0.49.0] - 2021-05-12
329
+
330
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.49.0
331
+
332
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.48.0...v0.49.0
333
+
334
+ ### Added
335
+
336
+ - Add cause to error stack trace ([#1472][])
337
+
338
+ ### Changed
339
+
340
+ ### Fixed
341
+
342
+ - Prevent double initialization when auto instrumenting non-Rails applications ([#1497][])
343
+ - Support kwargs in Ruby 3.0 for sucker_punch ([#1495][]) ([@lloeki][])
344
+ - Fargate fixes and Container parsing for CGroups ([#1487][][#1480][][#1475][])
345
+ - Fix ActionPack instrumentation `#starts_with?` error([#1489][])
346
+ - Doc fixes ([#1473][]) ([@kexoth][])
347
+
348
+ ### Refactored
349
+
350
+ ## [0.48.0] - 2021-04-19
351
+
352
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.48.0
353
+
354
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
355
+
356
+ ### Added
357
+
358
+ - Makara support with ActiveRecord ([#1447][])
359
+ - `tag_body` configuration for Shoryuken ([#1449][]) ([@gkampjes][])
360
+
361
+ ### Changed
362
+
363
+ - Add deprecation warning for Ruby 2.0 support ([#1441][])
364
+
365
+ Support for Ruby 2.0 will be available up to release `0.49.x`, and dropped from release `0.50.0` and greater.
366
+ Users are welcome to continue using version `< 0.50.0` for their Ruby 2.0 deployments going forward.
367
+
368
+ - Auto instrument Resque workers by default ([#1400][])
369
+
370
+ ### Fixed
371
+
372
+ - Ensure DD_TRACE_SAMPLE_RATE enables full RuleSampler ([#1416][])
373
+ - Fix Fargate 1.4 container ID not being read ([#1457][])
374
+ - Correctly close all StatsD clients ([#1429][])
375
+
376
+ ### Refactored
377
+ - Improvements to test suite & CI ([#1421][], [#1435][], [#1445][], [#1453][], [#1456][], [#1461][])
378
+ - Improvements to documentation ([#1455][])
379
+
380
+ ## [0.47.0] - 2021-03-29
381
+
382
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.47.0
383
+
384
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
385
+
386
+ ### Added
387
+
388
+ - Document support for httpx integration ([#1396][]) ([@HoneyryderChuck][])
389
+ - Schemas to list of supported AWS services ([#1415][]) ([@tomgi][])
390
+ - Branch test coverage report ([#1343][])
391
+
392
+ ### Changed
393
+
394
+ - **BREAKING** Separate Resolver configuration and resolution steps ([#1319][])
395
+
396
+ ### ActiveRecord `describes` configuration now supports partial matching
397
+
398
+ Partial matching of connection fields (adapter, username, host, port, database) is now allowed. Previously, only an exact match of connections fields would be considered matching. This should help greatly simplify database configuration matching, as you will only need to provide enough fields to correctly separate your distinct database connections.
399
+
400
+ If you have a `c.use active_record, describe:` statement in your application that is currently not matching any connections, you might start seeing them match after this release.
401
+
402
+ `c.use active_record, describe:` statements that are currently matching a connection will continue to match that same connection.
403
+
404
+ You can refer to the [expanded ActiveSupport documentation for details on how to use the new partial matchers and configuration code examples](https://github.com/DataDog/dd-trace-rb/blob/0794be4cd455caf32e7a9c8f79d80a4b77c4087a/docs/GettingStarted.md#active-record).
405
+
406
+ ### `Datadog::Contrib::Configuration::Resolver` interface changed
407
+
408
+ The interface for `Datadog::Contrib::Configuration::Resolver` has changed: custom configuration resolvers that inherit from ``Datadog::Contrib::Configuration::Resolver`` will need be changed to fulfill the new interface. See [code documentation for `Datadog::Contrib::Configuration::Resolver` for specific API requirements](https://github.com/DataDog/dd-trace-rb/blob/0794be4cd455caf32e7a9c8f79d80a4b77c4087a/lib/ddtrace/contrib/configuration/resolver.rb).
409
+
410
+
411
+ - Remove type check from ThreadLocalContext#local. ([#1399][]) ([@orekyuu][])
412
+
413
+ ### Fixed
414
+
415
+ - Support for JRuby 9.2.0.0 ([#1409][])
416
+ - Failed integration message ([#1394][]) ([@e1senh0rn][])
417
+ - Addressed "warning: instance variable [@components][] not initialized" ([#1419][])
418
+ - Close /proc/self/cgroup file after reading ([#1414][])
419
+ - Improve internal "only once" behavior across the tracer ([#1398][])
420
+ - Increase thread-safety during tracer initialization ([#1418][])
421
+
422
+ ### Refactored
423
+
424
+ - Use MINIMUM_VERSION in resque compatible? check ([#1426][]) ([@mriddle][])
425
+ - Lint fixes for Rubocop 1.12.0 release ([#1430][])
426
+ - Internal tracer improvements ([#1403][])
427
+ - Improvements to test suite & CI ([#1334][], [#1379][], [#1393][], [#1406][], [#1408][], [#1412][], [#1417][], [#1420][], [#1422][], [#1427][], [#1428][], [#1431][], [#1432][])
428
+
429
+ ## [0.46.0] - 2021-03-03
430
+
431
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.46.0
432
+
433
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
434
+
435
+ ### Added
436
+
437
+ - Add EventBridge to supported AWS services ([#1368][]) ([@tomgi][])
438
+ - Add `time_now_provider` configuration option ([#1224][])
439
+ - This new option allows the span `start_time` and `end_time` to be configured in environments that change the default time provider, like with *Timecop*. More information in the [official documentation](https://docs.datadoghq.com/tracing/setup_overview/setup/ruby/#tracer-settings).
440
+ - Add name to background threads created by ddtrace ([#1366][])
441
+
442
+ ### Changed
443
+
444
+ - Rework RSpec instrumentation as separate traces for each test ([#1381][])
445
+
446
+ ### Fixed
447
+
448
+ - ArgumentError: wrong number of arguments (given 2, expected 0) due to concurrent `require` ([#1306][], [#1354][]) ([@EvNomad][])
449
+ - Fix Rails' deprecation warnings ([#1352][])
450
+ - Fully populate Rake span fields on exceptions ([#1377][])
451
+ - Fix a typo in `httpclient` integration ([#1365][]) ([@y-yagi][])
452
+ - Add missing license files for vendor'd code ([#1346][])
453
+
454
+ ### Refactored
455
+
456
+ - Improvements to test suite & CI ([#1277][], [#1305][], [#1336][], [#1350][], [#1353][], [#1357][], [#1367][], [#1369][], [#1370][], [#1371][], [#1374][], [#1380][])
457
+ - Improvements to documentation ([#1332][])
458
+
459
+ ### Removed
460
+
461
+ - Remove deprecated Datadog::Monkey ([#1341][])
462
+ - Remove deprecated Datadog::DeprecatedPin ([#1342][])
463
+ - Remove unused Shim/MethodWrapper/MethodWrapping ([#1347][])
464
+ - Remove APP_ANALYTICS from tests instrumentation ([#1378][]) ([@AdrianLC][])
465
+
466
+ ## [0.45.0] - 2021-01-26
467
+
468
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.45.0
469
+
470
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
471
+
472
+ ### Added
473
+
474
+ - Option to auto enable all instrumentations ([#1260][])
475
+ - httpclient support ([#1311][]) ([@agrobbin][])
476
+
477
+ ### Changed
478
+
479
+ - Promote request_queuing out of experimental ([#1320][])
480
+ - Safeguards around distributed HTTP propagator ([#1304][])
481
+ - Improvements to test integrations ([#1291][], [#1303][], [#1307][])
482
+
483
+ ### Refactored
484
+
485
+ - Direct object_id lookup for ActiveRecord connections ([#1317][])
486
+ - Avoid multiple parsing of Ethon URIs ([#1302][]) ([@callumj][])
487
+ - Improvements to test suite & CI ([#1309][], [#1318][], [#1321][], [#1323][], [#1325][], [#1331][])
488
+ - Improvements to documentation ([#1326][])
489
+
490
+ ## [0.44.0] - 2021-01-06
491
+
492
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.44.0
493
+
494
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
495
+
496
+ ### Added
497
+
498
+ - Ruby 3.0 support ([#1281][], [#1296][], [#1298][])
499
+ - Rails 6.1 support ([#1295][])
500
+ - Qless integration ([#1237][]) ([@sco11morgan][])
501
+ - AWS Textract service to AWS integration ([#1270][]) ([@Sticksword][])
502
+ - Ability to disable Redis argument capture ([#1276][]) ([@callumj][])
503
+ - Upload coverage report to Codecov ([#1289][])
504
+
505
+ ### Changed
506
+
507
+ - Reduce Runtime Metrics frequency to every 10 seconds ([#1269][])
508
+
509
+ ### Fixed
510
+
511
+ - Disambiguate resource names for Grape endpoints with shared paths ([#1279][]) ([@pzaich][])
512
+ - Remove invalid Jenkins URL from CI integration ([#1283][])
513
+
514
+ ### Refactored
515
+
516
+ - Reduce memory allocation when unnecessary ([#1273][], [#1275][]) ([@callumj][])
517
+ - Improvements to test suite & CI ([#847][], [#1256][], [#1257][], [#1266][], [#1272][], [#1277][], [#1278][], [#1284][], [#1286][], [#1287][], [#1293][], [#1299][])
518
+ - Improvements to documentation ([#1262][], [#1263][], [#1264][], [#1267][], [#1268][], [#1297][])
519
+
520
+ ## [0.43.0] - 2020-11-18
521
+
522
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.43.0
523
+
524
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
525
+
526
+ ### Added
527
+
528
+ - Background job custom error handlers ([#1212][]) ([@norbertnytko][])
529
+ - Add "multi" methods instrumentation for Rails cache ([#1217][]) ([@michaelkl][])
530
+ - Support custom error status codes for Grape ([#1238][])
531
+ - Cucumber integration ([#1216][])
532
+ - RSpec integration ([#1234][])
533
+ - Validation to `:on_error` argument on `Datadog::Tracer#trace` ([#1220][])
534
+
535
+ ### Changed
536
+
537
+ - Update `TokenBucket#effective_rate` calculation ([#1236][])
538
+
539
+ ### Fixed
540
+
541
+ - Avoid writer reinitialization during shutdown ([#1235][], [#1248][])
542
+ - Fix configuration multiplexing ([#1204][], [#1227][])
543
+ - Fix misnamed B3 distributed headers ([#1226][], [#1229][])
544
+ - Correct span type for AWS SDK ([#1233][])
545
+ - Correct span type for internal Pin on HTTP clients ([#1239][])
546
+ - Reset trace context after fork ([#1225][])
547
+
548
+ ### Refactored
549
+
550
+ - Improvements to test suite ([#1232][], [#1244][])
551
+ - Improvements to documentation ([#1243][], [#1218][]) ([@cjford][])
552
+
553
+ ### Removed
554
+
555
+ ## [0.42.0] - 2020-10-21
556
+
557
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
558
+
559
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
560
+
561
+ ### Added
562
+
563
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
564
+
565
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
566
+
567
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
568
+
569
+ - Access active correlation by Thread ([#1200][])
570
+
571
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
572
+
573
+ ### Changed
574
+
575
+ ### Fixed
576
+
577
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
578
+
579
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
580
+
581
+ ### Refactored
582
+
583
+ - Refactor Trace buffer into multiple components ([#1195][])
584
+
585
+ ## [0.41.0] - 2020-09-30
586
+
587
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.41.0
588
+
589
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
590
+
591
+ ### Added
592
+
593
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
594
+
595
+ ### Changed
596
+
597
+ - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics ([#934][], [#935][], [#1180][])
598
+ - This helps support the way runtime metrics are associated with spans in the UI.
599
+ - Faster TraceBuffer for CRuby ([#1172][])
600
+ - Reduce memory usage during gem startup ([#1090][])
601
+ - Reduce memory usage of the HTTP transport ([#1165][])
602
+
603
+ ### Fixed
604
+
605
+ - Improved prepared statement support for Sequel integrations ([#1186][])
606
+ - Fix Sequel instrumentation when executing literal strings ([#1185][]) ([@matchbookmac][])
607
+ - Remove explicit `Logger` class verification ([#1181][]) ([@bartekbsh][])
608
+ - This allows users to pass in a custom logger that does not inherit from `Logger` class.
609
+ - Correct tracer buffer metric counting ([#1182][])
610
+ - Fix Span#pretty_print for empty duration ([#1183][])
611
+
612
+ ### Refactored
613
+
614
+ - Improvements to test suite & CI ([#1179][], [#1184][], [#1177][], [#1178][], [#1176][])
615
+ - Reduce generated Span ID range to fit in Fixnum ([#1189][])
616
+
617
+ ## [0.40.0] - 2020-09-08
618
+
619
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.40.0
620
+
621
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
622
+
623
+ ### Added
624
+
625
+ - Rails `log_injection` option to auto enable log correlation ([#1157][])
626
+ - Que integration ([#1141][], [#1146][]) ([@hs-bguven][])
627
+ - `Components#startup!` hook ([#1151][])
628
+ - Code coverage report ([#1159][])
629
+ - Every commit now has a `coverage` CI step that contains the code coverage report. This report can be found in the `Artifacts` tab of that CI step, under `coverage/index.html`.
630
+
631
+ ### Changed
632
+
633
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
634
+
635
+ ### Fixed
636
+
637
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
638
+
639
+ * **BREAKING** for nested modular Sinatra applications only:
640
+ ```ruby
641
+ class Nested < Sinatra::Base
642
+ end
643
+
644
+ class TopLevel < Sinatra::Base
645
+ use Nested # Nesting happens here
646
+ end
647
+ ```
648
+ * Non-breaking for classic applications nor modular non-nested applications.
649
+
650
+ Fixes issues introduced by [#1015][] (in 0.35.0), when we first introduced Sinatra support for modular applications.
651
+
652
+ The main issue we had to solve for modular support is how to handle nested applications, as only one application is actually responsible for handling the route. A naive implementation would cause the creation of nested `sinatra.request` spans, even for applications that did not handle the request. This is technically correct, as Sinatra is traversing that middleware, accruing overhead, but that does not aligned with our existing behavior of having a single `sinatra.request` span.
653
+
654
+ While trying to achieve backwards-compatibility, we had to resort to a solution that turned out brittle: `sinatra.request` spans had to start in one middleware level and finished it in another. This allowed us to only capture the `sinatra.request` for the matching route, and skip the non-matching one. This caused unexpected issues on some user setups, specially around Sinatra middleware that created spans in between the initialization and closure of `sinatra.request` spans.
655
+
656
+ This change now address these implementation issues by creating multiple `sinatra.request`, one for each traversed Sinatra application, even non-matching ones. This instrumentation is more correct, but at the cost of being a breaking change for nested modular applications.
657
+
658
+ Please see [#1145][] for more information, and example screenshots on how traces for affected applications will look like.
659
+
660
+ - Rack/Rails span error propagation with `rescue_from` ([#1155][], [#1162][])
661
+ - Prevent logger recursion during startup ([#1158][])
662
+ - Race condition on new worker classes ([#1154][])
663
+ - These classes represent future work, and not being used at the moment.
664
+
665
+ ### Refactored
666
+
667
+ - Run CI tests in parallel ([#1156][])
668
+ - Migrate minitest tests to RSpec ([#1127][], [#1128][], [#1133][], [#1149][], [#1152][], [#1153][])
669
+ - Improvements to test suite ([#1134][], [#1148][], [#1163][])
670
+ - Improvements to documentation ([#1138][])
671
+
672
+ ### Removed
673
+
674
+ - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life ([#1137][])**
675
+ - GitLab status check when not applicable ([#1160][])
676
+ - Allows for PRs pass all status checks once again. Before this change, a `dd-gitlab/copy_to_s3` check would never leave the "Pending" status. This check tracks the deployment of a commit to an internal testing platform, which currently only happens on `master` branch or when manually triggered internally.
677
+
678
+ ## [0.39.0] - 2020-08-05
679
+
680
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.39.0
681
+
682
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
683
+
684
+ ### Added
685
+
686
+ - JRuby 9.2 support ([#1126][])
687
+ - Sneakers integration ([#1121][]) ([@janz93][])
688
+
689
+ ### Changed
690
+
691
+ - Consistent environment variables across languages ([#1115][])
692
+ - Default logger level from WARN to INFO ([#1120][]) ([@gingerlime][])
693
+ - This change also reduces the startup environment log message to INFO level ([#1104][])
694
+
695
+ ### Fixed
696
+
697
+ - HTTP::StateError on error responses for http.rb ([#1116][], [#1122][]) ([@evan-waters][])
698
+ - Startup log error when using the test adapter ([#1125][], [#1131][]) ([@benhutton][])
699
+ - Warning message for Faraday < 1.0 ([#1129][]) ([@fledman][], [@tjwp][])
700
+ - Propagate Rails error message to Rack span ([#1124][])
701
+
702
+ ### Refactored
703
+
704
+ - Improved ActiveRecord documentation ([#1119][])
705
+ - Improvements to test suite ([#1105][], [#1118][])
706
+
707
+ ## [0.38.0] - 2020-07-13
708
+
709
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.38.0
710
+
711
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
712
+
713
+ ### Added
714
+
715
+ - http.rb integration ([#529][], [#853][])
716
+ - Kafka integration ([#1070][]) ([@tjwp][])
717
+ - Span#set_tags ([#1081][]) ([@DocX][])
718
+ - retry_count tag for Sidekiq jobs ([#1089][]) ([@elyalvarado][])
719
+ - Startup environment log ([#1104][], [#1109][])
720
+ - DD_SITE and DD_API_KEY configuration ([#1107][])
721
+
722
+ ### Changed
723
+
724
+ - Auto instrument Faraday default connection ([#1057][])
725
+ - Sidekiq client middleware is now the same for client and server ([#1099][]) ([@drcapulet][])
726
+ - Single pass SpanFilter ([#1071][]) ([@tjwp][])
727
+
728
+ ### Fixed
729
+
730
+ - Ensure fatal exceptions are propagated ([#1100][])
731
+ - Respect child_of: option in Tracer#trace ([#1082][]) ([@DocX][])
732
+ - Improve Writer thread safety ([#1091][]) ([@fledman][])
733
+
734
+ ### Refactored
735
+
736
+ - Improvements to test suite ([#1092][], [#1103][])
737
+
738
+ ## [0.37.0] - 2020-06-24
739
+
740
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.37.0
741
+
742
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
743
+
744
+ ### Refactored
745
+
746
+ - Documentation improvements regarding Datadog Agent defaults ([#1074][]) ([@cswatt][])
747
+ - Improvements to test suite ([#1043][], [#1051][], [#1062][], [#1075][], [#1076][], [#1086][])
748
+
749
+ ### Removed
750
+
751
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
752
+ - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
753
+ - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
754
+
755
+ A reference to a tracer instance cannot be stored as it will be replaced by a new instance during reconfiguration.
756
+
757
+ Retrieving the global tracer instance, by invoking `Datadog.tracer`, is the only safe mechanism to acquire the active tracer instance.
758
+
759
+ 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.
760
+
761
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
762
+ - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
763
+ - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
764
+ - This removal is a continuation of [#1079][] above, thus carrying the same rationale.
765
+
766
+ ### Migration
767
+
768
+ - Remove `tracer` argument provided to integrations (e.g. `c.use :rails, tracer: ...`).
769
+ - Remove `tracer` argument provided to `Pin` or `DeprecatedPin` initializers (e.g. `Pin.new(service, tracer: ...)`).
770
+ - If you require a custom tracer instance, use a global instance configuration:
771
+ ```ruby
772
+ Datadog.configure do |c|
773
+ c.tracer.instance = custom_tracer
774
+ end
775
+ ```
776
+
777
+ ## [0.36.0] - 2020-05-27
778
+
779
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.36.0
780
+
781
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
782
+
783
+ ### Changed
784
+
785
+ - Prevent trace components from being re-initialized multiple times during setup ([#1037][])
786
+
787
+ ### Fixed
788
+
789
+ - Allow Rails patching if Railties are loaded ([#993][], [#1054][]) ([@mustela][], [@bheemreddy181][], [@vramaiah][])
790
+ - Pin delegates to default tracer unless configured ([#1041][])
791
+
792
+ ### Refactored
793
+
794
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
795
+
5
796
  ## [0.35.2] - 2020-05-08
6
797
 
7
798
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.2
@@ -10,8 +801,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
10
801
 
11
802
  ### Fixed
12
803
 
13
- - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
14
- - `Datadog.configure` forcing all options to eager load (#1032, #1034) (@kelvin-acosta)
804
+ - Internal tracer HTTP requests generating traces ([#1030][], [#1033][]) ([@gingerlime][])
805
+ - `Datadog.configure` forcing all options to eager load ([#1032][], [#1034][]) ([@kelvin-acosta][])
15
806
 
16
807
  ## [0.35.1] - 2020-05-05
17
808
 
@@ -21,7 +812,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
21
812
 
22
813
  ### Fixed
23
814
 
24
- - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
815
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
25
816
 
26
817
  ## [0.35.0] - 2020-04-29
27
818
 
@@ -31,28 +822,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
31
822
 
32
823
  ### Added
33
824
 
34
- - Chunk large trace payloads before flushing (#818, #840)
35
- - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
36
- - active_job support for Resque (#991) (@stefanahman, @psycholein)
37
- - JRuby 9.2 to CI test matrix (#995)
38
- - `TraceWriter` and `AsyncTraceWriter` workers (#986)
39
- - Runtime metrics worker (#988)
825
+ - Chunk large trace payloads before flushing ([#818][], [#840][])
826
+ - Support for Sinatra modular apps ([#486][], [#913][], [#1015][]) ([@jpaulgs][], [@tomasv][], [@ZimbiX][])
827
+ - active_job support for Resque ([#991][]) ([@stefanahman][], [@psycholein][])
828
+ - JRuby 9.2 to CI test matrix ([#995][])
829
+ - `TraceWriter` and `AsyncTraceWriter` workers ([#986][])
830
+ - Runtime metrics worker ([#988][])
40
831
 
41
832
  ### Changed
42
833
 
43
- - Populate env, service, and version from tags (#1008)
44
- - Extract components from configuration (#996)
45
- - Extract logger to components (#997)
46
- - Extract runtime metrics worker from `Writer` (#1004)
47
- - Improvements to Faraday documentation (#1005)
834
+ - Populate env, service, and version from tags ([#1008][])
835
+ - Extract components from configuration ([#996][])
836
+ - Extract logger to components ([#997][])
837
+ - Extract runtime metrics worker from `Writer` ([#1004][])
838
+ - Improvements to Faraday documentation ([#1005][])
48
839
 
49
840
  ### Fixed
50
841
 
51
- - Runtime metrics not starting after #write (#1010)
842
+ - Runtime metrics not starting after #write ([#1010][])
52
843
 
53
844
  ### Refactored
54
845
 
55
- - Improvements to test suite (#842, #1006, #1009)
846
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
56
847
 
57
848
  ## [0.34.2] - 2020-04-09
58
849
 
@@ -62,7 +853,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
62
853
 
63
854
  ### Changed
64
855
 
65
- - Revert Rails applications setting default `env` if none are configured. (#1000) (@errriclee)
856
+ - Revert Rails applications setting default `env` if none are configured. ([#1000][]) ([@errriclee][])
66
857
 
67
858
  ## [0.34.1] - 2020-04-02
68
859
 
@@ -72,11 +863,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
72
863
 
73
864
  ### Changed
74
865
 
75
- - Rails applications set default `service` and `env` if none are configured. (#990)
866
+ - Rails applications set default `service` and `env` if none are configured. ([#990][])
76
867
 
77
868
  ### Fixed
78
869
 
79
- - Some configuration settings not applying (#989, #990) (@rahul342)
870
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
80
871
 
81
872
  ## [0.34.0] - 2020-03-31
82
873
 
@@ -86,18 +877,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
86
877
 
87
878
  ### Added
88
879
 
89
- - `Datadog::Event` for simple pub-sub messaging (#972)
90
- - `Datadog::Workers` for trace writing (#969, #973)
91
- - `_dd.measured` tag to some integrations for more statistics (#974)
92
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
93
- - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations (#882, #953) (@stormsilver)
880
+ - `Datadog::Event` for simple pub-sub messaging ([#972][])
881
+ - `Datadog::Workers` for trace writing ([#969][], [#973][])
882
+ - `_dd.measured` tag to some integrations for more statistics ([#974][])
883
+ - `env`, `service`, `version`, `tags` configuration for auto-tagging ([#977][], [#980][], [#982][], [#983][], [#985][])
884
+ - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations ([#882][], [#953][]) ([@stormsilver][])
94
885
 
95
886
  ### Fixed
96
887
 
97
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
98
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
99
- - Presto configuration (#975)
100
- - Test suite issues (#981)
888
+ - Runtime metrics configuration dropping with new writer ([#967][], [#968][]) ([@ericmustin][])
889
+ - Faraday "unexpected middleware" warnings on v0.x ([#965][], [#971][])
890
+ - Presto configuration ([#975][])
891
+ - Test suite issues ([#981][])
101
892
 
102
893
  ## [0.33.1] - 2020-03-09
103
894
 
@@ -107,7 +898,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
107
898
 
108
899
  ### Fixed
109
900
 
110
- - NoMethodError when activating instrumentation for non-existent library (#964, #966) (@roccoblues, @brafales)
901
+ - NoMethodError when activating instrumentation for non-existent library ([#964][], [#966][]) ([@roccoblues][], [@brafales][])
111
902
 
112
903
  ## [0.33.0] - 2020-03-05
113
904
 
@@ -117,27 +908,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
117
908
 
118
909
  ### Added
119
910
 
120
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
121
- - Sidekiq job argument tagging (#933) (@mantrala)
122
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
123
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
124
- - Setter/reset behavior for configuration options (#957)
125
- - Priority sampling rate tag (#891)
911
+ - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) ([#775][], [#920][], [#961][]) ([@ahammel][], [@ericmustin][])
912
+ - Sidekiq job argument tagging ([#933][]) ([@mantrala][])
913
+ - Support for multiple Redis services ([#861][], [#937][], [#940][]) ([@mberlanda][])
914
+ - Support for Sidekiq w/ Delayed extensions ([#798][], [#942][]) ([@joeyAghion][])
915
+ - Setter/reset behavior for configuration options ([#957][])
916
+ - Priority sampling rate tag ([#891][])
126
917
 
127
918
  ### Changed
128
919
 
129
- - Enforced minimum version requirements for instrumentation (#944)
130
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
131
- - Relaxed Rack minimum version to 1.1.0 (#952)
920
+ - Enforced minimum version requirements for instrumentation ([#944][])
921
+ - RubyGems minimum version requirement 2.0.0 ([#954][]) ([@Joas1988][])
922
+ - Relaxed Rack minimum version to 1.1.0 ([#952][])
132
923
 
133
924
  ### Fixed
134
925
 
135
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
136
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
137
- - Runtime metrics accumulating service names when disabled (#956)
138
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
139
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
140
- - Various test suite issues (#930, #932, #951, #960)
926
+ - AWS instrumentation patching when AWS is partially loaded ([#938][], [#945][]) ([@letiesperon][], [@illdelph][])
927
+ - NoMethodError for RuleSampler with priority sampling ([#949][], [#950][]) ([@BabyGroot][])
928
+ - Runtime metrics accumulating service names when disabled ([#956][])
929
+ - Sidekiq instrumentation incompatibility with Rails 6.0.2 ([#943][], [#947][]) ([@pj0tr][])
930
+ - Documentation tweaks ([#948][], [#955][]) ([@mstruve][], [@link04][])
931
+ - Various test suite issues ([#930][], [#932][], [#951][], [#960][])
141
932
 
142
933
  ## [0.32.0] - 2020-01-22
143
934
 
@@ -147,18 +938,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
147
938
 
148
939
  ### Added
149
940
 
150
- - New transport: Datadog::Transport::IO (#910)
151
- - Dual License (#893, #921)
941
+ - New transport: Datadog::Transport::IO ([#910][])
942
+ - Dual License ([#893][], [#921][])
152
943
 
153
944
  ### Changed
154
945
 
155
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
156
- - RuleSampler is now the default sampler; no behavior changes by default (#917)
946
+ - Improved annotation of `net/http` spans during exception ([#888][], [#907][]) ([@djmb][], [@ericmustin][])
947
+ - RuleSampler is now the default sampler; no behavior changes by default ([#917][])
157
948
 
158
949
  ### Refactored
159
950
 
160
- - Improved support for multiple tracer instances (#919)
161
- - Improvements to test suite (#909, #928, #929)
951
+ - Improved support for multiple tracer instances ([#919][])
952
+ - Improvements to test suite ([#909][], [#928][], [#929][])
162
953
 
163
954
  ## [0.31.1] - 2020-01-15
164
955
 
@@ -168,13 +959,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
168
959
 
169
960
  ### Fixed
170
961
 
171
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
172
- - Fix references to Datadog::Tracer.log (#912)
173
- - Ensure http.status_code tag is always a string (#927)
962
+ - Implement SyncWriter#stop method ([#914][], [#915][]) ([@Yurokle][])
963
+ - Fix references to Datadog::Tracer.log ([#912][])
964
+ - Ensure http.status_code tag is always a string ([#927][])
174
965
 
175
966
  ### Refactored
176
967
 
177
- - Improvements to test suite & CI (#911, #918)
968
+ - Improvements to test suite & CI ([#911][], [#918][])
178
969
 
179
970
  ## [0.31.0] - 2020-01-07
180
971
 
@@ -184,27 +975,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
184
975
 
185
976
  ### Added
186
977
 
187
- - Ruby 2.7 support (#805, #896)
188
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
189
- - Faraday 1.0 support (#906)
190
- - Set resource for Rails template spans (#855, #881) (@djmb)
191
- - at_exit hook for graceful Tracer shutdown (#884)
192
- - Environment variables to configure RuleSampler defaults (#892)
978
+ - Ruby 2.7 support ([#805][], [#896][])
979
+ - ActionCable integration ([#132][], [#824][]) ([@renchap][], [@ericmustin][])
980
+ - Faraday 1.0 support ([#906][])
981
+ - Set resource for Rails template spans ([#855][], [#881][]) ([@djmb][])
982
+ - at_exit hook for graceful Tracer shutdown ([#884][])
983
+ - Environment variables to configure RuleSampler defaults ([#892][])
193
984
 
194
985
  ### Changed
195
986
 
196
- - Updated partial trace flushing to conform with new back-end requirements (#845)
197
- - Store numeric tags as metrics (#886)
198
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
199
- - Changed default RuleSampler rate limit from unlimited to 100/s (#898)
987
+ - Updated partial trace flushing to conform with new back-end requirements ([#845][])
988
+ - Store numeric tags as metrics ([#886][])
989
+ - Moved logging from Datadog::Tracer to Datadog::Logger ([#880][])
990
+ - Changed default RuleSampler rate limit from unlimited to 100/s ([#898][])
200
991
 
201
992
  ### Fixed
202
993
 
203
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
994
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
204
995
 
205
996
  ### Refactored
206
997
 
207
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
998
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
208
999
 
209
1000
  ## [0.30.1] - 2019-12-30
210
1001
 
@@ -214,12 +1005,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
214
1005
 
215
1006
  ### Fixed
216
1007
 
217
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
218
- - Spans associated with runtime metrics when disabled (#885)
1008
+ - NoMethodError when configuring tracer with SyncWriter ([#899][], [#900][]) ([@Yurokle][])
1009
+ - Spans associated with runtime metrics when disabled ([#885][])
219
1010
 
220
1011
  ### Refactored
221
1012
 
222
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
1013
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
223
1014
 
224
1015
  ## [0.30.0] - 2019-12-04
225
1016
 
@@ -229,13 +1020,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
229
1020
 
230
1021
  ### Added
231
1022
 
232
- - Additional tracer health metrics (#867)
233
- - Integration patching instrumentation (#871)
234
- - Rule-based trace sampling (#854)
1023
+ - Additional tracer health metrics ([#867][])
1024
+ - Integration patching instrumentation ([#871][])
1025
+ - Rule-based trace sampling ([#854][])
235
1026
 
236
1027
  ### Fixed
237
1028
 
238
- - Rails template layout name error (#872) (@djmb)
1029
+ - Rails template layout name error ([#872][]) ([@djmb][])
239
1030
 
240
1031
  ## [0.29.1] - 2019-11-26
241
1032
 
@@ -245,7 +1036,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
245
1036
 
246
1037
  ### Fixed
247
1038
 
248
- - Priority sampling not activating by default (#868)
1039
+ - Priority sampling not activating by default ([#868][])
249
1040
 
250
1041
  ## [0.29.0] - 2019-11-20
251
1042
 
@@ -255,25 +1046,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
255
1046
 
256
1047
  ### Added
257
1048
 
258
- - Tracer health metrics (#838, #859)
1049
+ - Tracer health metrics ([#838][], [#859][])
259
1050
 
260
1051
  ### Changed
261
1052
 
262
- - Default trace buffer size from 100 to 1000 (#865)
263
- - Rack request start headers to accept more values (#832) (@JamesHarker)
264
- - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
1053
+ - Default trace buffer size from 100 to 1000 ([#865][])
1054
+ - Rack request start headers to accept more values ([#832][]) ([@JamesHarker][])
1055
+ - Faraday to apply default instrumentation out-of-the-box ([#786][], [#843][]) ([@mdross95][])
265
1056
 
266
1057
  ### Fixed
267
1058
 
268
- - Synthetics trace context being ignored (#856)
1059
+ - Synthetics trace context being ignored ([#856][])
269
1060
 
270
1061
  ### Refactored
271
1062
 
272
- - Tracer buffer constants (#851)
1063
+ - Tracer buffer constants ([#851][])
273
1064
 
274
1065
  ### Removed
275
1066
 
276
- - Some old Ruby 1.9 code (#819, #844)
1067
+ - Some old Ruby 1.9 code ([#819][], [#844][])
277
1068
 
278
1069
  ## [0.28.0] - 2019-10-01
279
1070
 
@@ -283,13 +1074,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
283
1074
 
284
1075
  ### Added
285
1076
 
286
- - Support for Rails 6.0 (#814)
287
- - Multiplexing on hostname/port for Dalli (#823)
288
- - Support for Redis array arguments (#796, #817) (@brafales)
1077
+ - Support for Rails 6.0 ([#814][])
1078
+ - Multiplexing on hostname/port for Dalli ([#823][])
1079
+ - Support for Redis array arguments ([#796][], [#817][]) ([@brafales][])
289
1080
 
290
1081
  ### Refactored
291
1082
 
292
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
1083
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
293
1084
 
294
1085
  ## [0.27.0] - 2019-09-04
295
1086
 
@@ -307,16 +1098,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
307
1098
 
308
1099
  ### Added
309
1100
 
310
- - Support for Ruby 2.5 & 2.6 (#800, #802)
311
- - Ethon integration (#527, #778) (@al-kudryavtsev)
1101
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
1102
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
312
1103
 
313
1104
  ### Refactored
314
1105
 
315
- - Rails integration into smaller integrations per component (#747, #762, #795)
1106
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
316
1107
 
317
1108
  ### Removed
318
1109
 
319
- - Support for Ruby 1.9 (#791)
1110
+ - Support for Ruby 1.9 ([#791][])
320
1111
 
321
1112
  ## [0.26.0] - 2019-08-06
322
1113
 
@@ -334,15 +1125,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
334
1125
 
335
1126
  ### Added
336
1127
 
337
- - Container ID tagging for containerized environments (#784)
1128
+ - Container ID tagging for containerized environments ([#784][])
338
1129
 
339
1130
  ### Refactored
340
1131
 
341
- - Datadog::Metrics constants (#789)
1132
+ - Datadog::Metrics constants ([#789][])
342
1133
 
343
1134
  ### Removed
344
1135
 
345
- - Datadog::HTTPTransport and related components (#782)
1136
+ - Datadog::HTTPTransport and related components ([#782][])
346
1137
 
347
1138
  ## [0.25.1] - 2019-07-16
348
1139
 
@@ -352,7 +1143,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
352
1143
 
353
1144
  ### Fixed
354
1145
 
355
- - Redis integration not quantizing AUTH command (#776)
1146
+ - Redis integration not quantizing AUTH command ([#776][])
356
1147
 
357
1148
  ## [0.25.0] - 2019-06-27
358
1149
 
@@ -370,25 +1161,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
370
1161
 
371
1162
  ### Added
372
1163
 
373
- - Unix socket support for transport layer (#770)
1164
+ - Unix socket support for transport layer ([#770][])
374
1165
 
375
1166
  ### Changed
376
1167
 
377
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
1168
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
378
1169
 
379
1170
  ### Fixed
380
1171
 
381
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
1172
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
382
1173
 
383
1174
  ### Refactored
384
1175
 
385
- - Transport layer (#628)
1176
+ - Transport layer ([#628][])
386
1177
 
387
1178
  ### Deprecated
388
1179
 
389
- - Ruby < 2.0 support (#771)
390
- - Use of `Datadog::HTTPTransport` (#628)
391
- - Use of `Datadog::Ext::ForcedTracing` (#765)
1180
+ - Ruby < 2.0 support ([#771][])
1181
+ - Use of `Datadog::HTTPTransport` ([#628][])
1182
+ - Use of `Datadog::Ext::ForcedTracing` ([#765][])
392
1183
 
393
1184
  ## [0.24.0] - 2019-05-21
394
1185
 
@@ -398,9 +1189,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
398
1189
 
399
1190
  ### Added
400
1191
 
401
- - B3 header support (#753)
402
- - Hostname tagging option (#760)
403
- - Contribution and development guides (#754)
1192
+ - B3 header support ([#753][])
1193
+ - Hostname tagging option ([#760][])
1194
+ - Contribution and development guides ([#754][])
404
1195
 
405
1196
  ## [0.23.3] - 2019-05-16
406
1197
 
@@ -410,7 +1201,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
410
1201
 
411
1202
  ### Fixed
412
1203
 
413
- - Integrations initializing tracer at load time (#756)
1204
+ - Integrations initializing tracer at load time ([#756][])
414
1205
 
415
1206
  ## [0.23.2] - 2019-05-10
416
1207
 
@@ -420,9 +1211,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
420
1211
 
421
1212
  ### Fixed
422
1213
 
423
- - Span types for HTTP, web, and some datastore integrations (#751)
424
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
425
- - Rails 6 warning for `parent_name` (#750) (@sinsoku)
1214
+ - Span types for HTTP, web, and some datastore integrations ([#751][])
1215
+ - AWS integration not patching service-level gems ([#707][], [#752][]) ([@alksl][], [@tonypinder][])
1216
+ - Rails 6 warning for `parent_name` ([#750][]) ([@sinsoku][])
426
1217
 
427
1218
  ## [0.23.1] - 2019-05-02
428
1219
 
@@ -432,7 +1223,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
432
1223
 
433
1224
  ### Fixed
434
1225
 
435
- - NoMethodError runtime_metrics for SyncWriter (#748)
1226
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
436
1227
 
437
1228
  ## [0.23.0] - 2019-04-30
438
1229
 
@@ -442,16 +1233,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
442
1233
 
443
1234
  ### Added
444
1235
 
445
- - Error status support via tags for OpenTracing (#739)
446
- - Forced sampling support via tags (#720)
1236
+ - Error status support via tags for OpenTracing ([#739][])
1237
+ - Forced sampling support via tags ([#720][])
447
1238
 
448
1239
  ### Fixed
449
1240
 
450
- - Wrong return values for Rake integration (#742) (@Redapted)
1241
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
451
1242
 
452
1243
  ### Removed
453
1244
 
454
- - Obsolete service telemetry (#738)
1245
+ - Obsolete service telemetry ([#738][])
455
1246
 
456
1247
  ## [0.22.0] - 2019-04-15
457
1248
 
@@ -463,11 +1254,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
463
1254
 
464
1255
  ### Changed
465
1256
 
466
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
1257
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
467
1258
 
468
1259
  ### Added
469
1260
 
470
- - Initial beta support for Runtime metrics collection (#677)
1261
+ - Initial beta support for Runtime metrics collection ([#677][])
471
1262
 
472
1263
  ## [0.21.2] - 2019-04-10
473
1264
 
@@ -477,7 +1268,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
477
1268
 
478
1269
  ### Changed
479
1270
 
480
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
1271
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
481
1272
 
482
1273
  ## [0.21.1] - 2019-03-26
483
1274
 
@@ -487,7 +1278,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
487
1278
 
488
1279
  ### Changed
489
1280
 
490
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
1281
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
491
1282
 
492
1283
  ## [0.21.0] - 2019-03-20
493
1284
 
@@ -497,17 +1288,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
497
1288
 
498
1289
  ### Added
499
1290
 
500
- - Trace analytics support (#697, #715)
501
- - HTTP after_request span hook (#716, #724)
1291
+ - Trace analytics support ([#697][], [#715][])
1292
+ - HTTP after_request span hook ([#716][], [#724][])
502
1293
 
503
1294
  ### Fixed
504
1295
 
505
- - Distributed traces with IDs in 2^64 range being dropped (#719)
506
- - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
1296
+ - Distributed traces with IDs in 2^64 range being dropped ([#719][])
1297
+ - Custom logger level forced to warning ([#681][], [#721][]) ([@blaines][], [@ericmustin][])
507
1298
 
508
1299
  ### Refactored
509
1300
 
510
- - Global configuration for tracing into configuration API (#714)
1301
+ - Global configuration for tracing into configuration API ([#714][])
511
1302
 
512
1303
  ## [0.20.0] - 2019-03-07
513
1304
 
@@ -520,24 +1311,24 @@ These changes are backwards compatible, but all integration configuration should
520
1311
 
521
1312
  ### Added
522
1313
 
523
- - Propagate synthetics origin header (#699)
1314
+ - Propagate synthetics origin header ([#699][])
524
1315
 
525
1316
  ### Changed
526
1317
 
527
- - Enable distributed tracing by default (#701)
1318
+ - Enable distributed tracing by default ([#701][])
528
1319
 
529
1320
  ### Fixed
530
1321
 
531
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
1322
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
532
1323
 
533
1324
  ### Refactored
534
1325
 
535
- - Refactor MongoDB to use instrumentation module (#704)
536
- - Refactor HTTP to use instrumentation module (#703)
537
- - Deprecate GRPC global pin in favor of configuration API (#702)
538
- - Deprecate Grape pin in favor of configuration API (#700)
539
- - Deprecate Faraday pin in favor of configuration API (#696)
540
- - Deprecate Dalli pin in favor of configuration API (#693)
1326
+ - Refactor MongoDB to use instrumentation module ([#704][])
1327
+ - Refactor HTTP to use instrumentation module ([#703][])
1328
+ - Deprecate GRPC global pin in favor of configuration API ([#702][])
1329
+ - Deprecate Grape pin in favor of configuration API ([#700][])
1330
+ - Deprecate Faraday pin in favor of configuration API ([#696][])
1331
+ - Deprecate Dalli pin in favor of configuration API ([#693][])
541
1332
 
542
1333
  ## [0.19.1] - 2019-02-07
543
1334
 
@@ -547,11 +1338,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
547
1338
 
548
1339
  ### Added
549
1340
 
550
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
1341
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
551
1342
 
552
1343
  ### Fixed
553
1344
 
554
- - Priority sampling dropping spans (#686)
1345
+ - Priority sampling dropping spans ([#686][])
555
1346
 
556
1347
  ## [0.19.0] - 2019-01-22
557
1348
 
@@ -561,12 +1352,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
561
1352
 
562
1353
  ### Added
563
1354
 
564
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
565
- - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
1355
+ - Tracer#active_correlation for adding correlation IDs to logs. ([#660][], [#664][], [#673][])
1356
+ - Opt-in support for `event_sample_rate` tag for some integrations. ([#665][], [#666][])
566
1357
 
567
1358
  ### Changed
568
1359
 
569
- - Priority sampling enabled by default. (#654)
1360
+ - Priority sampling enabled by default. ([#654][])
570
1361
 
571
1362
  ## [0.18.3] - 2019-01-17
572
1363
 
@@ -576,9 +1367,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
576
1367
 
577
1368
  ### Fixed
578
1369
 
579
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
580
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
581
- - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
1370
+ - Mongo `NoMethodError` when no span available during `#failed`. ([#674][], [#675][]) ([@Azure7111][])
1371
+ - Rack deprecation warnings firing with some 3rd party libraries present. ([#672][])
1372
+ - Shoryuken resource name when used with ActiveJob. ([#671][]) ([@aurelian][])
582
1373
 
583
1374
  ## [0.18.2] - 2019-01-03
584
1375
 
@@ -588,8 +1379,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
588
1379
 
589
1380
  ### Fixed
590
1381
 
591
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
592
- - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
1382
+ - Unfinished Mongo spans when SASL configured ([#658][]) ([@zachmccormick][])
1383
+ - Possible performance issue with unexpanded Rails cache keys ([#630][], [#635][]) ([@gingerlime][])
593
1384
 
594
1385
  ## [0.18.1] - 2018-12-20
595
1386
 
@@ -599,7 +1390,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
599
1390
 
600
1391
  ### Fixed
601
1392
 
602
- - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
1393
+ - ActiveRecord `SystemStackError` with some 3rd party libraries ([#661][], [#662][]) ([@EpiFouloux][], [@tjgrathwell][], [@guizmaii][])
603
1394
 
604
1395
  ## [0.18.0] - 2018-12-18
605
1396
 
@@ -609,15 +1400,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
609
1400
 
610
1401
  ### Added
611
1402
 
612
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
613
- - Sidekiq client integration (#602, #650) (@dirk)
614
- - Datadog::Shim for adding instrumentation (#648)
1403
+ - Shoryuken integration ([#538][], [#626][], [#655][]) ([@steveh][], [@JustSnow][])
1404
+ - Sidekiq client integration ([#602][], [#650][]) ([@dirk][])
1405
+ - Datadog::Shim for adding instrumentation ([#648][])
615
1406
 
616
1407
  ### Changed
617
1408
 
618
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
619
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
620
- - Return default configuration instead of `nil` on miss (#651)
1409
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available ([#631][])
1410
+ - Inject `:connection` into `sql.active_record` event ([#640][], [#649][], [#656][]) ([@guizmaii][])
1411
+ - Return default configuration instead of `nil` on miss ([#651][])
621
1412
 
622
1413
  ## [0.17.3] - 2018-11-29
623
1414
 
@@ -627,9 +1418,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
627
1418
 
628
1419
  ### Fixed
629
1420
 
630
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
631
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
632
- - Rack middleware inserted twice in some Rails applications (#641)
1421
+ - Bad resource names for Grape::API objects in Grape 1.2.0 ([#639][])
1422
+ - RestClient raising NoMethodError when response is `nil` ([#636][], [#642][]) ([@frsantos][])
1423
+ - Rack middleware inserted twice in some Rails applications ([#641][])
633
1424
 
634
1425
  ## [0.17.2] - 2018-11-23
635
1426
 
@@ -639,7 +1430,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
639
1430
 
640
1431
  ### Fixed
641
1432
 
642
- - Resque integration shutting down tracer when forking is disabled (#637)
1433
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
643
1434
 
644
1435
  ## [0.17.1] - 2018-11-07
645
1436
 
@@ -649,8 +1440,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
649
1440
 
650
1441
  ### Fixed
651
1442
 
652
- - RestClient incorrect app type (#583) (@gaborszakacs)
653
- - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
1443
+ - RestClient incorrect app type ([#583][]) ([@gaborszakacs][])
1444
+ - DelayedJob incorrect job name when used with ActiveJob ([#605][]) ([@agirlnamedsophia][])
654
1445
 
655
1446
  ## [0.17.0] - 2018-10-30
656
1447
 
@@ -660,18 +1451,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
660
1451
 
661
1452
  ### Added
662
1453
 
663
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
1454
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
664
1455
 
665
1456
  ### Changed
666
1457
 
667
- - Use Rack Env to update resource in Rails (#580) (@dasch)
668
- - Expand support for Sidekiq to 3.5.4+ (#593)
669
- - Expand support for mysql2 to 0.3.21+ (#578)
1458
+ - Use Rack Env to update resource in Rails ([#580][]) ([@dasch][])
1459
+ - Expand support for Sidekiq to 3.5.4+ ([#593][])
1460
+ - Expand support for mysql2 to 0.3.21+ ([#578][])
670
1461
 
671
1462
  ### Refactored
672
1463
 
673
- - Upgraded integrations to new API (#544)
674
- - Encoding classes into modules (#598)
1464
+ - Upgraded integrations to new API ([#544][])
1465
+ - Encoding classes into modules ([#598][])
675
1466
 
676
1467
  ## [0.16.1] - 2018-10-17
677
1468
 
@@ -681,8 +1472,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
681
1472
 
682
1473
  ### Fixed
683
1474
 
684
- - Priority sampling response being mishandled (#591)
685
- - HTTP open timeout to agent too long (#582)
1475
+ - Priority sampling response being mishandled ([#591][])
1476
+ - HTTP open timeout to agent too long ([#582][])
686
1477
 
687
1478
  ## [0.16.0] - 2018-09-18
688
1479
 
@@ -692,8 +1483,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
692
1483
 
693
1484
  ### Added
694
1485
 
695
- - OpenTracing support (#517)
696
- - `middleware` option for disabling Rails trace middleware. (#552)
1486
+ - OpenTracing support ([#517][])
1487
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
697
1488
 
698
1489
  ## [0.15.0] - 2018-09-12
699
1490
 
@@ -703,13 +1494,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
703
1494
 
704
1495
  ### Added
705
1496
 
706
- - Rails 5.2 support (#535)
707
- - Context propagation support for `Concurrent::Future` (#415, #496)
1497
+ - Rails 5.2 support ([#535][])
1498
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
708
1499
 
709
1500
  ### Fixed
710
1501
 
711
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
712
- - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
1502
+ - Grape uninitialized constant TraceMiddleware ([#525][], [#533][]) ([@dim][])
1503
+ - Signed integer trace and span IDs being discarded in distributed traces ([#530][]) ([@alloy][])
713
1504
 
714
1505
  ## [0.14.2] - 2018-08-23
715
1506
 
@@ -719,7 +1510,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
719
1510
 
720
1511
  ### Fixed
721
1512
 
722
- - Sampling priority from request headers not being used (#521)
1513
+ - Sampling priority from request headers not being used ([#521][])
723
1514
 
724
1515
  ## [0.14.1] - 2018-08-21
725
1516
 
@@ -729,11 +1520,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
729
1520
 
730
1521
  ### Changed
731
1522
 
732
- - Reduce verbosity of connection errors in log (#515)
1523
+ - Reduce verbosity of connection errors in log ([#515][])
733
1524
 
734
1525
  ### Fixed
735
1526
 
736
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
1527
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
737
1528
 
738
1529
  ## [0.14.0] - 2018-08-14
739
1530
 
@@ -743,22 +1534,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
743
1534
 
744
1535
  ### Added
745
1536
 
746
- - RestClient integration (#422, #460)
747
- - DelayedJob integration (#393 #444)
748
- - Version information to integrations (#483)
749
- - Tracer#active_root_span helper (#503)
1537
+ - RestClient integration ([#422][], [#460][])
1538
+ - DelayedJob integration ([#393][] [#444][])
1539
+ - Version information to integrations ([#483][])
1540
+ - Tracer#active_root_span helper ([#503][])
750
1541
 
751
1542
  ### Changed
752
1543
 
753
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
754
- - ActiveRecord to allow configuring multiple databases (#451)
755
- - Integrations configuration settings (#450, #452, #451)
1544
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1545
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1546
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
756
1547
 
757
1548
  ### Fixed
758
1549
 
759
- - Context propagation for distributed traces when context is full (#502)
760
- - Rake shutdown tracer after execution (#487) (@kissrobber)
761
- - Deprecation warnings fired using Unicorn (#508)
1550
+ - Context propagation for distributed traces when context is full ([#502][])
1551
+ - Rake shutdown tracer after execution ([#487][]) ([@kissrobber][])
1552
+ - Deprecation warnings fired using Unicorn ([#508][])
762
1553
 
763
1554
  ## [0.14.0.rc1] - 2018-08-08
764
1555
 
@@ -768,12 +1559,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
768
1559
 
769
1560
  ### Added
770
1561
 
771
- - RestClient integration (#422, #460)
772
- - Tracer#active_root_span helper (#503)
1562
+ - RestClient integration ([#422][], [#460][])
1563
+ - Tracer#active_root_span helper ([#503][])
773
1564
 
774
1565
  ### Fixed
775
1566
 
776
- - Context propagation for distributed traces when context is full (#502)
1567
+ - Context propagation for distributed traces when context is full ([#502][])
777
1568
 
778
1569
  ## [0.14.0.beta2] - 2018-07-25
779
1570
 
@@ -783,7 +1574,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
783
1574
 
784
1575
  ### Fixed
785
1576
 
786
- - Rake shutdown tracer after execution (#487) @kissrobber
1577
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
787
1578
 
788
1579
  ## [0.14.0.beta1] - 2018-07-24
789
1580
 
@@ -793,19 +1584,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
793
1584
 
794
1585
  ### Changed
795
1586
 
796
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
797
- - ActiveRecord to allow configuring multiple databases (#451)
798
- - Integrations configuration settings (#450, #452, #451)
1587
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1588
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1589
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
799
1590
 
800
1591
  ### Fixed
801
1592
 
802
- - Ruby warnings during tests (#499)
803
- - Tests failing intermittently on Ruby 1.9.3 (#497)
1593
+ - Ruby warnings during tests ([#499][])
1594
+ - Tests failing intermittently on Ruby 1.9.3 ([#497][])
804
1595
 
805
1596
  ### Added
806
1597
 
807
- - DelayedJob integration (#393 #444)
808
- - Version information to integrations (#483)
1598
+ - DelayedJob integration ([#393][] [#444][])
1599
+ - Version information to integrations ([#483][])
809
1600
 
810
1601
  ## [0.13.2] - 2018-08-07
811
1602
 
@@ -815,7 +1606,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
815
1606
 
816
1607
  ### Fixed
817
1608
 
818
- - Context propagation for distributed traces when context is full (#502)
1609
+ - Context propagation for distributed traces when context is full ([#502][])
819
1610
 
820
1611
  ## [0.13.1] - 2018-07-17
821
1612
 
@@ -825,15 +1616,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
825
1616
 
826
1617
  ### Changed
827
1618
 
828
- - Configuration class variables don't lazy load (#477)
829
- - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
1619
+ - Configuration class variables don't lazy load ([#477][])
1620
+ - Default tracer host `localhost` --> `127.0.0.1` ([#466][], [#480][]) ([@NobodysNightmare][])
830
1621
 
831
1622
  ### Fixed
832
1623
 
833
- - Workers not shutting down quickly in some short running processes (#475)
834
- - Missing documentation for mysql2 and Rails (#476, #488)
835
- - Missing variable in rescue block (#481) (@kitop)
836
- - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
1624
+ - Workers not shutting down quickly in some short running processes ([#475][])
1625
+ - Missing documentation for mysql2 and Rails ([#476][], [#488][])
1626
+ - Missing variable in rescue block ([#481][]) ([@kitop][])
1627
+ - Unclosed spans in ActiveSupport::Notifications with multithreading ([#431][], [#478][]) ([@senny][])
837
1628
 
838
1629
  ## [0.13.0] - 2018-06-20
839
1630
 
@@ -843,31 +1634,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
843
1634
 
844
1635
  ### Added
845
1636
 
846
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
847
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
848
- - ActiveModelSerializers integration (#340) (@sullimander)
849
- - Excon integration (#211, #426) (@walterking, @jeffjo)
850
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
851
- - Request queuing tracing to Rack (experimental) (#272)
852
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
853
- - Request and response header tags to Rack (#389)
854
- - Request and response header tags to Sinatra (#427, #375)
855
- - MySQL2 integration (#453) (@jamiehodge)
856
- - Sidekiq job delay tag (#443, #418) (@gottfrois)
1637
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1638
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1639
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1640
+ - Excon integration ([#211][], [#426][]) ([@walterking][], [@jeffjo][])
1641
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1642
+ - Request queuing tracing to Rack (experimental) ([#272][])
1643
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1644
+ - Request and response header tags to Rack ([#389][])
1645
+ - Request and response header tags to Sinatra ([#427][], [#375][])
1646
+ - MySQL2 integration ([#453][]) ([@jamiehodge][])
1647
+ - Sidekiq job delay tag ([#443][], [#418][]) ([@gottfrois][])
857
1648
 
858
1649
  ### Fixed
859
1650
 
860
- - Elasticsearch quantization of ids (#458)
861
- - MongoDB to allow quantization of collection name (#463)
1651
+ - Elasticsearch quantization of ids ([#458][])
1652
+ - MongoDB to allow quantization of collection name ([#463][])
862
1653
 
863
1654
  ### Refactored
864
1655
 
865
- - Hash quantization into core library (#410)
866
- - MongoDB integration to use Hash quantization library (#463)
1656
+ - Hash quantization into core library ([#410][])
1657
+ - MongoDB integration to use Hash quantization library ([#463][])
867
1658
 
868
- ### Changed
1659
+ ### Changed
869
1660
 
870
- - Hash quantization truncates arrays with nested objects (#463)
1661
+ - Hash quantization truncates arrays with nested objects ([#463][])
871
1662
 
872
1663
  ## [0.13.0.beta1] - 2018-05-09
873
1664
 
@@ -877,18 +1668,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
877
1668
 
878
1669
  ### Added
879
1670
 
880
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
881
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
882
- - ActiveModelSerializers integration (#340) (@sullimander)
883
- - Excon integration (#211) (@walterking)
884
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
885
- - Request queuing tracing to Rack (experimental) (#272)
886
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
887
- - Request and response header tags to Rack (#389)
1671
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1672
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1673
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1674
+ - Excon integration ([#211][]) ([@walterking][])
1675
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1676
+ - Request queuing tracing to Rack (experimental) ([#272][])
1677
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1678
+ - Request and response header tags to Rack ([#389][])
888
1679
 
889
1680
  ### Refactored
890
1681
 
891
- - Hash quantization into core library (#410)
1682
+ - Hash quantization into core library ([#410][])
892
1683
 
893
1684
  ## [0.12.1] - 2018-06-12
894
1685
 
@@ -898,22 +1689,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
898
1689
 
899
1690
  ### Changed
900
1691
 
901
- - Cache configuration `Proxy` objects (#446)
902
- - `freeze` more constant strings, to improve memory usage (#446)
903
- - `Utils#truncate` to use slightly less memory (#446)
1692
+ - Cache configuration `Proxy` objects ([#446][])
1693
+ - `freeze` more constant strings, to improve memory usage ([#446][])
1694
+ - `Utils#truncate` to use slightly less memory ([#446][])
904
1695
 
905
1696
  ### Fixed
906
1697
 
907
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
908
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
909
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
910
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
911
- - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
1698
+ - Net/HTTP integration not permitting `service_name` to be overridden. ([#407][], [#430][]) ([@undergroundwebdesigns][])
1699
+ - Block not being passed through Elasticsearch client initialization. ([#421][]) ([@shayonj][])
1700
+ - Devise raising `NoMethodError` when bad login attempts are made. ([#419][], [#420][]) ([@frsantos][])
1701
+ - AWS spans using wrong resource name ([#374][], [#377][]) ([@jfrancoist][])
1702
+ - ActionView `NoMethodError` on very long traces. ([#445][], [#447][]) ([@jvalanen][])
912
1703
 
913
1704
  ### Refactored
914
1705
 
915
- - ActionController patching strategy using modules. (#439)
916
- - ActionView tracing strategy. (#445, #447)
1706
+ - ActionController patching strategy using modules. ([#439][])
1707
+ - ActionView tracing strategy. ([#445][], [#447][])
917
1708
 
918
1709
  ## [0.12.0] - 2018-05-08
919
1710
 
@@ -923,34 +1714,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
923
1714
 
924
1715
  ### Added
925
1716
 
926
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
927
- - ActiveRecord object instantiation tracing (#311, #334)
928
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
929
- - HTTP quantization module (#384)
930
- - Partial flushing option to tracer (#247, #397)
1717
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1718
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1719
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1720
+ - HTTP quantization module ([#384][])
1721
+ - Partial flushing option to tracer ([#247][], [#397][])
931
1722
 
932
1723
  ### Changed
933
1724
 
934
- - Rack applies URL quantization by default (#371)
935
- - Elasticsearch applies body quantization by default (#362)
936
- - Context for a single trace now has hard limit of 100,000 spans (#247)
937
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1725
+ - Rack applies URL quantization by default ([#371][])
1726
+ - Elasticsearch applies body quantization by default ([#362][])
1727
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1728
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
938
1729
 
939
1730
  ### Fixed
940
1731
 
941
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
942
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
943
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1732
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1733
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1734
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
944
1735
 
945
1736
  ### Deprecated
946
1737
 
947
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1738
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
948
1739
 
949
1740
  ### Refactored
950
1741
 
951
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
952
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
953
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1742
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1743
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1744
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
954
1745
 
955
1746
  ## [0.12.0.rc1] - 2018-04-11
956
1747
 
@@ -960,34 +1751,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
960
1751
 
961
1752
  ### Added
962
1753
 
963
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
964
- - ActiveRecord object instantiation tracing (#311, #334)
965
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
966
- - HTTP quantization module (#384)
967
- - Partial flushing option to tracer (#247, #397)
1754
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1755
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1756
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1757
+ - HTTP quantization module ([#384][])
1758
+ - Partial flushing option to tracer ([#247][], [#397][])
968
1759
 
969
1760
  ### Changed
970
1761
 
971
- - Rack applies URL quantization by default (#371)
972
- - Elasticsearch applies body quantization by default (#362)
973
- - Context for a single trace now has hard limit of 100,000 spans (#247)
974
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1762
+ - Rack applies URL quantization by default ([#371][])
1763
+ - Elasticsearch applies body quantization by default ([#362][])
1764
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1765
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
975
1766
 
976
1767
  ### Fixed
977
1768
 
978
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
979
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
980
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1769
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1770
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1771
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
981
1772
 
982
1773
  ### Deprecated
983
1774
 
984
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1775
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
985
1776
 
986
1777
  ### Refactored
987
1778
 
988
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
989
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
990
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1779
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1780
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1781
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
991
1782
 
992
1783
  ## [0.12.0.beta2] - 2018-02-28
993
1784
 
@@ -997,7 +1788,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
997
1788
 
998
1789
  ### Fixed
999
1790
 
1000
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1791
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1001
1792
 
1002
1793
  ## [0.12.0.beta1] - 2018-02-09
1003
1794
 
@@ -1007,9 +1798,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1007
1798
 
1008
1799
  ### Added
1009
1800
 
1010
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1011
- - ActiveRecord object instantiation tracing (#311, #334)
1012
- - `http.request_id` tag to Rack spans (#335)
1801
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1802
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1803
+ - `http.request_id` tag to Rack spans ([#335][])
1013
1804
 
1014
1805
  ## [0.11.4] - 2018-03-29
1015
1806
 
@@ -1019,9 +1810,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1019
1810
 
1020
1811
  ### Fixed
1021
1812
 
1022
- - Transport body parsing when downgrading (#369)
1023
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
1024
- - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
1813
+ - Transport body parsing when downgrading ([#369][])
1814
+ - Transport incorrectly attempting to apply sampling to service metadata ([#370][])
1815
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used ([#383][])
1025
1816
 
1026
1817
  ## [0.11.3] - 2018-03-06
1027
1818
 
@@ -1031,20 +1822,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1031
1822
 
1032
1823
  ### Added
1033
1824
 
1034
- - CHANGELOG.md (#350, #363) (@awendt)
1035
- - `http.request_id` tag to Rack spans (#335)
1036
- - Tracer configuration to README.md (#332) (@noma4i)
1825
+ - CHANGELOG.md ([#350][], [#363][]) ([@awendt][])
1826
+ - `http.request_id` tag to Rack spans ([#335][])
1827
+ - Tracer configuration to README.md ([#332][]) ([@noma4i][])
1037
1828
 
1038
1829
  ### Fixed
1039
1830
 
1040
- - Extra indentation in README.md (#349) (@ck3g)
1041
- - `http.url` when Rails raises exceptions (#351, #353)
1042
- - Rails from being patched twice (#352)
1043
- - 4XX responses from middleware being marked as errors (#345)
1044
- - Rails exception middleware sometimes not being inserted at correct position (#345)
1045
- - Processing pipeline documentation typo (#355) (@MMartyn)
1046
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1047
- - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
1831
+ - Extra indentation in README.md ([#349][]) ([@ck3g][])
1832
+ - `http.url` when Rails raises exceptions ([#351][], [#353][])
1833
+ - Rails from being patched twice ([#352][])
1834
+ - 4XX responses from middleware being marked as errors ([#345][])
1835
+ - Rails exception middleware sometimes not being inserted at correct position ([#345][])
1836
+ - Processing pipeline documentation typo ([#355][]) ([@MMartyn][])
1837
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1838
+ - Use of block syntax with Rails `render` not working ([#359][], [#360][]) ([@dorner][])
1048
1839
 
1049
1840
  ## [0.11.2] - 2018-02-02
1050
1841
 
@@ -1066,23 +1857,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1066
1857
 
1067
1858
  ### Added
1068
1859
 
1069
- - `http.base_url` tag for Rack applications (#301, #327)
1070
- - `distributed_tracing` option to Sinatra (#325)
1071
- - `exception_controller` option to Rails (#320)
1860
+ - `http.base_url` tag for Rack applications ([#301][], [#327][])
1861
+ - `distributed_tracing` option to Sinatra ([#325][])
1862
+ - `exception_controller` option to Rails ([#320][])
1072
1863
 
1073
1864
  ### Changed
1074
1865
 
1075
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1076
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1866
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
1867
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1077
1868
 
1078
1869
  ### Removed
1079
1870
 
1080
- - `Datadog::Monkey` in favor of newer configuration API (#322)
1871
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1081
1872
 
1082
1873
  ### Fixed
1083
1874
 
1084
- - Custom resource names from Rails controllers being overridden (#321)
1085
- - Custom Rails exception controllers reporting as the resource (#320)
1875
+ - Custom resource names from Rails controllers being overridden ([#321][])
1876
+ - Custom Rails exception controllers reporting as the resource ([#320][])
1086
1877
 
1087
1878
  ## [0.11.0] - 2018-01-17
1088
1879
 
@@ -1216,7 +2007,30 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1216
2007
 
1217
2008
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1218
2009
 
1219
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...master
2010
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.1.0...master
2011
+ [1.1.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0...v1.1.0
2012
+ [1.0.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta2...v1.0.0
2013
+ [1.0.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2
2014
+ [1.0.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1
2015
+ [0.54.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.1...v0.54.2
2016
+ [0.54.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...v0.54.1
2017
+ [0.54.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
2018
+ [0.53.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
2019
+ [0.52.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
2020
+ [0.51.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
2021
+ [0.51.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
2022
+ [0.48.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
2023
+ [0.47.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
2024
+ [0.46.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
2025
+ [0.45.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
2026
+ [0.44.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
2027
+ [0.43.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
2028
+ [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
2029
+ [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
2030
+ [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
2031
+ [0.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
2032
+ [0.37.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
2033
+ [0.36.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
1220
2034
  [0.35.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
1221
2035
  [0.35.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
1222
2036
  [0.35.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
@@ -1308,3 +2122,865 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1308
2122
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1309
2123
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1310
2124
  [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1
2125
+
2126
+ <!--- The following link definition list is generated by PimpMyChangelog --->
2127
+ [#132]: https://github.com/DataDog/dd-trace-rb/issues/132
2128
+ [#171]: https://github.com/DataDog/dd-trace-rb/issues/171
2129
+ [#211]: https://github.com/DataDog/dd-trace-rb/issues/211
2130
+ [#247]: https://github.com/DataDog/dd-trace-rb/issues/247
2131
+ [#272]: https://github.com/DataDog/dd-trace-rb/issues/272
2132
+ [#295]: https://github.com/DataDog/dd-trace-rb/issues/295
2133
+ [#301]: https://github.com/DataDog/dd-trace-rb/issues/301
2134
+ [#311]: https://github.com/DataDog/dd-trace-rb/issues/311
2135
+ [#320]: https://github.com/DataDog/dd-trace-rb/issues/320
2136
+ [#321]: https://github.com/DataDog/dd-trace-rb/issues/321
2137
+ [#322]: https://github.com/DataDog/dd-trace-rb/issues/322
2138
+ [#323]: https://github.com/DataDog/dd-trace-rb/issues/323
2139
+ [#324]: https://github.com/DataDog/dd-trace-rb/issues/324
2140
+ [#325]: https://github.com/DataDog/dd-trace-rb/issues/325
2141
+ [#327]: https://github.com/DataDog/dd-trace-rb/issues/327
2142
+ [#328]: https://github.com/DataDog/dd-trace-rb/issues/328
2143
+ [#330]: https://github.com/DataDog/dd-trace-rb/issues/330
2144
+ [#332]: https://github.com/DataDog/dd-trace-rb/issues/332
2145
+ [#334]: https://github.com/DataDog/dd-trace-rb/issues/334
2146
+ [#335]: https://github.com/DataDog/dd-trace-rb/issues/335
2147
+ [#340]: https://github.com/DataDog/dd-trace-rb/issues/340
2148
+ [#345]: https://github.com/DataDog/dd-trace-rb/issues/345
2149
+ [#349]: https://github.com/DataDog/dd-trace-rb/issues/349
2150
+ [#350]: https://github.com/DataDog/dd-trace-rb/issues/350
2151
+ [#351]: https://github.com/DataDog/dd-trace-rb/issues/351
2152
+ [#352]: https://github.com/DataDog/dd-trace-rb/issues/352
2153
+ [#353]: https://github.com/DataDog/dd-trace-rb/issues/353
2154
+ [#354]: https://github.com/DataDog/dd-trace-rb/issues/354
2155
+ [#355]: https://github.com/DataDog/dd-trace-rb/issues/355
2156
+ [#357]: https://github.com/DataDog/dd-trace-rb/issues/357
2157
+ [#359]: https://github.com/DataDog/dd-trace-rb/issues/359
2158
+ [#360]: https://github.com/DataDog/dd-trace-rb/issues/360
2159
+ [#362]: https://github.com/DataDog/dd-trace-rb/issues/362
2160
+ [#363]: https://github.com/DataDog/dd-trace-rb/issues/363
2161
+ [#365]: https://github.com/DataDog/dd-trace-rb/issues/365
2162
+ [#367]: https://github.com/DataDog/dd-trace-rb/issues/367
2163
+ [#369]: https://github.com/DataDog/dd-trace-rb/issues/369
2164
+ [#370]: https://github.com/DataDog/dd-trace-rb/issues/370
2165
+ [#371]: https://github.com/DataDog/dd-trace-rb/issues/371
2166
+ [#374]: https://github.com/DataDog/dd-trace-rb/issues/374
2167
+ [#375]: https://github.com/DataDog/dd-trace-rb/issues/375
2168
+ [#377]: https://github.com/DataDog/dd-trace-rb/issues/377
2169
+ [#379]: https://github.com/DataDog/dd-trace-rb/issues/379
2170
+ [#380]: https://github.com/DataDog/dd-trace-rb/issues/380
2171
+ [#381]: https://github.com/DataDog/dd-trace-rb/issues/381
2172
+ [#383]: https://github.com/DataDog/dd-trace-rb/issues/383
2173
+ [#384]: https://github.com/DataDog/dd-trace-rb/issues/384
2174
+ [#389]: https://github.com/DataDog/dd-trace-rb/issues/389
2175
+ [#390]: https://github.com/DataDog/dd-trace-rb/issues/390
2176
+ [#391]: https://github.com/DataDog/dd-trace-rb/issues/391
2177
+ [#392]: https://github.com/DataDog/dd-trace-rb/issues/392
2178
+ [#393]: https://github.com/DataDog/dd-trace-rb/issues/393
2179
+ [#395]: https://github.com/DataDog/dd-trace-rb/issues/395
2180
+ [#396]: https://github.com/DataDog/dd-trace-rb/issues/396
2181
+ [#397]: https://github.com/DataDog/dd-trace-rb/issues/397
2182
+ [#400]: https://github.com/DataDog/dd-trace-rb/issues/400
2183
+ [#403]: https://github.com/DataDog/dd-trace-rb/issues/403
2184
+ [#407]: https://github.com/DataDog/dd-trace-rb/issues/407
2185
+ [#409]: https://github.com/DataDog/dd-trace-rb/issues/409
2186
+ [#410]: https://github.com/DataDog/dd-trace-rb/issues/410
2187
+ [#415]: https://github.com/DataDog/dd-trace-rb/issues/415
2188
+ [#418]: https://github.com/DataDog/dd-trace-rb/issues/418
2189
+ [#419]: https://github.com/DataDog/dd-trace-rb/issues/419
2190
+ [#420]: https://github.com/DataDog/dd-trace-rb/issues/420
2191
+ [#421]: https://github.com/DataDog/dd-trace-rb/issues/421
2192
+ [#422]: https://github.com/DataDog/dd-trace-rb/issues/422
2193
+ [#424]: https://github.com/DataDog/dd-trace-rb/issues/424
2194
+ [#426]: https://github.com/DataDog/dd-trace-rb/issues/426
2195
+ [#427]: https://github.com/DataDog/dd-trace-rb/issues/427
2196
+ [#430]: https://github.com/DataDog/dd-trace-rb/issues/430
2197
+ [#431]: https://github.com/DataDog/dd-trace-rb/issues/431
2198
+ [#439]: https://github.com/DataDog/dd-trace-rb/issues/439
2199
+ [#443]: https://github.com/DataDog/dd-trace-rb/issues/443
2200
+ [#444]: https://github.com/DataDog/dd-trace-rb/issues/444
2201
+ [#445]: https://github.com/DataDog/dd-trace-rb/issues/445
2202
+ [#446]: https://github.com/DataDog/dd-trace-rb/issues/446
2203
+ [#447]: https://github.com/DataDog/dd-trace-rb/issues/447
2204
+ [#450]: https://github.com/DataDog/dd-trace-rb/issues/450
2205
+ [#451]: https://github.com/DataDog/dd-trace-rb/issues/451
2206
+ [#452]: https://github.com/DataDog/dd-trace-rb/issues/452
2207
+ [#453]: https://github.com/DataDog/dd-trace-rb/issues/453
2208
+ [#458]: https://github.com/DataDog/dd-trace-rb/issues/458
2209
+ [#460]: https://github.com/DataDog/dd-trace-rb/issues/460
2210
+ [#463]: https://github.com/DataDog/dd-trace-rb/issues/463
2211
+ [#466]: https://github.com/DataDog/dd-trace-rb/issues/466
2212
+ [#474]: https://github.com/DataDog/dd-trace-rb/issues/474
2213
+ [#475]: https://github.com/DataDog/dd-trace-rb/issues/475
2214
+ [#476]: https://github.com/DataDog/dd-trace-rb/issues/476
2215
+ [#477]: https://github.com/DataDog/dd-trace-rb/issues/477
2216
+ [#478]: https://github.com/DataDog/dd-trace-rb/issues/478
2217
+ [#480]: https://github.com/DataDog/dd-trace-rb/issues/480
2218
+ [#481]: https://github.com/DataDog/dd-trace-rb/issues/481
2219
+ [#483]: https://github.com/DataDog/dd-trace-rb/issues/483
2220
+ [#486]: https://github.com/DataDog/dd-trace-rb/issues/486
2221
+ [#487]: https://github.com/DataDog/dd-trace-rb/issues/487
2222
+ [#488]: https://github.com/DataDog/dd-trace-rb/issues/488
2223
+ [#496]: https://github.com/DataDog/dd-trace-rb/issues/496
2224
+ [#497]: https://github.com/DataDog/dd-trace-rb/issues/497
2225
+ [#499]: https://github.com/DataDog/dd-trace-rb/issues/499
2226
+ [#502]: https://github.com/DataDog/dd-trace-rb/issues/502
2227
+ [#503]: https://github.com/DataDog/dd-trace-rb/issues/503
2228
+ [#508]: https://github.com/DataDog/dd-trace-rb/issues/508
2229
+ [#514]: https://github.com/DataDog/dd-trace-rb/issues/514
2230
+ [#515]: https://github.com/DataDog/dd-trace-rb/issues/515
2231
+ [#516]: https://github.com/DataDog/dd-trace-rb/issues/516
2232
+ [#517]: https://github.com/DataDog/dd-trace-rb/issues/517
2233
+ [#521]: https://github.com/DataDog/dd-trace-rb/issues/521
2234
+ [#525]: https://github.com/DataDog/dd-trace-rb/issues/525
2235
+ [#527]: https://github.com/DataDog/dd-trace-rb/issues/527
2236
+ [#529]: https://github.com/DataDog/dd-trace-rb/issues/529
2237
+ [#530]: https://github.com/DataDog/dd-trace-rb/issues/530
2238
+ [#533]: https://github.com/DataDog/dd-trace-rb/issues/533
2239
+ [#535]: https://github.com/DataDog/dd-trace-rb/issues/535
2240
+ [#538]: https://github.com/DataDog/dd-trace-rb/issues/538
2241
+ [#544]: https://github.com/DataDog/dd-trace-rb/issues/544
2242
+ [#552]: https://github.com/DataDog/dd-trace-rb/issues/552
2243
+ [#578]: https://github.com/DataDog/dd-trace-rb/issues/578
2244
+ [#580]: https://github.com/DataDog/dd-trace-rb/issues/580
2245
+ [#582]: https://github.com/DataDog/dd-trace-rb/issues/582
2246
+ [#583]: https://github.com/DataDog/dd-trace-rb/issues/583
2247
+ [#591]: https://github.com/DataDog/dd-trace-rb/issues/591
2248
+ [#593]: https://github.com/DataDog/dd-trace-rb/issues/593
2249
+ [#597]: https://github.com/DataDog/dd-trace-rb/issues/597
2250
+ [#598]: https://github.com/DataDog/dd-trace-rb/issues/598
2251
+ [#602]: https://github.com/DataDog/dd-trace-rb/issues/602
2252
+ [#605]: https://github.com/DataDog/dd-trace-rb/issues/605
2253
+ [#626]: https://github.com/DataDog/dd-trace-rb/issues/626
2254
+ [#628]: https://github.com/DataDog/dd-trace-rb/issues/628
2255
+ [#630]: https://github.com/DataDog/dd-trace-rb/issues/630
2256
+ [#631]: https://github.com/DataDog/dd-trace-rb/issues/631
2257
+ [#635]: https://github.com/DataDog/dd-trace-rb/issues/635
2258
+ [#636]: https://github.com/DataDog/dd-trace-rb/issues/636
2259
+ [#637]: https://github.com/DataDog/dd-trace-rb/issues/637
2260
+ [#639]: https://github.com/DataDog/dd-trace-rb/issues/639
2261
+ [#640]: https://github.com/DataDog/dd-trace-rb/issues/640
2262
+ [#641]: https://github.com/DataDog/dd-trace-rb/issues/641
2263
+ [#642]: https://github.com/DataDog/dd-trace-rb/issues/642
2264
+ [#648]: https://github.com/DataDog/dd-trace-rb/issues/648
2265
+ [#649]: https://github.com/DataDog/dd-trace-rb/issues/649
2266
+ [#650]: https://github.com/DataDog/dd-trace-rb/issues/650
2267
+ [#651]: https://github.com/DataDog/dd-trace-rb/issues/651
2268
+ [#654]: https://github.com/DataDog/dd-trace-rb/issues/654
2269
+ [#655]: https://github.com/DataDog/dd-trace-rb/issues/655
2270
+ [#656]: https://github.com/DataDog/dd-trace-rb/issues/656
2271
+ [#658]: https://github.com/DataDog/dd-trace-rb/issues/658
2272
+ [#660]: https://github.com/DataDog/dd-trace-rb/issues/660
2273
+ [#661]: https://github.com/DataDog/dd-trace-rb/issues/661
2274
+ [#662]: https://github.com/DataDog/dd-trace-rb/issues/662
2275
+ [#664]: https://github.com/DataDog/dd-trace-rb/issues/664
2276
+ [#665]: https://github.com/DataDog/dd-trace-rb/issues/665
2277
+ [#666]: https://github.com/DataDog/dd-trace-rb/issues/666
2278
+ [#671]: https://github.com/DataDog/dd-trace-rb/issues/671
2279
+ [#672]: https://github.com/DataDog/dd-trace-rb/issues/672
2280
+ [#673]: https://github.com/DataDog/dd-trace-rb/issues/673
2281
+ [#674]: https://github.com/DataDog/dd-trace-rb/issues/674
2282
+ [#675]: https://github.com/DataDog/dd-trace-rb/issues/675
2283
+ [#677]: https://github.com/DataDog/dd-trace-rb/issues/677
2284
+ [#681]: https://github.com/DataDog/dd-trace-rb/issues/681
2285
+ [#683]: https://github.com/DataDog/dd-trace-rb/issues/683
2286
+ [#686]: https://github.com/DataDog/dd-trace-rb/issues/686
2287
+ [#687]: https://github.com/DataDog/dd-trace-rb/issues/687
2288
+ [#693]: https://github.com/DataDog/dd-trace-rb/issues/693
2289
+ [#696]: https://github.com/DataDog/dd-trace-rb/issues/696
2290
+ [#697]: https://github.com/DataDog/dd-trace-rb/issues/697
2291
+ [#699]: https://github.com/DataDog/dd-trace-rb/issues/699
2292
+ [#700]: https://github.com/DataDog/dd-trace-rb/issues/700
2293
+ [#701]: https://github.com/DataDog/dd-trace-rb/issues/701
2294
+ [#702]: https://github.com/DataDog/dd-trace-rb/issues/702
2295
+ [#703]: https://github.com/DataDog/dd-trace-rb/issues/703
2296
+ [#704]: https://github.com/DataDog/dd-trace-rb/issues/704
2297
+ [#707]: https://github.com/DataDog/dd-trace-rb/issues/707
2298
+ [#709]: https://github.com/DataDog/dd-trace-rb/issues/709
2299
+ [#714]: https://github.com/DataDog/dd-trace-rb/issues/714
2300
+ [#715]: https://github.com/DataDog/dd-trace-rb/issues/715
2301
+ [#716]: https://github.com/DataDog/dd-trace-rb/issues/716
2302
+ [#719]: https://github.com/DataDog/dd-trace-rb/issues/719
2303
+ [#720]: https://github.com/DataDog/dd-trace-rb/issues/720
2304
+ [#721]: https://github.com/DataDog/dd-trace-rb/issues/721
2305
+ [#722]: https://github.com/DataDog/dd-trace-rb/issues/722
2306
+ [#724]: https://github.com/DataDog/dd-trace-rb/issues/724
2307
+ [#728]: https://github.com/DataDog/dd-trace-rb/issues/728
2308
+ [#729]: https://github.com/DataDog/dd-trace-rb/issues/729
2309
+ [#731]: https://github.com/DataDog/dd-trace-rb/issues/731
2310
+ [#738]: https://github.com/DataDog/dd-trace-rb/issues/738
2311
+ [#739]: https://github.com/DataDog/dd-trace-rb/issues/739
2312
+ [#742]: https://github.com/DataDog/dd-trace-rb/issues/742
2313
+ [#747]: https://github.com/DataDog/dd-trace-rb/issues/747
2314
+ [#748]: https://github.com/DataDog/dd-trace-rb/issues/748
2315
+ [#750]: https://github.com/DataDog/dd-trace-rb/issues/750
2316
+ [#751]: https://github.com/DataDog/dd-trace-rb/issues/751
2317
+ [#752]: https://github.com/DataDog/dd-trace-rb/issues/752
2318
+ [#753]: https://github.com/DataDog/dd-trace-rb/issues/753
2319
+ [#754]: https://github.com/DataDog/dd-trace-rb/issues/754
2320
+ [#756]: https://github.com/DataDog/dd-trace-rb/issues/756
2321
+ [#760]: https://github.com/DataDog/dd-trace-rb/issues/760
2322
+ [#762]: https://github.com/DataDog/dd-trace-rb/issues/762
2323
+ [#765]: https://github.com/DataDog/dd-trace-rb/issues/765
2324
+ [#768]: https://github.com/DataDog/dd-trace-rb/issues/768
2325
+ [#770]: https://github.com/DataDog/dd-trace-rb/issues/770
2326
+ [#771]: https://github.com/DataDog/dd-trace-rb/issues/771
2327
+ [#775]: https://github.com/DataDog/dd-trace-rb/issues/775
2328
+ [#776]: https://github.com/DataDog/dd-trace-rb/issues/776
2329
+ [#778]: https://github.com/DataDog/dd-trace-rb/issues/778
2330
+ [#782]: https://github.com/DataDog/dd-trace-rb/issues/782
2331
+ [#784]: https://github.com/DataDog/dd-trace-rb/issues/784
2332
+ [#786]: https://github.com/DataDog/dd-trace-rb/issues/786
2333
+ [#789]: https://github.com/DataDog/dd-trace-rb/issues/789
2334
+ [#791]: https://github.com/DataDog/dd-trace-rb/issues/791
2335
+ [#795]: https://github.com/DataDog/dd-trace-rb/issues/795
2336
+ [#796]: https://github.com/DataDog/dd-trace-rb/issues/796
2337
+ [#798]: https://github.com/DataDog/dd-trace-rb/issues/798
2338
+ [#800]: https://github.com/DataDog/dd-trace-rb/issues/800
2339
+ [#802]: https://github.com/DataDog/dd-trace-rb/issues/802
2340
+ [#805]: https://github.com/DataDog/dd-trace-rb/issues/805
2341
+ [#811]: https://github.com/DataDog/dd-trace-rb/issues/811
2342
+ [#814]: https://github.com/DataDog/dd-trace-rb/issues/814
2343
+ [#815]: https://github.com/DataDog/dd-trace-rb/issues/815
2344
+ [#817]: https://github.com/DataDog/dd-trace-rb/issues/817
2345
+ [#818]: https://github.com/DataDog/dd-trace-rb/issues/818
2346
+ [#819]: https://github.com/DataDog/dd-trace-rb/issues/819
2347
+ [#821]: https://github.com/DataDog/dd-trace-rb/issues/821
2348
+ [#823]: https://github.com/DataDog/dd-trace-rb/issues/823
2349
+ [#824]: https://github.com/DataDog/dd-trace-rb/issues/824
2350
+ [#832]: https://github.com/DataDog/dd-trace-rb/issues/832
2351
+ [#838]: https://github.com/DataDog/dd-trace-rb/issues/838
2352
+ [#840]: https://github.com/DataDog/dd-trace-rb/issues/840
2353
+ [#841]: https://github.com/DataDog/dd-trace-rb/issues/841
2354
+ [#842]: https://github.com/DataDog/dd-trace-rb/issues/842
2355
+ [#843]: https://github.com/DataDog/dd-trace-rb/issues/843
2356
+ [#844]: https://github.com/DataDog/dd-trace-rb/issues/844
2357
+ [#845]: https://github.com/DataDog/dd-trace-rb/issues/845
2358
+ [#846]: https://github.com/DataDog/dd-trace-rb/issues/846
2359
+ [#847]: https://github.com/DataDog/dd-trace-rb/issues/847
2360
+ [#851]: https://github.com/DataDog/dd-trace-rb/issues/851
2361
+ [#853]: https://github.com/DataDog/dd-trace-rb/issues/853
2362
+ [#854]: https://github.com/DataDog/dd-trace-rb/issues/854
2363
+ [#855]: https://github.com/DataDog/dd-trace-rb/issues/855
2364
+ [#856]: https://github.com/DataDog/dd-trace-rb/issues/856
2365
+ [#859]: https://github.com/DataDog/dd-trace-rb/issues/859
2366
+ [#861]: https://github.com/DataDog/dd-trace-rb/issues/861
2367
+ [#865]: https://github.com/DataDog/dd-trace-rb/issues/865
2368
+ [#867]: https://github.com/DataDog/dd-trace-rb/issues/867
2369
+ [#868]: https://github.com/DataDog/dd-trace-rb/issues/868
2370
+ [#871]: https://github.com/DataDog/dd-trace-rb/issues/871
2371
+ [#872]: https://github.com/DataDog/dd-trace-rb/issues/872
2372
+ [#880]: https://github.com/DataDog/dd-trace-rb/issues/880
2373
+ [#881]: https://github.com/DataDog/dd-trace-rb/issues/881
2374
+ [#882]: https://github.com/DataDog/dd-trace-rb/issues/882
2375
+ [#883]: https://github.com/DataDog/dd-trace-rb/issues/883
2376
+ [#884]: https://github.com/DataDog/dd-trace-rb/issues/884
2377
+ [#885]: https://github.com/DataDog/dd-trace-rb/issues/885
2378
+ [#886]: https://github.com/DataDog/dd-trace-rb/issues/886
2379
+ [#888]: https://github.com/DataDog/dd-trace-rb/issues/888
2380
+ [#890]: https://github.com/DataDog/dd-trace-rb/issues/890
2381
+ [#891]: https://github.com/DataDog/dd-trace-rb/issues/891
2382
+ [#892]: https://github.com/DataDog/dd-trace-rb/issues/892
2383
+ [#893]: https://github.com/DataDog/dd-trace-rb/issues/893
2384
+ [#894]: https://github.com/DataDog/dd-trace-rb/issues/894
2385
+ [#895]: https://github.com/DataDog/dd-trace-rb/issues/895
2386
+ [#896]: https://github.com/DataDog/dd-trace-rb/issues/896
2387
+ [#898]: https://github.com/DataDog/dd-trace-rb/issues/898
2388
+ [#899]: https://github.com/DataDog/dd-trace-rb/issues/899
2389
+ [#900]: https://github.com/DataDog/dd-trace-rb/issues/900
2390
+ [#903]: https://github.com/DataDog/dd-trace-rb/issues/903
2391
+ [#904]: https://github.com/DataDog/dd-trace-rb/issues/904
2392
+ [#906]: https://github.com/DataDog/dd-trace-rb/issues/906
2393
+ [#907]: https://github.com/DataDog/dd-trace-rb/issues/907
2394
+ [#909]: https://github.com/DataDog/dd-trace-rb/issues/909
2395
+ [#910]: https://github.com/DataDog/dd-trace-rb/issues/910
2396
+ [#911]: https://github.com/DataDog/dd-trace-rb/issues/911
2397
+ [#912]: https://github.com/DataDog/dd-trace-rb/issues/912
2398
+ [#913]: https://github.com/DataDog/dd-trace-rb/issues/913
2399
+ [#914]: https://github.com/DataDog/dd-trace-rb/issues/914
2400
+ [#915]: https://github.com/DataDog/dd-trace-rb/issues/915
2401
+ [#917]: https://github.com/DataDog/dd-trace-rb/issues/917
2402
+ [#918]: https://github.com/DataDog/dd-trace-rb/issues/918
2403
+ [#919]: https://github.com/DataDog/dd-trace-rb/issues/919
2404
+ [#920]: https://github.com/DataDog/dd-trace-rb/issues/920
2405
+ [#921]: https://github.com/DataDog/dd-trace-rb/issues/921
2406
+ [#927]: https://github.com/DataDog/dd-trace-rb/issues/927
2407
+ [#928]: https://github.com/DataDog/dd-trace-rb/issues/928
2408
+ [#929]: https://github.com/DataDog/dd-trace-rb/issues/929
2409
+ [#930]: https://github.com/DataDog/dd-trace-rb/issues/930
2410
+ [#932]: https://github.com/DataDog/dd-trace-rb/issues/932
2411
+ [#933]: https://github.com/DataDog/dd-trace-rb/issues/933
2412
+ [#934]: https://github.com/DataDog/dd-trace-rb/issues/934
2413
+ [#935]: https://github.com/DataDog/dd-trace-rb/issues/935
2414
+ [#937]: https://github.com/DataDog/dd-trace-rb/issues/937
2415
+ [#938]: https://github.com/DataDog/dd-trace-rb/issues/938
2416
+ [#940]: https://github.com/DataDog/dd-trace-rb/issues/940
2417
+ [#942]: https://github.com/DataDog/dd-trace-rb/issues/942
2418
+ [#943]: https://github.com/DataDog/dd-trace-rb/issues/943
2419
+ [#944]: https://github.com/DataDog/dd-trace-rb/issues/944
2420
+ [#945]: https://github.com/DataDog/dd-trace-rb/issues/945
2421
+ [#947]: https://github.com/DataDog/dd-trace-rb/issues/947
2422
+ [#948]: https://github.com/DataDog/dd-trace-rb/issues/948
2423
+ [#949]: https://github.com/DataDog/dd-trace-rb/issues/949
2424
+ [#950]: https://github.com/DataDog/dd-trace-rb/issues/950
2425
+ [#951]: https://github.com/DataDog/dd-trace-rb/issues/951
2426
+ [#952]: https://github.com/DataDog/dd-trace-rb/issues/952
2427
+ [#953]: https://github.com/DataDog/dd-trace-rb/issues/953
2428
+ [#954]: https://github.com/DataDog/dd-trace-rb/issues/954
2429
+ [#955]: https://github.com/DataDog/dd-trace-rb/issues/955
2430
+ [#956]: https://github.com/DataDog/dd-trace-rb/issues/956
2431
+ [#957]: https://github.com/DataDog/dd-trace-rb/issues/957
2432
+ [#960]: https://github.com/DataDog/dd-trace-rb/issues/960
2433
+ [#961]: https://github.com/DataDog/dd-trace-rb/issues/961
2434
+ [#964]: https://github.com/DataDog/dd-trace-rb/issues/964
2435
+ [#965]: https://github.com/DataDog/dd-trace-rb/issues/965
2436
+ [#966]: https://github.com/DataDog/dd-trace-rb/issues/966
2437
+ [#967]: https://github.com/DataDog/dd-trace-rb/issues/967
2438
+ [#968]: https://github.com/DataDog/dd-trace-rb/issues/968
2439
+ [#969]: https://github.com/DataDog/dd-trace-rb/issues/969
2440
+ [#971]: https://github.com/DataDog/dd-trace-rb/issues/971
2441
+ [#972]: https://github.com/DataDog/dd-trace-rb/issues/972
2442
+ [#973]: https://github.com/DataDog/dd-trace-rb/issues/973
2443
+ [#974]: https://github.com/DataDog/dd-trace-rb/issues/974
2444
+ [#975]: https://github.com/DataDog/dd-trace-rb/issues/975
2445
+ [#977]: https://github.com/DataDog/dd-trace-rb/issues/977
2446
+ [#980]: https://github.com/DataDog/dd-trace-rb/issues/980
2447
+ [#981]: https://github.com/DataDog/dd-trace-rb/issues/981
2448
+ [#982]: https://github.com/DataDog/dd-trace-rb/issues/982
2449
+ [#983]: https://github.com/DataDog/dd-trace-rb/issues/983
2450
+ [#985]: https://github.com/DataDog/dd-trace-rb/issues/985
2451
+ [#986]: https://github.com/DataDog/dd-trace-rb/issues/986
2452
+ [#988]: https://github.com/DataDog/dd-trace-rb/issues/988
2453
+ [#989]: https://github.com/DataDog/dd-trace-rb/issues/989
2454
+ [#990]: https://github.com/DataDog/dd-trace-rb/issues/990
2455
+ [#991]: https://github.com/DataDog/dd-trace-rb/issues/991
2456
+ [#993]: https://github.com/DataDog/dd-trace-rb/issues/993
2457
+ [#995]: https://github.com/DataDog/dd-trace-rb/issues/995
2458
+ [#996]: https://github.com/DataDog/dd-trace-rb/issues/996
2459
+ [#997]: https://github.com/DataDog/dd-trace-rb/issues/997
2460
+ [#1000]: https://github.com/DataDog/dd-trace-rb/issues/1000
2461
+ [#1004]: https://github.com/DataDog/dd-trace-rb/issues/1004
2462
+ [#1005]: https://github.com/DataDog/dd-trace-rb/issues/1005
2463
+ [#1006]: https://github.com/DataDog/dd-trace-rb/issues/1006
2464
+ [#1008]: https://github.com/DataDog/dd-trace-rb/issues/1008
2465
+ [#1009]: https://github.com/DataDog/dd-trace-rb/issues/1009
2466
+ [#1010]: https://github.com/DataDog/dd-trace-rb/issues/1010
2467
+ [#1015]: https://github.com/DataDog/dd-trace-rb/issues/1015
2468
+ [#1021]: https://github.com/DataDog/dd-trace-rb/issues/1021
2469
+ [#1023]: https://github.com/DataDog/dd-trace-rb/issues/1023
2470
+ [#1027]: https://github.com/DataDog/dd-trace-rb/issues/1027
2471
+ [#1030]: https://github.com/DataDog/dd-trace-rb/issues/1030
2472
+ [#1031]: https://github.com/DataDog/dd-trace-rb/issues/1031
2473
+ [#1032]: https://github.com/DataDog/dd-trace-rb/issues/1032
2474
+ [#1033]: https://github.com/DataDog/dd-trace-rb/issues/1033
2475
+ [#1034]: https://github.com/DataDog/dd-trace-rb/issues/1034
2476
+ [#1035]: https://github.com/DataDog/dd-trace-rb/issues/1035
2477
+ [#1037]: https://github.com/DataDog/dd-trace-rb/issues/1037
2478
+ [#1041]: https://github.com/DataDog/dd-trace-rb/issues/1041
2479
+ [#1043]: https://github.com/DataDog/dd-trace-rb/issues/1043
2480
+ [#1045]: https://github.com/DataDog/dd-trace-rb/issues/1045
2481
+ [#1046]: https://github.com/DataDog/dd-trace-rb/issues/1046
2482
+ [#1047]: https://github.com/DataDog/dd-trace-rb/issues/1047
2483
+ [#1051]: https://github.com/DataDog/dd-trace-rb/issues/1051
2484
+ [#1054]: https://github.com/DataDog/dd-trace-rb/issues/1054
2485
+ [#1057]: https://github.com/DataDog/dd-trace-rb/issues/1057
2486
+ [#1062]: https://github.com/DataDog/dd-trace-rb/issues/1062
2487
+ [#1070]: https://github.com/DataDog/dd-trace-rb/issues/1070
2488
+ [#1071]: https://github.com/DataDog/dd-trace-rb/issues/1071
2489
+ [#1072]: https://github.com/DataDog/dd-trace-rb/issues/1072
2490
+ [#1073]: https://github.com/DataDog/dd-trace-rb/issues/1073
2491
+ [#1074]: https://github.com/DataDog/dd-trace-rb/issues/1074
2492
+ [#1075]: https://github.com/DataDog/dd-trace-rb/issues/1075
2493
+ [#1076]: https://github.com/DataDog/dd-trace-rb/issues/1076
2494
+ [#1079]: https://github.com/DataDog/dd-trace-rb/issues/1079
2495
+ [#1081]: https://github.com/DataDog/dd-trace-rb/issues/1081
2496
+ [#1082]: https://github.com/DataDog/dd-trace-rb/issues/1082
2497
+ [#1086]: https://github.com/DataDog/dd-trace-rb/issues/1086
2498
+ [#1089]: https://github.com/DataDog/dd-trace-rb/issues/1089
2499
+ [#1090]: https://github.com/DataDog/dd-trace-rb/issues/1090
2500
+ [#1091]: https://github.com/DataDog/dd-trace-rb/issues/1091
2501
+ [#1092]: https://github.com/DataDog/dd-trace-rb/issues/1092
2502
+ [#1099]: https://github.com/DataDog/dd-trace-rb/issues/1099
2503
+ [#1100]: https://github.com/DataDog/dd-trace-rb/issues/1100
2504
+ [#1103]: https://github.com/DataDog/dd-trace-rb/issues/1103
2505
+ [#1104]: https://github.com/DataDog/dd-trace-rb/issues/1104
2506
+ [#1105]: https://github.com/DataDog/dd-trace-rb/issues/1105
2507
+ [#1107]: https://github.com/DataDog/dd-trace-rb/issues/1107
2508
+ [#1109]: https://github.com/DataDog/dd-trace-rb/issues/1109
2509
+ [#1115]: https://github.com/DataDog/dd-trace-rb/issues/1115
2510
+ [#1116]: https://github.com/DataDog/dd-trace-rb/issues/1116
2511
+ [#1118]: https://github.com/DataDog/dd-trace-rb/issues/1118
2512
+ [#1119]: https://github.com/DataDog/dd-trace-rb/issues/1119
2513
+ [#1120]: https://github.com/DataDog/dd-trace-rb/issues/1120
2514
+ [#1121]: https://github.com/DataDog/dd-trace-rb/issues/1121
2515
+ [#1122]: https://github.com/DataDog/dd-trace-rb/issues/1122
2516
+ [#1124]: https://github.com/DataDog/dd-trace-rb/issues/1124
2517
+ [#1125]: https://github.com/DataDog/dd-trace-rb/issues/1125
2518
+ [#1126]: https://github.com/DataDog/dd-trace-rb/issues/1126
2519
+ [#1127]: https://github.com/DataDog/dd-trace-rb/issues/1127
2520
+ [#1128]: https://github.com/DataDog/dd-trace-rb/issues/1128
2521
+ [#1129]: https://github.com/DataDog/dd-trace-rb/issues/1129
2522
+ [#1131]: https://github.com/DataDog/dd-trace-rb/issues/1131
2523
+ [#1133]: https://github.com/DataDog/dd-trace-rb/issues/1133
2524
+ [#1134]: https://github.com/DataDog/dd-trace-rb/issues/1134
2525
+ [#1137]: https://github.com/DataDog/dd-trace-rb/issues/1137
2526
+ [#1138]: https://github.com/DataDog/dd-trace-rb/issues/1138
2527
+ [#1141]: https://github.com/DataDog/dd-trace-rb/issues/1141
2528
+ [#1145]: https://github.com/DataDog/dd-trace-rb/issues/1145
2529
+ [#1146]: https://github.com/DataDog/dd-trace-rb/issues/1146
2530
+ [#1148]: https://github.com/DataDog/dd-trace-rb/issues/1148
2531
+ [#1149]: https://github.com/DataDog/dd-trace-rb/issues/1149
2532
+ [#1150]: https://github.com/DataDog/dd-trace-rb/issues/1150
2533
+ [#1151]: https://github.com/DataDog/dd-trace-rb/issues/1151
2534
+ [#1152]: https://github.com/DataDog/dd-trace-rb/issues/1152
2535
+ [#1153]: https://github.com/DataDog/dd-trace-rb/issues/1153
2536
+ [#1154]: https://github.com/DataDog/dd-trace-rb/issues/1154
2537
+ [#1155]: https://github.com/DataDog/dd-trace-rb/issues/1155
2538
+ [#1156]: https://github.com/DataDog/dd-trace-rb/issues/1156
2539
+ [#1157]: https://github.com/DataDog/dd-trace-rb/issues/1157
2540
+ [#1158]: https://github.com/DataDog/dd-trace-rb/issues/1158
2541
+ [#1159]: https://github.com/DataDog/dd-trace-rb/issues/1159
2542
+ [#1160]: https://github.com/DataDog/dd-trace-rb/issues/1160
2543
+ [#1162]: https://github.com/DataDog/dd-trace-rb/issues/1162
2544
+ [#1163]: https://github.com/DataDog/dd-trace-rb/issues/1163
2545
+ [#1165]: https://github.com/DataDog/dd-trace-rb/issues/1165
2546
+ [#1172]: https://github.com/DataDog/dd-trace-rb/issues/1172
2547
+ [#1173]: https://github.com/DataDog/dd-trace-rb/issues/1173
2548
+ [#1176]: https://github.com/DataDog/dd-trace-rb/issues/1176
2549
+ [#1177]: https://github.com/DataDog/dd-trace-rb/issues/1177
2550
+ [#1178]: https://github.com/DataDog/dd-trace-rb/issues/1178
2551
+ [#1179]: https://github.com/DataDog/dd-trace-rb/issues/1179
2552
+ [#1180]: https://github.com/DataDog/dd-trace-rb/issues/1180
2553
+ [#1181]: https://github.com/DataDog/dd-trace-rb/issues/1181
2554
+ [#1182]: https://github.com/DataDog/dd-trace-rb/issues/1182
2555
+ [#1183]: https://github.com/DataDog/dd-trace-rb/issues/1183
2556
+ [#1184]: https://github.com/DataDog/dd-trace-rb/issues/1184
2557
+ [#1185]: https://github.com/DataDog/dd-trace-rb/issues/1185
2558
+ [#1186]: https://github.com/DataDog/dd-trace-rb/issues/1186
2559
+ [#1187]: https://github.com/DataDog/dd-trace-rb/issues/1187
2560
+ [#1188]: https://github.com/DataDog/dd-trace-rb/issues/1188
2561
+ [#1189]: https://github.com/DataDog/dd-trace-rb/issues/1189
2562
+ [#1195]: https://github.com/DataDog/dd-trace-rb/issues/1195
2563
+ [#1198]: https://github.com/DataDog/dd-trace-rb/issues/1198
2564
+ [#1199]: https://github.com/DataDog/dd-trace-rb/issues/1199
2565
+ [#1200]: https://github.com/DataDog/dd-trace-rb/issues/1200
2566
+ [#1203]: https://github.com/DataDog/dd-trace-rb/issues/1203
2567
+ [#1204]: https://github.com/DataDog/dd-trace-rb/issues/1204
2568
+ [#1210]: https://github.com/DataDog/dd-trace-rb/issues/1210
2569
+ [#1212]: https://github.com/DataDog/dd-trace-rb/issues/1212
2570
+ [#1213]: https://github.com/DataDog/dd-trace-rb/issues/1213
2571
+ [#1216]: https://github.com/DataDog/dd-trace-rb/issues/1216
2572
+ [#1217]: https://github.com/DataDog/dd-trace-rb/issues/1217
2573
+ [#1218]: https://github.com/DataDog/dd-trace-rb/issues/1218
2574
+ [#1220]: https://github.com/DataDog/dd-trace-rb/issues/1220
2575
+ [#1224]: https://github.com/DataDog/dd-trace-rb/issues/1224
2576
+ [#1225]: https://github.com/DataDog/dd-trace-rb/issues/1225
2577
+ [#1226]: https://github.com/DataDog/dd-trace-rb/issues/1226
2578
+ [#1227]: https://github.com/DataDog/dd-trace-rb/issues/1227
2579
+ [#1229]: https://github.com/DataDog/dd-trace-rb/issues/1229
2580
+ [#1232]: https://github.com/DataDog/dd-trace-rb/issues/1232
2581
+ [#1233]: https://github.com/DataDog/dd-trace-rb/issues/1233
2582
+ [#1234]: https://github.com/DataDog/dd-trace-rb/issues/1234
2583
+ [#1235]: https://github.com/DataDog/dd-trace-rb/issues/1235
2584
+ [#1236]: https://github.com/DataDog/dd-trace-rb/issues/1236
2585
+ [#1237]: https://github.com/DataDog/dd-trace-rb/issues/1237
2586
+ [#1238]: https://github.com/DataDog/dd-trace-rb/issues/1238
2587
+ [#1239]: https://github.com/DataDog/dd-trace-rb/issues/1239
2588
+ [#1243]: https://github.com/DataDog/dd-trace-rb/issues/1243
2589
+ [#1244]: https://github.com/DataDog/dd-trace-rb/issues/1244
2590
+ [#1248]: https://github.com/DataDog/dd-trace-rb/issues/1248
2591
+ [#1256]: https://github.com/DataDog/dd-trace-rb/issues/1256
2592
+ [#1257]: https://github.com/DataDog/dd-trace-rb/issues/1257
2593
+ [#1260]: https://github.com/DataDog/dd-trace-rb/issues/1260
2594
+ [#1262]: https://github.com/DataDog/dd-trace-rb/issues/1262
2595
+ [#1263]: https://github.com/DataDog/dd-trace-rb/issues/1263
2596
+ [#1264]: https://github.com/DataDog/dd-trace-rb/issues/1264
2597
+ [#1266]: https://github.com/DataDog/dd-trace-rb/issues/1266
2598
+ [#1267]: https://github.com/DataDog/dd-trace-rb/issues/1267
2599
+ [#1268]: https://github.com/DataDog/dd-trace-rb/issues/1268
2600
+ [#1269]: https://github.com/DataDog/dd-trace-rb/issues/1269
2601
+ [#1270]: https://github.com/DataDog/dd-trace-rb/issues/1270
2602
+ [#1272]: https://github.com/DataDog/dd-trace-rb/issues/1272
2603
+ [#1273]: https://github.com/DataDog/dd-trace-rb/issues/1273
2604
+ [#1275]: https://github.com/DataDog/dd-trace-rb/issues/1275
2605
+ [#1276]: https://github.com/DataDog/dd-trace-rb/issues/1276
2606
+ [#1277]: https://github.com/DataDog/dd-trace-rb/issues/1277
2607
+ [#1278]: https://github.com/DataDog/dd-trace-rb/issues/1278
2608
+ [#1279]: https://github.com/DataDog/dd-trace-rb/issues/1279
2609
+ [#1280]: https://github.com/DataDog/dd-trace-rb/issues/1280
2610
+ [#1281]: https://github.com/DataDog/dd-trace-rb/issues/1281
2611
+ [#1283]: https://github.com/DataDog/dd-trace-rb/issues/1283
2612
+ [#1284]: https://github.com/DataDog/dd-trace-rb/issues/1284
2613
+ [#1286]: https://github.com/DataDog/dd-trace-rb/issues/1286
2614
+ [#1287]: https://github.com/DataDog/dd-trace-rb/issues/1287
2615
+ [#1289]: https://github.com/DataDog/dd-trace-rb/issues/1289
2616
+ [#1291]: https://github.com/DataDog/dd-trace-rb/issues/1291
2617
+ [#1293]: https://github.com/DataDog/dd-trace-rb/issues/1293
2618
+ [#1295]: https://github.com/DataDog/dd-trace-rb/issues/1295
2619
+ [#1296]: https://github.com/DataDog/dd-trace-rb/issues/1296
2620
+ [#1297]: https://github.com/DataDog/dd-trace-rb/issues/1297
2621
+ [#1298]: https://github.com/DataDog/dd-trace-rb/issues/1298
2622
+ [#1299]: https://github.com/DataDog/dd-trace-rb/issues/1299
2623
+ [#1302]: https://github.com/DataDog/dd-trace-rb/issues/1302
2624
+ [#1303]: https://github.com/DataDog/dd-trace-rb/issues/1303
2625
+ [#1304]: https://github.com/DataDog/dd-trace-rb/issues/1304
2626
+ [#1305]: https://github.com/DataDog/dd-trace-rb/issues/1305
2627
+ [#1306]: https://github.com/DataDog/dd-trace-rb/issues/1306
2628
+ [#1307]: https://github.com/DataDog/dd-trace-rb/issues/1307
2629
+ [#1309]: https://github.com/DataDog/dd-trace-rb/issues/1309
2630
+ [#1311]: https://github.com/DataDog/dd-trace-rb/issues/1311
2631
+ [#1317]: https://github.com/DataDog/dd-trace-rb/issues/1317
2632
+ [#1318]: https://github.com/DataDog/dd-trace-rb/issues/1318
2633
+ [#1319]: https://github.com/DataDog/dd-trace-rb/issues/1319
2634
+ [#1320]: https://github.com/DataDog/dd-trace-rb/issues/1320
2635
+ [#1321]: https://github.com/DataDog/dd-trace-rb/issues/1321
2636
+ [#1323]: https://github.com/DataDog/dd-trace-rb/issues/1323
2637
+ [#1325]: https://github.com/DataDog/dd-trace-rb/issues/1325
2638
+ [#1326]: https://github.com/DataDog/dd-trace-rb/issues/1326
2639
+ [#1331]: https://github.com/DataDog/dd-trace-rb/issues/1331
2640
+ [#1332]: https://github.com/DataDog/dd-trace-rb/issues/1332
2641
+ [#1334]: https://github.com/DataDog/dd-trace-rb/issues/1334
2642
+ [#1336]: https://github.com/DataDog/dd-trace-rb/issues/1336
2643
+ [#1341]: https://github.com/DataDog/dd-trace-rb/issues/1341
2644
+ [#1342]: https://github.com/DataDog/dd-trace-rb/issues/1342
2645
+ [#1343]: https://github.com/DataDog/dd-trace-rb/issues/1343
2646
+ [#1346]: https://github.com/DataDog/dd-trace-rb/issues/1346
2647
+ [#1347]: https://github.com/DataDog/dd-trace-rb/issues/1347
2648
+ [#1350]: https://github.com/DataDog/dd-trace-rb/issues/1350
2649
+ [#1352]: https://github.com/DataDog/dd-trace-rb/issues/1352
2650
+ [#1353]: https://github.com/DataDog/dd-trace-rb/issues/1353
2651
+ [#1354]: https://github.com/DataDog/dd-trace-rb/issues/1354
2652
+ [#1357]: https://github.com/DataDog/dd-trace-rb/issues/1357
2653
+ [#1365]: https://github.com/DataDog/dd-trace-rb/issues/1365
2654
+ [#1366]: https://github.com/DataDog/dd-trace-rb/issues/1366
2655
+ [#1367]: https://github.com/DataDog/dd-trace-rb/issues/1367
2656
+ [#1368]: https://github.com/DataDog/dd-trace-rb/issues/1368
2657
+ [#1369]: https://github.com/DataDog/dd-trace-rb/issues/1369
2658
+ [#1370]: https://github.com/DataDog/dd-trace-rb/issues/1370
2659
+ [#1371]: https://github.com/DataDog/dd-trace-rb/issues/1371
2660
+ [#1374]: https://github.com/DataDog/dd-trace-rb/issues/1374
2661
+ [#1377]: https://github.com/DataDog/dd-trace-rb/issues/1377
2662
+ [#1378]: https://github.com/DataDog/dd-trace-rb/issues/1378
2663
+ [#1379]: https://github.com/DataDog/dd-trace-rb/issues/1379
2664
+ [#1380]: https://github.com/DataDog/dd-trace-rb/issues/1380
2665
+ [#1381]: https://github.com/DataDog/dd-trace-rb/issues/1381
2666
+ [#1393]: https://github.com/DataDog/dd-trace-rb/issues/1393
2667
+ [#1394]: https://github.com/DataDog/dd-trace-rb/issues/1394
2668
+ [#1396]: https://github.com/DataDog/dd-trace-rb/issues/1396
2669
+ [#1397]: https://github.com/DataDog/dd-trace-rb/issues/1397
2670
+ [#1398]: https://github.com/DataDog/dd-trace-rb/issues/1398
2671
+ [#1399]: https://github.com/DataDog/dd-trace-rb/issues/1399
2672
+ [#1400]: https://github.com/DataDog/dd-trace-rb/issues/1400
2673
+ [#1403]: https://github.com/DataDog/dd-trace-rb/issues/1403
2674
+ [#1406]: https://github.com/DataDog/dd-trace-rb/issues/1406
2675
+ [#1408]: https://github.com/DataDog/dd-trace-rb/issues/1408
2676
+ [#1409]: https://github.com/DataDog/dd-trace-rb/issues/1409
2677
+ [#1412]: https://github.com/DataDog/dd-trace-rb/issues/1412
2678
+ [#1414]: https://github.com/DataDog/dd-trace-rb/issues/1414
2679
+ [#1415]: https://github.com/DataDog/dd-trace-rb/issues/1415
2680
+ [#1416]: https://github.com/DataDog/dd-trace-rb/issues/1416
2681
+ [#1417]: https://github.com/DataDog/dd-trace-rb/issues/1417
2682
+ [#1418]: https://github.com/DataDog/dd-trace-rb/issues/1418
2683
+ [#1419]: https://github.com/DataDog/dd-trace-rb/issues/1419
2684
+ [#1420]: https://github.com/DataDog/dd-trace-rb/issues/1420
2685
+ [#1421]: https://github.com/DataDog/dd-trace-rb/issues/1421
2686
+ [#1422]: https://github.com/DataDog/dd-trace-rb/issues/1422
2687
+ [#1423]: https://github.com/DataDog/dd-trace-rb/issues/1423
2688
+ [#1426]: https://github.com/DataDog/dd-trace-rb/issues/1426
2689
+ [#1427]: https://github.com/DataDog/dd-trace-rb/issues/1427
2690
+ [#1428]: https://github.com/DataDog/dd-trace-rb/issues/1428
2691
+ [#1429]: https://github.com/DataDog/dd-trace-rb/issues/1429
2692
+ [#1430]: https://github.com/DataDog/dd-trace-rb/issues/1430
2693
+ [#1431]: https://github.com/DataDog/dd-trace-rb/issues/1431
2694
+ [#1432]: https://github.com/DataDog/dd-trace-rb/issues/1432
2695
+ [#1435]: https://github.com/DataDog/dd-trace-rb/issues/1435
2696
+ [#1441]: https://github.com/DataDog/dd-trace-rb/issues/1441
2697
+ [#1445]: https://github.com/DataDog/dd-trace-rb/issues/1445
2698
+ [#1447]: https://github.com/DataDog/dd-trace-rb/issues/1447
2699
+ [#1449]: https://github.com/DataDog/dd-trace-rb/issues/1449
2700
+ [#1453]: https://github.com/DataDog/dd-trace-rb/issues/1453
2701
+ [#1455]: https://github.com/DataDog/dd-trace-rb/issues/1455
2702
+ [#1456]: https://github.com/DataDog/dd-trace-rb/issues/1456
2703
+ [#1457]: https://github.com/DataDog/dd-trace-rb/issues/1457
2704
+ [#1461]: https://github.com/DataDog/dd-trace-rb/issues/1461
2705
+ [#1472]: https://github.com/DataDog/dd-trace-rb/issues/1472
2706
+ [#1473]: https://github.com/DataDog/dd-trace-rb/issues/1473
2707
+ [#1475]: https://github.com/DataDog/dd-trace-rb/issues/1475
2708
+ [#1480]: https://github.com/DataDog/dd-trace-rb/issues/1480
2709
+ [#1487]: https://github.com/DataDog/dd-trace-rb/issues/1487
2710
+ [#1489]: https://github.com/DataDog/dd-trace-rb/issues/1489
2711
+ [#1494]: https://github.com/DataDog/dd-trace-rb/issues/1494
2712
+ [#1495]: https://github.com/DataDog/dd-trace-rb/issues/1495
2713
+ [#1497]: https://github.com/DataDog/dd-trace-rb/issues/1497
2714
+ [#1500]: https://github.com/DataDog/dd-trace-rb/issues/1500
2715
+ [#1502]: https://github.com/DataDog/dd-trace-rb/issues/1502
2716
+ [#1503]: https://github.com/DataDog/dd-trace-rb/issues/1503
2717
+ [#1504]: https://github.com/DataDog/dd-trace-rb/issues/1504
2718
+ [#1506]: https://github.com/DataDog/dd-trace-rb/issues/1506
2719
+ [#1507]: https://github.com/DataDog/dd-trace-rb/issues/1507
2720
+ [#1509]: https://github.com/DataDog/dd-trace-rb/issues/1509
2721
+ [#1510]: https://github.com/DataDog/dd-trace-rb/issues/1510
2722
+ [#1511]: https://github.com/DataDog/dd-trace-rb/issues/1511
2723
+ [#1523]: https://github.com/DataDog/dd-trace-rb/issues/1523
2724
+ [#1524]: https://github.com/DataDog/dd-trace-rb/issues/1524
2725
+ [#1529]: https://github.com/DataDog/dd-trace-rb/issues/1529
2726
+ [#1533]: https://github.com/DataDog/dd-trace-rb/issues/1533
2727
+ [#1534]: https://github.com/DataDog/dd-trace-rb/issues/1534
2728
+ [#1535]: https://github.com/DataDog/dd-trace-rb/issues/1535
2729
+ [#1537]: https://github.com/DataDog/dd-trace-rb/issues/1537
2730
+ [#1543]: https://github.com/DataDog/dd-trace-rb/issues/1543
2731
+ [#1544]: https://github.com/DataDog/dd-trace-rb/issues/1544
2732
+ [#1552]: https://github.com/DataDog/dd-trace-rb/issues/1552
2733
+ [#1555]: https://github.com/DataDog/dd-trace-rb/issues/1555
2734
+ [#1556]: https://github.com/DataDog/dd-trace-rb/issues/1556
2735
+ [#1557]: https://github.com/DataDog/dd-trace-rb/issues/1557
2736
+ [#1560]: https://github.com/DataDog/dd-trace-rb/issues/1560
2737
+ [#1561]: https://github.com/DataDog/dd-trace-rb/issues/1561
2738
+ [#1566]: https://github.com/DataDog/dd-trace-rb/issues/1566
2739
+ [#1570]: https://github.com/DataDog/dd-trace-rb/issues/1570
2740
+ [#1572]: https://github.com/DataDog/dd-trace-rb/issues/1572
2741
+ [#1576]: https://github.com/DataDog/dd-trace-rb/issues/1576
2742
+ [#1583]: https://github.com/DataDog/dd-trace-rb/issues/1583
2743
+ [#1584]: https://github.com/DataDog/dd-trace-rb/issues/1584
2744
+ [#1585]: https://github.com/DataDog/dd-trace-rb/issues/1585
2745
+ [#1586]: https://github.com/DataDog/dd-trace-rb/issues/1586
2746
+ [#1587]: https://github.com/DataDog/dd-trace-rb/issues/1587
2747
+ [#1590]: https://github.com/DataDog/dd-trace-rb/issues/1590
2748
+ [#1592]: https://github.com/DataDog/dd-trace-rb/issues/1592
2749
+ [#1594]: https://github.com/DataDog/dd-trace-rb/issues/1594
2750
+ [#1595]: https://github.com/DataDog/dd-trace-rb/issues/1595
2751
+ [#1601]: https://github.com/DataDog/dd-trace-rb/issues/1601
2752
+ [#1607]: https://github.com/DataDog/dd-trace-rb/issues/1607
2753
+ [#1622]: https://github.com/DataDog/dd-trace-rb/issues/1622
2754
+ [#1623]: https://github.com/DataDog/dd-trace-rb/issues/1623
2755
+ [#1626]: https://github.com/DataDog/dd-trace-rb/issues/1626
2756
+ [#1628]: https://github.com/DataDog/dd-trace-rb/issues/1628
2757
+ [#1629]: https://github.com/DataDog/dd-trace-rb/issues/1629
2758
+ [#1630]: https://github.com/DataDog/dd-trace-rb/issues/1630
2759
+ [#1632]: https://github.com/DataDog/dd-trace-rb/issues/1632
2760
+ [#1636]: https://github.com/DataDog/dd-trace-rb/issues/1636
2761
+ [#1639]: https://github.com/DataDog/dd-trace-rb/issues/1639
2762
+ [#1643]: https://github.com/DataDog/dd-trace-rb/issues/1643
2763
+ [#1644]: https://github.com/DataDog/dd-trace-rb/issues/1644
2764
+ [#1654]: https://github.com/DataDog/dd-trace-rb/issues/1654
2765
+ [#1661]: https://github.com/DataDog/dd-trace-rb/issues/1661
2766
+ [#1662]: https://github.com/DataDog/dd-trace-rb/issues/1662
2767
+ [#1668]: https://github.com/DataDog/dd-trace-rb/issues/1668
2768
+ [#1674]: https://github.com/DataDog/dd-trace-rb/issues/1674
2769
+ [#1680]: https://github.com/DataDog/dd-trace-rb/issues/1680
2770
+ [#1684]: https://github.com/DataDog/dd-trace-rb/issues/1684
2771
+ [#1685]: https://github.com/DataDog/dd-trace-rb/issues/1685
2772
+ [#1687]: https://github.com/DataDog/dd-trace-rb/issues/1687
2773
+ [#1688]: https://github.com/DataDog/dd-trace-rb/issues/1688
2774
+ [#1694]: https://github.com/DataDog/dd-trace-rb/issues/1694
2775
+ [#1695]: https://github.com/DataDog/dd-trace-rb/issues/1695
2776
+ [#1699]: https://github.com/DataDog/dd-trace-rb/issues/1699
2777
+ [#1700]: https://github.com/DataDog/dd-trace-rb/issues/1700
2778
+ [#1702]: https://github.com/DataDog/dd-trace-rb/issues/1702
2779
+ [#1703]: https://github.com/DataDog/dd-trace-rb/issues/1703
2780
+ [#1706]: https://github.com/DataDog/dd-trace-rb/issues/1706
2781
+ [#1709]: https://github.com/DataDog/dd-trace-rb/issues/1709
2782
+ [#1712]: https://github.com/DataDog/dd-trace-rb/issues/1712
2783
+ [#1713]: https://github.com/DataDog/dd-trace-rb/issues/1713
2784
+ [#1714]: https://github.com/DataDog/dd-trace-rb/issues/1714
2785
+ [#1715]: https://github.com/DataDog/dd-trace-rb/issues/1715
2786
+ [#1717]: https://github.com/DataDog/dd-trace-rb/issues/1717
2787
+ [#1718]: https://github.com/DataDog/dd-trace-rb/issues/1718
2788
+ [#1719]: https://github.com/DataDog/dd-trace-rb/issues/1719
2789
+ [#1720]: https://github.com/DataDog/dd-trace-rb/issues/1720
2790
+ [#1721]: https://github.com/DataDog/dd-trace-rb/issues/1721
2791
+ [#1735]: https://github.com/DataDog/dd-trace-rb/issues/1735
2792
+ [#1740]: https://github.com/DataDog/dd-trace-rb/issues/1740
2793
+ [#1743]: https://github.com/DataDog/dd-trace-rb/issues/1743
2794
+ [#1745]: https://github.com/DataDog/dd-trace-rb/issues/1745
2795
+ [#1761]: https://github.com/DataDog/dd-trace-rb/issues/1761
2796
+ [#1762]: https://github.com/DataDog/dd-trace-rb/issues/1762
2797
+ [#1763]: https://github.com/DataDog/dd-trace-rb/issues/1763
2798
+ [#1769]: https://github.com/DataDog/dd-trace-rb/issues/1769
2799
+ [#1770]: https://github.com/DataDog/dd-trace-rb/issues/1770
2800
+ [#1771]: https://github.com/DataDog/dd-trace-rb/issues/1771
2801
+ [#1774]: https://github.com/DataDog/dd-trace-rb/issues/1774
2802
+ [#1776]: https://github.com/DataDog/dd-trace-rb/issues/1776
2803
+ [#1798]: https://github.com/DataDog/dd-trace-rb/issues/1798
2804
+ [#1801]: https://github.com/DataDog/dd-trace-rb/issues/1801
2805
+ [#1807]: https://github.com/DataDog/dd-trace-rb/issues/1807
2806
+ [#1816]: https://github.com/DataDog/dd-trace-rb/issues/1816
2807
+ [#1820]: https://github.com/DataDog/dd-trace-rb/issues/1820
2808
+ [#1829]: https://github.com/DataDog/dd-trace-rb/issues/1829
2809
+ [#1911]: https://github.com/DataDog/dd-trace-rb/issues/1911
2810
+ [#1914]: https://github.com/DataDog/dd-trace-rb/issues/1914
2811
+ [#1917]: https://github.com/DataDog/dd-trace-rb/issues/1917
2812
+ [#1919]: https://github.com/DataDog/dd-trace-rb/issues/1919
2813
+ [#1922]: https://github.com/DataDog/dd-trace-rb/issues/1922
2814
+ [#1927]: https://github.com/DataDog/dd-trace-rb/issues/1927
2815
+ [#1930]: https://github.com/DataDog/dd-trace-rb/issues/1930
2816
+ [#1931]: https://github.com/DataDog/dd-trace-rb/issues/1931
2817
+ [#1932]: https://github.com/DataDog/dd-trace-rb/issues/1932
2818
+ [#1933]: https://github.com/DataDog/dd-trace-rb/issues/1933
2819
+ [#1937]: https://github.com/DataDog/dd-trace-rb/issues/1937
2820
+ [#1938]: https://github.com/DataDog/dd-trace-rb/issues/1938
2821
+ [#1939]: https://github.com/DataDog/dd-trace-rb/issues/1939
2822
+ [#1940]: https://github.com/DataDog/dd-trace-rb/issues/1940
2823
+ [#1942]: https://github.com/DataDog/dd-trace-rb/issues/1942
2824
+ [#1943]: https://github.com/DataDog/dd-trace-rb/issues/1943
2825
+ [#1945]: https://github.com/DataDog/dd-trace-rb/issues/1945
2826
+ [#1948]: https://github.com/DataDog/dd-trace-rb/issues/1948
2827
+ [#1955]: https://github.com/DataDog/dd-trace-rb/issues/1955
2828
+ [#1956]: https://github.com/DataDog/dd-trace-rb/issues/1956
2829
+ [#1958]: https://github.com/DataDog/dd-trace-rb/issues/1958
2830
+ [#1959]: https://github.com/DataDog/dd-trace-rb/issues/1959
2831
+ [#1961]: https://github.com/DataDog/dd-trace-rb/issues/1961
2832
+ [#1964]: https://github.com/DataDog/dd-trace-rb/issues/1964
2833
+ [#1965]: https://github.com/DataDog/dd-trace-rb/issues/1965
2834
+ [#1968]: https://github.com/DataDog/dd-trace-rb/issues/1968
2835
+ [#1970]: https://github.com/DataDog/dd-trace-rb/issues/1970
2836
+ [#1972]: https://github.com/DataDog/dd-trace-rb/issues/1972
2837
+ [#1973]: https://github.com/DataDog/dd-trace-rb/issues/1973
2838
+ [#1974]: https://github.com/DataDog/dd-trace-rb/issues/1974
2839
+ [#1975]: https://github.com/DataDog/dd-trace-rb/issues/1975
2840
+ [#1976]: https://github.com/DataDog/dd-trace-rb/issues/1976
2841
+ [#1980]: https://github.com/DataDog/dd-trace-rb/issues/1980
2842
+ [#1981]: https://github.com/DataDog/dd-trace-rb/issues/1981
2843
+ [#1982]: https://github.com/DataDog/dd-trace-rb/issues/1982
2844
+ [#1983]: https://github.com/DataDog/dd-trace-rb/issues/1983
2845
+ [#1984]: https://github.com/DataDog/dd-trace-rb/issues/1984
2846
+ [#1985]: https://github.com/DataDog/dd-trace-rb/issues/1985
2847
+ [#1989]: https://github.com/DataDog/dd-trace-rb/issues/1989
2848
+ [#1990]: https://github.com/DataDog/dd-trace-rb/issues/1990
2849
+ [#1991]: https://github.com/DataDog/dd-trace-rb/issues/1991
2850
+ [#1992]: https://github.com/DataDog/dd-trace-rb/issues/1992
2851
+ [#1998]: https://github.com/DataDog/dd-trace-rb/issues/1998
2852
+ [#2010]: https://github.com/DataDog/dd-trace-rb/issues/2010
2853
+ [#2011]: https://github.com/DataDog/dd-trace-rb/issues/2011
2854
+ [#2022]: https://github.com/DataDog/dd-trace-rb/issues/2022
2855
+ [#2028]: https://github.com/DataDog/dd-trace-rb/issues/2028
2856
+ [@AdrianLC]: https://github.com/AdrianLC
2857
+ [@Azure7111]: https://github.com/Azure7111
2858
+ [@BabyGroot]: https://github.com/BabyGroot
2859
+ [@DocX]: https://github.com/DocX
2860
+ [@Drowze]: https://github.com/Drowze
2861
+ [@EpiFouloux]: https://github.com/EpiFouloux
2862
+ [@EvNomad]: https://github.com/EvNomad
2863
+ [@HoneyryderChuck]: https://github.com/HoneyryderChuck
2864
+ [@JamesHarker]: https://github.com/JamesHarker
2865
+ [@Jared-Prime]: https://github.com/Jared-Prime
2866
+ [@Joas1988]: https://github.com/Joas1988
2867
+ [@JustSnow]: https://github.com/JustSnow
2868
+ [@MMartyn]: https://github.com/MMartyn
2869
+ [@NobodysNightmare]: https://github.com/NobodysNightmare
2870
+ [@Redapted]: https://github.com/Redapted
2871
+ [@Sticksword]: https://github.com/Sticksword
2872
+ [@Supy]: https://github.com/Supy
2873
+ [@Yurokle]: https://github.com/Yurokle
2874
+ [@ZimbiX]: https://github.com/ZimbiX
2875
+ [@agirlnamedsophia]: https://github.com/agirlnamedsophia
2876
+ [@agrobbin]: https://github.com/agrobbin
2877
+ [@ahammel]: https://github.com/ahammel
2878
+ [@al-kudryavtsev]: https://github.com/al-kudryavtsev
2879
+ [@alksl]: https://github.com/alksl
2880
+ [@alloy]: https://github.com/alloy
2881
+ [@aurelian]: https://github.com/aurelian
2882
+ [@awendt]: https://github.com/awendt
2883
+ [@bartekbsh]: https://github.com/bartekbsh
2884
+ [@benhutton]: https://github.com/benhutton
2885
+ [@bensheldon]: https://github.com/bensheldon
2886
+ [@bheemreddy181]: https://github.com/bheemreddy181
2887
+ [@blaines]: https://github.com/blaines
2888
+ [@brafales]: https://github.com/brafales
2889
+ [@bzf]: https://github.com/bzf
2890
+ [@callumj]: https://github.com/callumj
2891
+ [@carlallen]: https://github.com/carlallen
2892
+ [@chychkan]: https://github.com/chychkan
2893
+ [@cjford]: https://github.com/cjford
2894
+ [@ck3g]: https://github.com/ck3g
2895
+ [@components]: https://github.com/components
2896
+ [@cswatt]: https://github.com/cswatt
2897
+ [@cwoodcox]: https://github.com/cwoodcox
2898
+ [@dasch]: https://github.com/dasch
2899
+ [@dim]: https://github.com/dim
2900
+ [@dirk]: https://github.com/dirk
2901
+ [@djmb]: https://github.com/djmb
2902
+ [@dorner]: https://github.com/dorner
2903
+ [@drcapulet]: https://github.com/drcapulet
2904
+ [@dudo]: https://github.com/dudo
2905
+ [@e1senh0rn]: https://github.com/e1senh0rn
2906
+ [@ecdemis123]: https://github.com/ecdemis123
2907
+ [@elliterate]: https://github.com/elliterate
2908
+ [@elyalvarado]: https://github.com/elyalvarado
2909
+ [@ericmustin]: https://github.com/ericmustin
2910
+ [@erict-square]: https://github.com/erict-square
2911
+ [@errriclee]: https://github.com/errriclee
2912
+ [@evan-waters]: https://github.com/evan-waters
2913
+ [@fledman]: https://github.com/fledman
2914
+ [@frsantos]: https://github.com/frsantos
2915
+ [@fteem]: https://github.com/fteem
2916
+ [@gaborszakacs]: https://github.com/gaborszakacs
2917
+ [@giancarlocosta]: https://github.com/giancarlocosta
2918
+ [@gingerlime]: https://github.com/gingerlime
2919
+ [@gkampjes]: https://github.com/gkampjes
2920
+ [@gottfrois]: https://github.com/gottfrois
2921
+ [@guizmaii]: https://github.com/guizmaii
2922
+ [@hatstand]: https://github.com/hatstand
2923
+ [@hawknewton]: https://github.com/hawknewton
2924
+ [@hs-bguven]: https://github.com/hs-bguven
2925
+ [@illdelph]: https://github.com/illdelph
2926
+ [@jamiehodge]: https://github.com/jamiehodge
2927
+ [@janz93]: https://github.com/janz93
2928
+ [@jeffjo]: https://github.com/jeffjo
2929
+ [@jfrancoist]: https://github.com/jfrancoist
2930
+ [@joeyAghion]: https://github.com/joeyAghion
2931
+ [@jpaulgs]: https://github.com/jpaulgs
2932
+ [@justinhoward]: https://github.com/justinhoward
2933
+ [@jvalanen]: https://github.com/jvalanen
2934
+ [@kelvin-acosta]: https://github.com/kelvin-acosta
2935
+ [@kexoth]: https://github.com/kexoth
2936
+ [@kissrobber]: https://github.com/kissrobber
2937
+ [@kitop]: https://github.com/kitop
2938
+ [@letiesperon]: https://github.com/letiesperon
2939
+ [@link04]: https://github.com/link04
2940
+ [@lloeki]: https://github.com/lloeki
2941
+ [@mantrala]: https://github.com/mantrala
2942
+ [@masato-hi]: https://github.com/masato-hi
2943
+ [@matchbookmac]: https://github.com/matchbookmac
2944
+ [@mberlanda]: https://github.com/mberlanda
2945
+ [@mdehoog]: https://github.com/mdehoog
2946
+ [@mdross95]: https://github.com/mdross95
2947
+ [@michaelkl]: https://github.com/michaelkl
2948
+ [@mriddle]: https://github.com/mriddle
2949
+ [@mscrivo]: https://github.com/mscrivo
2950
+ [@mstruve]: https://github.com/mstruve
2951
+ [@mustela]: https://github.com/mustela
2952
+ [@nic-lan]: https://github.com/nic-lan
2953
+ [@noma4i]: https://github.com/noma4i
2954
+ [@norbertnytko]: https://github.com/norbertnytko
2955
+ [@orekyuu]: https://github.com/orekyuu
2956
+ [@palin]: https://github.com/palin
2957
+ [@pj0tr]: https://github.com/pj0tr
2958
+ [@psycholein]: https://github.com/psycholein
2959
+ [@pzaich]: https://github.com/pzaich
2960
+ [@rahul342]: https://github.com/rahul342
2961
+ [@randy-girard]: https://github.com/randy-girard
2962
+ [@renchap]: https://github.com/renchap
2963
+ [@ricbartm]: https://github.com/ricbartm
2964
+ [@roccoblues]: https://github.com/roccoblues
2965
+ [@saturnflyer]: https://github.com/saturnflyer
2966
+ [@sco11morgan]: https://github.com/sco11morgan
2967
+ [@senny]: https://github.com/senny
2968
+ [@shayonj]: https://github.com/shayonj
2969
+ [@sinsoku]: https://github.com/sinsoku
2970
+ [@skcc321]: https://github.com/skcc321
2971
+ [@soulcutter]: https://github.com/soulcutter
2972
+ [@stefanahman]: https://github.com/stefanahman
2973
+ [@steveh]: https://github.com/steveh
2974
+ [@stormsilver]: https://github.com/stormsilver
2975
+ [@sullimander]: https://github.com/sullimander
2976
+ [@tjgrathwell]: https://github.com/tjgrathwell
2977
+ [@tjwp]: https://github.com/tjwp
2978
+ [@tomasv]: https://github.com/tomasv
2979
+ [@tomgi]: https://github.com/tomgi
2980
+ [@tonypinder]: https://github.com/tonypinder
2981
+ [@twe4ked]: https://github.com/twe4ked
2982
+ [@undergroundwebdesigns]: https://github.com/undergroundwebdesigns
2983
+ [@vramaiah]: https://github.com/vramaiah
2984
+ [@walterking]: https://github.com/walterking
2985
+ [@y-yagi]: https://github.com/y-yagi
2986
+ [@zachmccormick]: https://github.com/zachmccormick