ddtrace 0.34.1 → 1.23.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1171) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +3321 -277
  3. data/LICENSE-3rdparty.csv +8 -0
  4. data/README.md +17 -9
  5. data/bin/ddprofrb +15 -0
  6. data/bin/ddtracerb +17 -0
  7. data/ext/datadog_profiling_loader/datadog_profiling_loader.c +134 -0
  8. data/ext/datadog_profiling_loader/extconf.rb +72 -0
  9. data/ext/datadog_profiling_native_extension/NativeExtensionDesign.md +156 -0
  10. data/ext/datadog_profiling_native_extension/clock_id.h +22 -0
  11. data/ext/datadog_profiling_native_extension/clock_id_from_pthread.c +56 -0
  12. data/ext/datadog_profiling_native_extension/clock_id_noop.c +22 -0
  13. data/ext/datadog_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +1161 -0
  14. data/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c +422 -0
  15. data/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h +101 -0
  16. data/ext/datadog_profiling_native_extension/collectors_dynamic_sampling_rate.c +150 -0
  17. data/ext/datadog_profiling_native_extension/collectors_dynamic_sampling_rate.h +18 -0
  18. data/ext/datadog_profiling_native_extension/collectors_gc_profiling_helper.c +156 -0
  19. data/ext/datadog_profiling_native_extension/collectors_gc_profiling_helper.h +5 -0
  20. data/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.c +244 -0
  21. data/ext/datadog_profiling_native_extension/collectors_idle_sampling_helper.h +3 -0
  22. data/ext/datadog_profiling_native_extension/collectors_stack.c +372 -0
  23. data/ext/datadog_profiling_native_extension/collectors_stack.h +27 -0
  24. data/ext/datadog_profiling_native_extension/collectors_thread_context.c +1402 -0
  25. data/ext/datadog_profiling_native_extension/collectors_thread_context.h +15 -0
  26. data/ext/datadog_profiling_native_extension/extconf.rb +302 -0
  27. data/ext/datadog_profiling_native_extension/heap_recorder.c +1047 -0
  28. data/ext/datadog_profiling_native_extension/heap_recorder.h +166 -0
  29. data/ext/datadog_profiling_native_extension/helpers.h +23 -0
  30. data/ext/datadog_profiling_native_extension/http_transport.c +375 -0
  31. data/ext/datadog_profiling_native_extension/libdatadog_helpers.c +62 -0
  32. data/ext/datadog_profiling_native_extension/libdatadog_helpers.h +42 -0
  33. data/ext/datadog_profiling_native_extension/native_extension_helpers.rb +319 -0
  34. data/ext/datadog_profiling_native_extension/private_vm_api_access.c +892 -0
  35. data/ext/datadog_profiling_native_extension/private_vm_api_access.h +61 -0
  36. data/ext/datadog_profiling_native_extension/profiling.c +267 -0
  37. data/ext/datadog_profiling_native_extension/ruby_helpers.c +267 -0
  38. data/ext/datadog_profiling_native_extension/ruby_helpers.h +122 -0
  39. data/ext/datadog_profiling_native_extension/setup_signal_handler.c +115 -0
  40. data/ext/datadog_profiling_native_extension/setup_signal_handler.h +11 -0
  41. data/ext/datadog_profiling_native_extension/stack_recorder.c +1040 -0
  42. data/ext/datadog_profiling_native_extension/stack_recorder.h +27 -0
  43. data/ext/datadog_profiling_native_extension/time_helpers.c +53 -0
  44. data/ext/datadog_profiling_native_extension/time_helpers.h +26 -0
  45. data/lib/datadog/appsec/assets/blocked.html +99 -0
  46. data/lib/datadog/appsec/assets/blocked.json +1 -0
  47. data/lib/datadog/appsec/assets/blocked.text +5 -0
  48. data/lib/datadog/appsec/assets/waf_rules/README.md +7 -0
  49. data/lib/datadog/appsec/assets/waf_rules/processors.json +92 -0
  50. data/lib/datadog/appsec/assets/waf_rules/recommended.json +7703 -0
  51. data/lib/datadog/appsec/assets/waf_rules/scanners.json +114 -0
  52. data/lib/datadog/appsec/assets/waf_rules/strict.json +1635 -0
  53. data/lib/datadog/appsec/assets.rb +44 -0
  54. data/lib/datadog/appsec/autoload.rb +11 -0
  55. data/lib/datadog/appsec/component.rb +94 -0
  56. data/lib/datadog/appsec/configuration/settings.rb +202 -0
  57. data/lib/datadog/appsec/configuration.rb +11 -0
  58. data/lib/datadog/appsec/contrib/auto_instrument.rb +25 -0
  59. data/lib/datadog/appsec/contrib/devise/event.rb +57 -0
  60. data/lib/datadog/appsec/contrib/devise/ext.rb +13 -0
  61. data/lib/datadog/appsec/contrib/devise/integration.rb +42 -0
  62. data/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb +76 -0
  63. data/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb +54 -0
  64. data/lib/datadog/appsec/contrib/devise/patcher.rb +45 -0
  65. data/lib/datadog/appsec/contrib/devise/resource.rb +35 -0
  66. data/lib/datadog/appsec/contrib/devise/tracking.rb +57 -0
  67. data/lib/datadog/appsec/contrib/integration.rb +37 -0
  68. data/lib/datadog/appsec/contrib/patcher.rb +12 -0
  69. data/lib/datadog/appsec/contrib/rack/ext.rb +13 -0
  70. data/lib/datadog/appsec/contrib/rack/gateway/request.rb +104 -0
  71. data/lib/datadog/appsec/contrib/rack/gateway/response.rb +30 -0
  72. data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +160 -0
  73. data/lib/datadog/appsec/contrib/rack/integration.rb +42 -0
  74. data/lib/datadog/appsec/contrib/rack/patcher.rb +34 -0
  75. data/lib/datadog/appsec/contrib/rack/reactive/request.rb +81 -0
  76. data/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +60 -0
  77. data/lib/datadog/appsec/contrib/rack/reactive/response.rb +66 -0
  78. data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +44 -0
  79. data/lib/datadog/appsec/contrib/rack/request_middleware.rb +224 -0
  80. data/lib/datadog/appsec/contrib/rails/ext.rb +13 -0
  81. data/lib/datadog/appsec/contrib/rails/framework.rb +16 -0
  82. data/lib/datadog/appsec/contrib/rails/gateway/request.rb +67 -0
  83. data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +69 -0
  84. data/lib/datadog/appsec/contrib/rails/integration.rb +41 -0
  85. data/lib/datadog/appsec/contrib/rails/patcher.rb +165 -0
  86. data/lib/datadog/appsec/contrib/rails/reactive/action.rb +66 -0
  87. data/lib/datadog/appsec/contrib/rails/request.rb +36 -0
  88. data/lib/datadog/appsec/contrib/rails/request_middleware.rb +20 -0
  89. data/lib/datadog/appsec/contrib/sinatra/ext.rb +14 -0
  90. data/lib/datadog/appsec/contrib/sinatra/framework.rb +20 -0
  91. data/lib/datadog/appsec/contrib/sinatra/gateway/request.rb +17 -0
  92. data/lib/datadog/appsec/contrib/sinatra/gateway/route_params.rb +23 -0
  93. data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +115 -0
  94. data/lib/datadog/appsec/contrib/sinatra/integration.rb +41 -0
  95. data/lib/datadog/appsec/contrib/sinatra/patcher.rb +166 -0
  96. data/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +61 -0
  97. data/lib/datadog/appsec/contrib/sinatra/request_middleware.rb +20 -0
  98. data/lib/datadog/appsec/event.rb +169 -0
  99. data/lib/datadog/appsec/ext.rb +10 -0
  100. data/lib/datadog/appsec/extensions.rb +15 -0
  101. data/lib/datadog/appsec/instrumentation/gateway/argument.rb +22 -0
  102. data/lib/datadog/appsec/instrumentation/gateway.rb +64 -0
  103. data/lib/datadog/appsec/instrumentation.rb +9 -0
  104. data/lib/datadog/appsec/monitor/gateway/watcher.rb +67 -0
  105. data/lib/datadog/appsec/monitor/reactive/set_user.rb +58 -0
  106. data/lib/datadog/appsec/monitor.rb +11 -0
  107. data/lib/datadog/appsec/processor/actions.rb +49 -0
  108. data/lib/datadog/appsec/processor/rule_loader.rb +123 -0
  109. data/lib/datadog/appsec/processor/rule_merger.rb +152 -0
  110. data/lib/datadog/appsec/processor.rb +171 -0
  111. data/lib/datadog/appsec/rate_limiter.rb +58 -0
  112. data/lib/datadog/appsec/reactive/address_hash.rb +22 -0
  113. data/lib/datadog/appsec/reactive/engine.rb +47 -0
  114. data/lib/datadog/appsec/reactive/operation.rb +68 -0
  115. data/lib/datadog/appsec/reactive/subscriber.rb +19 -0
  116. data/lib/datadog/appsec/remote.rb +129 -0
  117. data/lib/datadog/appsec/response.rb +151 -0
  118. data/lib/datadog/appsec/sample_rate.rb +21 -0
  119. data/lib/datadog/appsec/scope.rb +61 -0
  120. data/lib/datadog/appsec/utils/http/media_range.rb +199 -0
  121. data/lib/datadog/appsec/utils/http/media_type.rb +85 -0
  122. data/lib/datadog/appsec/utils/http.rb +11 -0
  123. data/lib/datadog/appsec/utils.rb +9 -0
  124. data/lib/datadog/appsec.rb +60 -0
  125. data/lib/datadog/auto_instrument.rb +3 -0
  126. data/lib/datadog/core/backport.rb +51 -0
  127. data/lib/datadog/core/buffer/cruby.rb +55 -0
  128. data/lib/datadog/core/buffer/random.rb +134 -0
  129. data/lib/datadog/core/buffer/thread_safe.rb +58 -0
  130. data/lib/datadog/core/chunker.rb +35 -0
  131. data/lib/datadog/core/configuration/agent_settings_resolver.rb +405 -0
  132. data/lib/datadog/core/configuration/base.rb +89 -0
  133. data/lib/datadog/core/configuration/components.rb +174 -0
  134. data/lib/datadog/core/configuration/ext.rb +47 -0
  135. data/lib/datadog/core/configuration/option.rb +319 -0
  136. data/lib/datadog/core/configuration/option_definition.rb +176 -0
  137. data/lib/datadog/core/configuration/options.rb +128 -0
  138. data/lib/datadog/core/configuration/settings.rb +848 -0
  139. data/lib/datadog/core/configuration.rb +309 -0
  140. data/lib/datadog/core/diagnostics/environment_logger.rb +183 -0
  141. data/lib/datadog/core/diagnostics/health.rb +19 -0
  142. data/lib/datadog/core/encoding.rb +72 -0
  143. data/lib/datadog/core/environment/cgroup.rb +51 -0
  144. data/lib/datadog/core/environment/class_count.rb +21 -0
  145. data/lib/datadog/core/environment/container.rb +89 -0
  146. data/lib/datadog/core/environment/execution.rb +103 -0
  147. data/lib/datadog/core/environment/ext.rb +46 -0
  148. data/lib/datadog/core/environment/gc.rb +20 -0
  149. data/lib/datadog/core/environment/git.rb +25 -0
  150. data/lib/datadog/core/environment/identity.rb +84 -0
  151. data/lib/datadog/core/environment/platform.rb +44 -0
  152. data/lib/datadog/core/environment/socket.rb +24 -0
  153. data/lib/datadog/core/environment/thread_count.rb +20 -0
  154. data/lib/datadog/core/environment/variable_helpers.rb +53 -0
  155. data/lib/datadog/core/environment/vm_cache.rb +64 -0
  156. data/lib/datadog/core/environment/yjit.rb +58 -0
  157. data/lib/datadog/core/error.rb +100 -0
  158. data/lib/datadog/core/extensions.rb +16 -0
  159. data/lib/datadog/core/git/ext.rb +16 -0
  160. data/lib/datadog/core/header_collection.rb +43 -0
  161. data/lib/datadog/core/logger.rb +44 -0
  162. data/lib/datadog/core/logging/ext.rb +13 -0
  163. data/lib/datadog/core/metrics/client.rb +197 -0
  164. data/lib/datadog/core/metrics/ext.rb +18 -0
  165. data/lib/datadog/core/metrics/helpers.rb +25 -0
  166. data/lib/datadog/core/metrics/logging.rb +42 -0
  167. data/lib/datadog/core/metrics/metric.rb +14 -0
  168. data/lib/datadog/core/metrics/options.rb +48 -0
  169. data/lib/datadog/core/pin.rb +73 -0
  170. data/lib/datadog/core/remote/client/capabilities.rb +62 -0
  171. data/lib/datadog/core/remote/client.rb +232 -0
  172. data/lib/datadog/core/remote/component.rb +162 -0
  173. data/lib/datadog/core/remote/configuration/content.rb +111 -0
  174. data/lib/datadog/core/remote/configuration/digest.rb +62 -0
  175. data/lib/datadog/core/remote/configuration/path.rb +90 -0
  176. data/lib/datadog/core/remote/configuration/repository.rb +294 -0
  177. data/lib/datadog/core/remote/configuration/target.rb +74 -0
  178. data/lib/datadog/core/remote/configuration.rb +18 -0
  179. data/lib/datadog/core/remote/dispatcher.rb +59 -0
  180. data/lib/datadog/core/remote/ext.rb +13 -0
  181. data/lib/datadog/core/remote/negotiation.rb +70 -0
  182. data/lib/datadog/core/remote/tie/tracing.rb +39 -0
  183. data/lib/datadog/core/remote/tie.rb +27 -0
  184. data/lib/datadog/core/remote/transport/config.rb +60 -0
  185. data/lib/datadog/core/remote/transport/http/api/instance.rb +39 -0
  186. data/lib/datadog/core/remote/transport/http/api/spec.rb +21 -0
  187. data/lib/datadog/core/remote/transport/http/api.rb +58 -0
  188. data/lib/datadog/core/remote/transport/http/builder.rb +219 -0
  189. data/lib/datadog/core/remote/transport/http/client.rb +48 -0
  190. data/lib/datadog/core/remote/transport/http/config.rb +280 -0
  191. data/lib/datadog/core/remote/transport/http/negotiation.rb +146 -0
  192. data/lib/datadog/core/remote/transport/http.rb +179 -0
  193. data/lib/datadog/core/remote/transport/negotiation.rb +62 -0
  194. data/lib/datadog/core/remote/worker.rb +102 -0
  195. data/lib/datadog/core/remote.rb +24 -0
  196. data/lib/datadog/core/runtime/ext.rb +38 -0
  197. data/lib/datadog/core/runtime/metrics.rb +183 -0
  198. data/lib/datadog/core/telemetry/client.rb +95 -0
  199. data/lib/datadog/core/telemetry/emitter.rb +44 -0
  200. data/lib/datadog/core/telemetry/event.rb +273 -0
  201. data/lib/datadog/core/telemetry/ext.rb +16 -0
  202. data/lib/datadog/core/telemetry/heartbeat.rb +33 -0
  203. data/lib/datadog/core/telemetry/http/adapters/net.rb +111 -0
  204. data/lib/datadog/core/telemetry/http/env.rb +20 -0
  205. data/lib/datadog/core/telemetry/http/ext.rb +25 -0
  206. data/lib/datadog/core/telemetry/http/response.rb +68 -0
  207. data/lib/datadog/core/telemetry/http/transport.rb +61 -0
  208. data/lib/datadog/core/telemetry/request.rb +59 -0
  209. data/lib/datadog/core/transport/ext.rb +49 -0
  210. data/lib/datadog/core/transport/http/adapters/net.rb +168 -0
  211. data/lib/datadog/core/transport/http/adapters/registry.rb +29 -0
  212. data/lib/datadog/core/transport/http/adapters/test.rb +89 -0
  213. data/lib/datadog/core/transport/http/adapters/unix_socket.rb +83 -0
  214. data/lib/datadog/core/transport/http/api/endpoint.rb +31 -0
  215. data/lib/datadog/core/transport/http/api/fallbacks.rb +26 -0
  216. data/lib/datadog/core/transport/http/api/map.rb +18 -0
  217. data/lib/datadog/core/transport/http/env.rb +62 -0
  218. data/lib/datadog/core/transport/http/response.rb +60 -0
  219. data/lib/datadog/core/transport/parcel.rb +22 -0
  220. data/lib/datadog/core/transport/request.rb +17 -0
  221. data/lib/datadog/core/transport/response.rb +64 -0
  222. data/lib/datadog/core/utils/compression.rb +36 -0
  223. data/lib/datadog/core/utils/duration.rb +52 -0
  224. data/lib/datadog/core/utils/forking.rb +61 -0
  225. data/lib/datadog/core/utils/hash.rb +79 -0
  226. data/lib/datadog/core/utils/network.rb +140 -0
  227. data/lib/datadog/core/utils/only_once.rb +42 -0
  228. data/lib/datadog/core/utils/safe_dup.rb +50 -0
  229. data/lib/datadog/core/utils/sequence.rb +26 -0
  230. data/lib/datadog/core/utils/time.rb +52 -0
  231. data/lib/datadog/core/utils/url.rb +25 -0
  232. data/lib/datadog/core/utils.rb +92 -0
  233. data/lib/datadog/core/vendor/ipaddr.rb +78 -0
  234. data/lib/datadog/core/vendor/multipart-post/LICENSE +11 -0
  235. data/lib/datadog/core/vendor/multipart-post/multipart/post/composite_read_io.rb +118 -0
  236. data/lib/datadog/core/vendor/multipart-post/multipart/post/multipartable.rb +59 -0
  237. data/lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb +137 -0
  238. data/lib/datadog/core/vendor/multipart-post/multipart/post/version.rb +11 -0
  239. data/lib/datadog/core/vendor/multipart-post/multipart/post.rb +10 -0
  240. data/lib/datadog/core/vendor/multipart-post/multipart.rb +14 -0
  241. data/lib/datadog/core/vendor/multipart-post/net/http/post/multipart.rb +34 -0
  242. data/lib/datadog/core/worker.rb +24 -0
  243. data/lib/datadog/core/workers/async.rb +183 -0
  244. data/lib/datadog/core/workers/interval_loop.rb +123 -0
  245. data/lib/datadog/core/workers/polling.rb +57 -0
  246. data/lib/datadog/core/workers/queue.rb +44 -0
  247. data/lib/datadog/core/workers/runtime_metrics.rb +62 -0
  248. data/lib/datadog/core.rb +45 -0
  249. data/lib/datadog/kit/appsec/events.rb +169 -0
  250. data/lib/datadog/kit/enable_core_dumps.rb +49 -0
  251. data/lib/datadog/kit/identity.rb +104 -0
  252. data/lib/datadog/kit.rb +11 -0
  253. data/lib/datadog/opentelemetry/api/context.rb +193 -0
  254. data/lib/datadog/opentelemetry/api/trace/span.rb +14 -0
  255. data/lib/datadog/opentelemetry/sdk/configurator.rb +37 -0
  256. data/lib/datadog/opentelemetry/sdk/id_generator.rb +26 -0
  257. data/lib/datadog/opentelemetry/sdk/propagator.rb +92 -0
  258. data/lib/datadog/opentelemetry/sdk/span_processor.rb +134 -0
  259. data/lib/datadog/opentelemetry/sdk/trace/span.rb +167 -0
  260. data/lib/datadog/opentelemetry/trace.rb +58 -0
  261. data/lib/datadog/opentelemetry.rb +51 -0
  262. data/lib/datadog/opentracer/binary_propagator.rb +26 -0
  263. data/lib/datadog/opentracer/carrier.rb +9 -0
  264. data/lib/datadog/opentracer/distributed_headers.rb +54 -0
  265. data/lib/datadog/opentracer/global_tracer.rb +17 -0
  266. data/lib/datadog/opentracer/propagator.rb +26 -0
  267. data/lib/datadog/opentracer/rack_propagator.rb +71 -0
  268. data/lib/datadog/opentracer/scope.rb +18 -0
  269. data/lib/datadog/opentracer/scope_manager.rb +9 -0
  270. data/lib/datadog/opentracer/span.rb +99 -0
  271. data/lib/datadog/opentracer/span_context.rb +19 -0
  272. data/lib/datadog/opentracer/span_context_factory.rb +27 -0
  273. data/lib/datadog/opentracer/text_map_propagator.rb +87 -0
  274. data/lib/datadog/opentracer/thread_local_scope.rb +34 -0
  275. data/lib/datadog/opentracer/thread_local_scope_manager.rb +64 -0
  276. data/lib/datadog/opentracer/tracer.rb +212 -0
  277. data/lib/datadog/opentracer.rb +33 -0
  278. data/lib/datadog/profiling/collectors/code_provenance.rb +119 -0
  279. data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +137 -0
  280. data/lib/datadog/profiling/collectors/dynamic_sampling_rate.rb +14 -0
  281. data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +68 -0
  282. data/lib/datadog/profiling/collectors/info.rb +101 -0
  283. data/lib/datadog/profiling/collectors/stack.rb +13 -0
  284. data/lib/datadog/profiling/collectors/thread_context.rb +61 -0
  285. data/lib/datadog/profiling/component.rb +426 -0
  286. data/lib/datadog/profiling/exporter.rb +104 -0
  287. data/lib/datadog/profiling/ext/forking.rb +96 -0
  288. data/lib/datadog/profiling/ext.rb +35 -0
  289. data/lib/datadog/profiling/flush.rb +43 -0
  290. data/lib/datadog/profiling/http_transport.rb +147 -0
  291. data/lib/datadog/profiling/load_native_extension.rb +39 -0
  292. data/lib/datadog/profiling/native_extension.rb +20 -0
  293. data/lib/datadog/profiling/preload.rb +5 -0
  294. data/lib/datadog/profiling/profiler.rb +62 -0
  295. data/lib/datadog/profiling/scheduler.rb +135 -0
  296. data/lib/datadog/profiling/stack_recorder.rb +71 -0
  297. data/lib/datadog/profiling/tag_builder.rb +58 -0
  298. data/lib/datadog/profiling/tasks/exec.rb +48 -0
  299. data/lib/datadog/profiling/tasks/help.rb +16 -0
  300. data/lib/datadog/profiling/tasks/setup.rb +58 -0
  301. data/lib/datadog/profiling.rb +161 -0
  302. data/lib/datadog/tracing/analytics.rb +25 -0
  303. data/lib/datadog/tracing/buffer.rb +127 -0
  304. data/lib/datadog/tracing/client_ip.rb +61 -0
  305. data/lib/datadog/tracing/component.rb +235 -0
  306. data/lib/datadog/tracing/configuration/agent_settings_resolver.rb +13 -0
  307. data/lib/datadog/tracing/configuration/dynamic/option.rb +71 -0
  308. data/lib/datadog/tracing/configuration/dynamic.rb +64 -0
  309. data/lib/datadog/tracing/configuration/ext.rb +108 -0
  310. data/lib/datadog/tracing/configuration/http.rb +74 -0
  311. data/lib/datadog/tracing/configuration/settings.rb +502 -0
  312. data/lib/datadog/tracing/context.rb +68 -0
  313. data/lib/datadog/tracing/context_provider.rb +80 -0
  314. data/lib/datadog/tracing/contrib/action_cable/configuration/settings.rb +39 -0
  315. data/lib/datadog/tracing/contrib/action_cable/event.rb +71 -0
  316. data/lib/datadog/tracing/contrib/action_cable/events/broadcast.rb +56 -0
  317. data/lib/datadog/tracing/contrib/action_cable/events/perform_action.rb +61 -0
  318. data/lib/datadog/tracing/contrib/action_cable/events/transmit.rb +57 -0
  319. data/lib/datadog/tracing/contrib/action_cable/events.rb +37 -0
  320. data/lib/datadog/tracing/contrib/action_cable/ext.rb +33 -0
  321. data/lib/datadog/tracing/contrib/action_cable/instrumentation.rb +88 -0
  322. data/lib/datadog/tracing/contrib/action_cable/integration.rb +48 -0
  323. data/lib/datadog/tracing/contrib/action_cable/patcher.rb +31 -0
  324. data/lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb +40 -0
  325. data/lib/datadog/tracing/contrib/action_mailer/event.rb +52 -0
  326. data/lib/datadog/tracing/contrib/action_mailer/events/deliver.rb +58 -0
  327. data/lib/datadog/tracing/contrib/action_mailer/events/process.rb +45 -0
  328. data/lib/datadog/tracing/contrib/action_mailer/events.rb +34 -0
  329. data/lib/datadog/tracing/contrib/action_mailer/ext.rb +34 -0
  330. data/lib/datadog/tracing/contrib/action_mailer/integration.rb +48 -0
  331. data/lib/datadog/tracing/contrib/action_mailer/patcher.rb +29 -0
  332. data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +136 -0
  333. data/lib/datadog/tracing/contrib/action_pack/action_controller/patcher.rb +29 -0
  334. data/lib/datadog/tracing/contrib/action_pack/configuration/settings.rb +50 -0
  335. data/lib/datadog/tracing/contrib/action_pack/ext.rb +23 -0
  336. data/lib/datadog/tracing/contrib/action_pack/integration.rb +48 -0
  337. data/lib/datadog/tracing/contrib/action_pack/patcher.rb +27 -0
  338. data/lib/datadog/tracing/contrib/action_pack/utils.rb +38 -0
  339. data/lib/datadog/tracing/contrib/action_view/configuration/settings.rb +38 -0
  340. data/lib/datadog/tracing/contrib/action_view/event.rb +35 -0
  341. data/lib/datadog/tracing/contrib/action_view/events/render_partial.rb +52 -0
  342. data/lib/datadog/tracing/contrib/action_view/events/render_template.rb +55 -0
  343. data/lib/datadog/tracing/contrib/action_view/events.rb +34 -0
  344. data/lib/datadog/tracing/contrib/action_view/ext.rb +25 -0
  345. data/lib/datadog/tracing/contrib/action_view/instrumentation/partial_renderer.rb +76 -0
  346. data/lib/datadog/tracing/contrib/action_view/instrumentation/template_renderer.rb +89 -0
  347. data/lib/datadog/tracing/contrib/action_view/integration.rb +55 -0
  348. data/lib/datadog/tracing/contrib/action_view/patcher.rb +45 -0
  349. data/lib/datadog/tracing/contrib/action_view/utils.rb +34 -0
  350. data/lib/datadog/tracing/contrib/active_job/configuration/settings.rb +44 -0
  351. data/lib/datadog/tracing/contrib/active_job/event.rb +58 -0
  352. data/lib/datadog/tracing/contrib/active_job/events/discard.rb +48 -0
  353. data/lib/datadog/tracing/contrib/active_job/events/enqueue.rb +47 -0
  354. data/lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb +47 -0
  355. data/lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb +49 -0
  356. data/lib/datadog/tracing/contrib/active_job/events/perform.rb +47 -0
  357. data/lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb +48 -0
  358. data/lib/datadog/tracing/contrib/active_job/events.rb +42 -0
  359. data/lib/datadog/tracing/contrib/active_job/ext.rb +40 -0
  360. data/lib/datadog/tracing/contrib/active_job/integration.rb +48 -0
  361. data/lib/datadog/tracing/contrib/active_job/log_injection.rb +24 -0
  362. data/lib/datadog/tracing/contrib/active_job/patcher.rb +36 -0
  363. data/lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb +37 -0
  364. data/lib/datadog/tracing/contrib/active_model_serializers/event.rb +68 -0
  365. data/lib/datadog/tracing/contrib/active_model_serializers/events/render.rb +43 -0
  366. data/lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb +45 -0
  367. data/lib/datadog/tracing/contrib/active_model_serializers/events.rb +34 -0
  368. data/lib/datadog/tracing/contrib/active_model_serializers/ext.rb +25 -0
  369. data/lib/datadog/tracing/contrib/active_model_serializers/integration.rb +43 -0
  370. data/lib/datadog/tracing/contrib/active_model_serializers/patcher.rb +32 -0
  371. data/lib/datadog/tracing/contrib/active_record/configuration/makara_resolver.rb +34 -0
  372. data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +150 -0
  373. data/lib/datadog/tracing/contrib/active_record/configuration/settings.rb +47 -0
  374. data/lib/datadog/tracing/contrib/active_record/event.rb +30 -0
  375. data/lib/datadog/tracing/contrib/active_record/events/instantiation.rb +56 -0
  376. data/lib/datadog/tracing/contrib/active_record/events/sql.rb +75 -0
  377. data/lib/datadog/tracing/contrib/active_record/events.rb +34 -0
  378. data/lib/datadog/tracing/contrib/active_record/ext.rb +30 -0
  379. data/lib/datadog/tracing/contrib/active_record/integration.rb +54 -0
  380. data/lib/datadog/tracing/contrib/active_record/patcher.rb +27 -0
  381. data/lib/datadog/tracing/contrib/active_record/utils.rb +126 -0
  382. data/lib/datadog/tracing/contrib/active_record/vendor/MIT-LICENSE +20 -0
  383. data/lib/datadog/tracing/contrib/active_record/vendor/connection_specification.rb +305 -0
  384. data/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +186 -0
  385. data/lib/datadog/tracing/contrib/active_support/cache/patcher.rb +76 -0
  386. data/lib/datadog/tracing/contrib/active_support/cache/redis.rb +47 -0
  387. data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +46 -0
  388. data/lib/datadog/tracing/contrib/active_support/ext.rb +32 -0
  389. data/lib/datadog/tracing/contrib/active_support/integration.rb +49 -0
  390. data/lib/datadog/tracing/contrib/active_support/notifications/event.rb +71 -0
  391. data/lib/datadog/tracing/contrib/active_support/notifications/subscriber.rb +71 -0
  392. data/lib/datadog/tracing/contrib/active_support/notifications/subscription.rb +162 -0
  393. data/lib/datadog/tracing/contrib/active_support/patcher.rb +27 -0
  394. data/lib/datadog/tracing/contrib/analytics.rb +28 -0
  395. data/lib/datadog/tracing/contrib/auto_instrument.rb +53 -0
  396. data/lib/datadog/tracing/contrib/aws/configuration/settings.rb +52 -0
  397. data/lib/datadog/tracing/contrib/aws/ext.rb +50 -0
  398. data/lib/datadog/tracing/contrib/aws/instrumentation.rb +119 -0
  399. data/lib/datadog/tracing/contrib/aws/integration.rb +45 -0
  400. data/lib/datadog/tracing/contrib/aws/parsed_context.rb +62 -0
  401. data/lib/datadog/tracing/contrib/aws/patcher.rb +57 -0
  402. data/lib/datadog/tracing/contrib/aws/service/base.rb +16 -0
  403. data/lib/datadog/tracing/contrib/aws/service/dynamodb.rb +22 -0
  404. data/lib/datadog/tracing/contrib/aws/service/eventbridge.rb +22 -0
  405. data/lib/datadog/tracing/contrib/aws/service/kinesis.rb +32 -0
  406. data/lib/datadog/tracing/contrib/aws/service/s3.rb +22 -0
  407. data/lib/datadog/tracing/contrib/aws/service/sns.rb +30 -0
  408. data/lib/datadog/tracing/contrib/aws/service/sqs.rb +27 -0
  409. data/lib/datadog/tracing/contrib/aws/service/states.rb +40 -0
  410. data/lib/datadog/tracing/contrib/aws/services.rb +137 -0
  411. data/lib/datadog/tracing/contrib/concurrent_ruby/async_patch.rb +20 -0
  412. data/lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb +24 -0
  413. data/lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb +53 -0
  414. data/lib/datadog/tracing/contrib/concurrent_ruby/ext.rb +16 -0
  415. data/lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb +20 -0
  416. data/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +42 -0
  417. data/lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb +49 -0
  418. data/lib/datadog/tracing/contrib/concurrent_ruby/promises_future_patch.rb +22 -0
  419. data/lib/datadog/tracing/contrib/configurable.rb +102 -0
  420. data/lib/datadog/tracing/contrib/configuration/resolver.rb +85 -0
  421. data/lib/datadog/tracing/contrib/configuration/resolvers/pattern_resolver.rb +43 -0
  422. data/lib/datadog/tracing/contrib/configuration/settings.rb +39 -0
  423. data/lib/datadog/tracing/contrib/dalli/configuration/settings.rb +57 -0
  424. data/lib/datadog/tracing/contrib/dalli/ext.rb +40 -0
  425. data/lib/datadog/tracing/contrib/dalli/instrumentation.rb +73 -0
  426. data/lib/datadog/tracing/contrib/dalli/integration.rb +50 -0
  427. data/lib/datadog/tracing/contrib/dalli/patcher.rb +28 -0
  428. data/lib/datadog/tracing/contrib/dalli/quantize.rb +24 -0
  429. data/lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb +45 -0
  430. data/lib/datadog/tracing/contrib/delayed_job/ext.rb +29 -0
  431. data/lib/datadog/tracing/contrib/delayed_job/integration.rb +41 -0
  432. data/lib/datadog/tracing/contrib/delayed_job/patcher.rb +37 -0
  433. data/lib/datadog/tracing/contrib/delayed_job/plugin.rb +108 -0
  434. data/lib/datadog/tracing/contrib/delayed_job/server_internal_tracer/worker.rb +34 -0
  435. data/lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb +53 -0
  436. data/lib/datadog/tracing/contrib/elasticsearch/ext.rb +34 -0
  437. data/lib/datadog/tracing/contrib/elasticsearch/integration.rb +48 -0
  438. data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +160 -0
  439. data/lib/datadog/tracing/contrib/elasticsearch/quantize.rb +85 -0
  440. data/lib/datadog/tracing/contrib/ethon/configuration/settings.rb +55 -0
  441. data/lib/datadog/tracing/contrib/ethon/easy_patch.rb +221 -0
  442. data/lib/datadog/tracing/contrib/ethon/ext.rb +32 -0
  443. data/lib/datadog/tracing/contrib/ethon/integration.rb +46 -0
  444. data/lib/datadog/tracing/contrib/ethon/multi_patch.rb +102 -0
  445. data/lib/datadog/tracing/contrib/ethon/patcher.rb +30 -0
  446. data/lib/datadog/tracing/contrib/excon/configuration/settings.rb +57 -0
  447. data/lib/datadog/tracing/contrib/excon/ext.rb +29 -0
  448. data/lib/datadog/tracing/contrib/excon/integration.rb +46 -0
  449. data/lib/datadog/tracing/contrib/excon/middleware.rb +192 -0
  450. data/lib/datadog/tracing/contrib/excon/patcher.rb +31 -0
  451. data/lib/datadog/tracing/contrib/ext.rb +55 -0
  452. data/lib/datadog/tracing/contrib/extensions.rb +233 -0
  453. data/lib/datadog/tracing/contrib/faraday/configuration/settings.rb +68 -0
  454. data/lib/datadog/tracing/contrib/faraday/connection.rb +22 -0
  455. data/lib/datadog/tracing/contrib/faraday/ext.rb +29 -0
  456. data/lib/datadog/tracing/contrib/faraday/integration.rb +46 -0
  457. data/lib/datadog/tracing/contrib/faraday/middleware.rb +110 -0
  458. data/lib/datadog/tracing/contrib/faraday/patcher.rb +54 -0
  459. data/lib/datadog/tracing/contrib/faraday/rack_builder.rb +22 -0
  460. data/lib/datadog/tracing/contrib/grape/configuration/settings.rb +45 -0
  461. data/lib/datadog/tracing/contrib/grape/endpoint.rb +248 -0
  462. data/lib/datadog/tracing/contrib/grape/ext.rb +29 -0
  463. data/lib/datadog/tracing/contrib/grape/instrumentation.rb +35 -0
  464. data/lib/datadog/tracing/contrib/grape/integration.rb +42 -0
  465. data/lib/datadog/tracing/contrib/grape/patcher.rb +33 -0
  466. data/lib/datadog/tracing/contrib/graphql/configuration/settings.rb +39 -0
  467. data/lib/datadog/tracing/contrib/graphql/ext.rb +20 -0
  468. data/lib/datadog/tracing/contrib/graphql/integration.rb +42 -0
  469. data/lib/datadog/tracing/contrib/graphql/patcher.rb +88 -0
  470. data/lib/datadog/tracing/contrib/grpc/configuration/settings.rb +79 -0
  471. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +119 -0
  472. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +107 -0
  473. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb +101 -0
  474. data/lib/datadog/tracing/contrib/grpc/distributed/fetcher.rb +26 -0
  475. data/lib/datadog/tracing/contrib/grpc/distributed/propagation.rb +42 -0
  476. data/lib/datadog/tracing/contrib/grpc/ext.rb +29 -0
  477. data/lib/datadog/tracing/contrib/grpc/formatting.rb +127 -0
  478. data/lib/datadog/tracing/contrib/grpc/integration.rb +48 -0
  479. data/lib/datadog/tracing/contrib/grpc/intercept_with_datadog.rb +53 -0
  480. data/lib/datadog/tracing/contrib/grpc/patcher.rb +34 -0
  481. data/lib/datadog/tracing/contrib/hanami/action_tracer.rb +47 -0
  482. data/lib/datadog/tracing/contrib/hanami/configuration/settings.rb +23 -0
  483. data/lib/datadog/tracing/contrib/hanami/ext.rb +24 -0
  484. data/lib/datadog/tracing/contrib/hanami/integration.rb +42 -0
  485. data/lib/datadog/tracing/contrib/hanami/patcher.rb +33 -0
  486. data/lib/datadog/tracing/contrib/hanami/plugin.rb +23 -0
  487. data/lib/datadog/tracing/contrib/hanami/renderer_policy_tracing.rb +41 -0
  488. data/lib/datadog/tracing/contrib/hanami/router_tracing.rb +44 -0
  489. data/lib/datadog/tracing/contrib/http/circuit_breaker.rb +40 -0
  490. data/lib/datadog/tracing/contrib/http/configuration/settings.rb +75 -0
  491. data/lib/datadog/tracing/contrib/http/distributed/fetcher.rb +38 -0
  492. data/lib/datadog/tracing/contrib/http/distributed/propagation.rb +37 -0
  493. data/lib/datadog/tracing/contrib/http/ext.rb +29 -0
  494. data/lib/datadog/tracing/contrib/http/instrumentation.rb +158 -0
  495. data/lib/datadog/tracing/contrib/http/integration.rb +49 -0
  496. data/lib/datadog/tracing/contrib/http/patcher.rb +30 -0
  497. data/lib/datadog/tracing/contrib/http_annotation_helper.rb +17 -0
  498. data/lib/datadog/tracing/contrib/httpclient/configuration/settings.rb +75 -0
  499. data/lib/datadog/tracing/contrib/httpclient/ext.rb +30 -0
  500. data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +135 -0
  501. data/lib/datadog/tracing/contrib/httpclient/integration.rb +46 -0
  502. data/lib/datadog/tracing/contrib/httpclient/patcher.rb +40 -0
  503. data/lib/datadog/tracing/contrib/httprb/configuration/settings.rb +75 -0
  504. data/lib/datadog/tracing/contrib/httprb/ext.rb +29 -0
  505. data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +145 -0
  506. data/lib/datadog/tracing/contrib/httprb/integration.rb +46 -0
  507. data/lib/datadog/tracing/contrib/httprb/patcher.rb +40 -0
  508. data/lib/datadog/tracing/contrib/integration.rb +78 -0
  509. data/lib/datadog/tracing/contrib/kafka/configuration/settings.rb +39 -0
  510. data/lib/datadog/tracing/contrib/kafka/consumer_event.rb +19 -0
  511. data/lib/datadog/tracing/contrib/kafka/consumer_group_event.rb +18 -0
  512. data/lib/datadog/tracing/contrib/kafka/event.rb +53 -0
  513. data/lib/datadog/tracing/contrib/kafka/events/connection/request.rb +40 -0
  514. data/lib/datadog/tracing/contrib/kafka/events/consumer/process_batch.rb +47 -0
  515. data/lib/datadog/tracing/contrib/kafka/events/consumer/process_message.rb +45 -0
  516. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/heartbeat.rb +45 -0
  517. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/join_group.rb +35 -0
  518. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/leave_group.rb +35 -0
  519. data/lib/datadog/tracing/contrib/kafka/events/consumer_group/sync_group.rb +35 -0
  520. data/lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb +39 -0
  521. data/lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb +42 -0
  522. data/lib/datadog/tracing/contrib/kafka/events.rb +48 -0
  523. data/lib/datadog/tracing/contrib/kafka/ext.rb +55 -0
  524. data/lib/datadog/tracing/contrib/kafka/integration.rb +42 -0
  525. data/lib/datadog/tracing/contrib/kafka/patcher.rb +29 -0
  526. data/lib/datadog/tracing/contrib/lograge/configuration/settings.rb +24 -0
  527. data/lib/datadog/tracing/contrib/lograge/ext.rb +15 -0
  528. data/lib/datadog/tracing/contrib/lograge/instrumentation.rb +31 -0
  529. data/lib/datadog/tracing/contrib/lograge/integration.rb +48 -0
  530. data/lib/datadog/tracing/contrib/lograge/patcher.rb +29 -0
  531. data/lib/datadog/tracing/contrib/mongodb/configuration/settings.rb +55 -0
  532. data/lib/datadog/tracing/contrib/mongodb/ext.rb +38 -0
  533. data/lib/datadog/tracing/contrib/mongodb/instrumentation.rb +47 -0
  534. data/lib/datadog/tracing/contrib/mongodb/integration.rb +46 -0
  535. data/lib/datadog/tracing/contrib/mongodb/parsers.rb +47 -0
  536. data/lib/datadog/tracing/contrib/mongodb/patcher.rb +34 -0
  537. data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +139 -0
  538. data/lib/datadog/tracing/contrib/mysql2/configuration/settings.rb +63 -0
  539. data/lib/datadog/tracing/contrib/mysql2/ext.rb +28 -0
  540. data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +95 -0
  541. data/lib/datadog/tracing/contrib/mysql2/integration.rb +41 -0
  542. data/lib/datadog/tracing/contrib/mysql2/patcher.rb +31 -0
  543. data/lib/datadog/tracing/contrib/opensearch/configuration/settings.rb +53 -0
  544. data/lib/datadog/tracing/contrib/opensearch/ext.rb +38 -0
  545. data/lib/datadog/tracing/contrib/opensearch/integration.rb +44 -0
  546. data/lib/datadog/tracing/contrib/opensearch/patcher.rb +135 -0
  547. data/lib/datadog/tracing/contrib/opensearch/quantize.rb +81 -0
  548. data/lib/datadog/tracing/contrib/patchable.rb +109 -0
  549. data/lib/datadog/tracing/contrib/patcher.rb +83 -0
  550. data/lib/datadog/tracing/contrib/pg/configuration/settings.rb +64 -0
  551. data/lib/datadog/tracing/contrib/pg/ext.rb +35 -0
  552. data/lib/datadog/tracing/contrib/pg/instrumentation.rb +211 -0
  553. data/lib/datadog/tracing/contrib/pg/integration.rb +41 -0
  554. data/lib/datadog/tracing/contrib/pg/patcher.rb +31 -0
  555. data/lib/datadog/tracing/contrib/presto/configuration/settings.rb +51 -0
  556. data/lib/datadog/tracing/contrib/presto/ext.rb +38 -0
  557. data/lib/datadog/tracing/contrib/presto/instrumentation.rb +136 -0
  558. data/lib/datadog/tracing/contrib/presto/integration.rb +41 -0
  559. data/lib/datadog/tracing/contrib/presto/patcher.rb +35 -0
  560. data/lib/datadog/tracing/contrib/propagation/sql_comment/comment.rb +41 -0
  561. data/lib/datadog/tracing/contrib/propagation/sql_comment/ext.rb +33 -0
  562. data/lib/datadog/tracing/contrib/propagation/sql_comment/mode.rb +28 -0
  563. data/lib/datadog/tracing/contrib/propagation/sql_comment.rb +53 -0
  564. data/lib/datadog/tracing/contrib/qless/configuration/settings.rb +45 -0
  565. data/lib/datadog/tracing/contrib/qless/ext.rb +27 -0
  566. data/lib/datadog/tracing/contrib/qless/integration.rb +41 -0
  567. data/lib/datadog/tracing/contrib/qless/patcher.rb +36 -0
  568. data/lib/datadog/tracing/contrib/qless/qless_job.rb +75 -0
  569. data/lib/datadog/tracing/contrib/qless/tracer_cleaner.rb +30 -0
  570. data/lib/datadog/tracing/contrib/que/configuration/settings.rb +57 -0
  571. data/lib/datadog/tracing/contrib/que/ext.rb +33 -0
  572. data/lib/datadog/tracing/contrib/que/integration.rb +44 -0
  573. data/lib/datadog/tracing/contrib/que/patcher.rb +26 -0
  574. data/lib/datadog/tracing/contrib/que/tracer.rb +63 -0
  575. data/lib/datadog/tracing/contrib/racecar/configuration/settings.rb +46 -0
  576. data/lib/datadog/tracing/contrib/racecar/event.rb +81 -0
  577. data/lib/datadog/tracing/contrib/racecar/events/batch.rb +36 -0
  578. data/lib/datadog/tracing/contrib/racecar/events/consume.rb +33 -0
  579. data/lib/datadog/tracing/contrib/racecar/events/message.rb +36 -0
  580. data/lib/datadog/tracing/contrib/racecar/events.rb +36 -0
  581. data/lib/datadog/tracing/contrib/racecar/ext.rb +33 -0
  582. data/lib/datadog/tracing/contrib/racecar/integration.rb +42 -0
  583. data/lib/datadog/tracing/contrib/racecar/patcher.rb +29 -0
  584. data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +54 -0
  585. data/lib/datadog/tracing/contrib/rack/ext.rb +31 -0
  586. data/lib/datadog/tracing/contrib/rack/header_collection.rb +38 -0
  587. data/lib/datadog/tracing/contrib/rack/header_tagging.rb +63 -0
  588. data/lib/datadog/tracing/contrib/rack/integration.rb +48 -0
  589. data/lib/datadog/tracing/contrib/rack/middlewares.rb +315 -0
  590. data/lib/datadog/tracing/contrib/rack/patcher.rb +117 -0
  591. data/lib/datadog/tracing/contrib/rack/request_queue.rb +46 -0
  592. data/lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb +8 -0
  593. data/lib/datadog/tracing/contrib/rails/configuration/settings.rb +84 -0
  594. data/lib/datadog/tracing/contrib/rails/ext.rb +20 -0
  595. data/lib/datadog/tracing/contrib/rails/framework.rb +148 -0
  596. data/lib/datadog/tracing/contrib/rails/integration.rb +47 -0
  597. data/lib/datadog/tracing/contrib/rails/log_injection.rb +27 -0
  598. data/lib/datadog/tracing/contrib/rails/middlewares.rb +46 -0
  599. data/lib/datadog/tracing/contrib/rails/patcher.rb +87 -0
  600. data/lib/datadog/tracing/contrib/rails/railtie.rb +17 -0
  601. data/lib/datadog/tracing/contrib/rails/utils.rb +28 -0
  602. data/lib/datadog/tracing/contrib/rake/configuration/settings.rb +55 -0
  603. data/lib/datadog/tracing/contrib/rake/ext.rb +27 -0
  604. data/lib/datadog/tracing/contrib/rake/instrumentation.rb +101 -0
  605. data/lib/datadog/tracing/contrib/rake/integration.rb +41 -0
  606. data/lib/datadog/tracing/contrib/rake/patcher.rb +33 -0
  607. data/lib/datadog/tracing/contrib/redis/configuration/resolver.rb +47 -0
  608. data/lib/datadog/tracing/contrib/redis/configuration/settings.rb +57 -0
  609. data/lib/datadog/tracing/contrib/redis/ext.rb +35 -0
  610. data/lib/datadog/tracing/contrib/redis/instrumentation.rb +51 -0
  611. data/lib/datadog/tracing/contrib/redis/integration.rb +78 -0
  612. data/lib/datadog/tracing/contrib/redis/patcher.rb +90 -0
  613. data/lib/datadog/tracing/contrib/redis/quantize.rb +80 -0
  614. data/lib/datadog/tracing/contrib/redis/tags.rb +68 -0
  615. data/lib/datadog/tracing/contrib/redis/trace_middleware.rb +83 -0
  616. data/lib/datadog/tracing/contrib/redis/vendor/LICENSE +20 -0
  617. data/lib/datadog/tracing/contrib/redis/vendor/resolver.rb +160 -0
  618. data/lib/datadog/tracing/contrib/registerable.rb +50 -0
  619. data/lib/datadog/tracing/contrib/registry.rb +52 -0
  620. data/lib/datadog/tracing/contrib/resque/configuration/settings.rb +44 -0
  621. data/lib/datadog/tracing/contrib/resque/ext.rb +22 -0
  622. data/lib/datadog/tracing/contrib/resque/integration.rb +46 -0
  623. data/lib/datadog/tracing/contrib/resque/patcher.rb +29 -0
  624. data/lib/datadog/tracing/contrib/resque/resque_job.rb +106 -0
  625. data/lib/datadog/tracing/contrib/rest_client/configuration/settings.rb +55 -0
  626. data/lib/datadog/tracing/contrib/rest_client/ext.rb +28 -0
  627. data/lib/datadog/tracing/contrib/rest_client/integration.rb +41 -0
  628. data/lib/datadog/tracing/contrib/rest_client/patcher.rb +28 -0
  629. data/lib/datadog/tracing/contrib/rest_client/request_patch.rb +129 -0
  630. data/lib/datadog/tracing/contrib/roda/configuration/settings.rb +38 -0
  631. data/lib/datadog/tracing/contrib/roda/ext.rb +19 -0
  632. data/lib/datadog/tracing/contrib/roda/instrumentation.rb +76 -0
  633. data/lib/datadog/tracing/contrib/roda/integration.rb +45 -0
  634. data/lib/datadog/tracing/contrib/roda/patcher.rb +30 -0
  635. data/lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb +24 -0
  636. data/lib/datadog/tracing/contrib/semantic_logger/ext.rb +15 -0
  637. data/lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb +35 -0
  638. data/lib/datadog/tracing/contrib/semantic_logger/integration.rb +50 -0
  639. data/lib/datadog/tracing/contrib/semantic_logger/patcher.rb +29 -0
  640. data/lib/datadog/tracing/contrib/sequel/configuration/settings.rb +37 -0
  641. data/lib/datadog/tracing/contrib/sequel/database.rb +60 -0
  642. data/lib/datadog/tracing/contrib/sequel/dataset.rb +67 -0
  643. data/lib/datadog/tracing/contrib/sequel/ext.rb +23 -0
  644. data/lib/datadog/tracing/contrib/sequel/integration.rb +41 -0
  645. data/lib/datadog/tracing/contrib/sequel/patcher.rb +37 -0
  646. data/lib/datadog/tracing/contrib/sequel/utils.rb +88 -0
  647. data/lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb +45 -0
  648. data/lib/datadog/tracing/contrib/shoryuken/ext.rb +27 -0
  649. data/lib/datadog/tracing/contrib/shoryuken/integration.rb +42 -0
  650. data/lib/datadog/tracing/contrib/shoryuken/patcher.rb +28 -0
  651. data/lib/datadog/tracing/contrib/shoryuken/tracer.rb +65 -0
  652. data/lib/datadog/tracing/contrib/sidekiq/client_tracer.rb +66 -0
  653. data/lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb +53 -0
  654. data/lib/datadog/tracing/contrib/sidekiq/distributed/propagation.rb +38 -0
  655. data/lib/datadog/tracing/contrib/sidekiq/ext.rb +45 -0
  656. data/lib/datadog/tracing/contrib/sidekiq/integration.rb +59 -0
  657. data/lib/datadog/tracing/contrib/sidekiq/patcher.rb +90 -0
  658. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/heartbeat.rb +61 -0
  659. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/job_fetch.rb +36 -0
  660. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/redis_info.rb +34 -0
  661. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/scheduled_poller.rb +57 -0
  662. data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/stop.rb +34 -0
  663. data/lib/datadog/tracing/contrib/sidekiq/server_tracer.rb +118 -0
  664. data/lib/datadog/tracing/contrib/sidekiq/utils.rb +44 -0
  665. data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +44 -0
  666. data/lib/datadog/tracing/contrib/sinatra/env.rb +36 -0
  667. data/lib/datadog/tracing/contrib/sinatra/ext.rb +37 -0
  668. data/lib/datadog/tracing/contrib/sinatra/framework.rb +114 -0
  669. data/lib/datadog/tracing/contrib/sinatra/integration.rb +41 -0
  670. data/lib/datadog/tracing/contrib/sinatra/patcher.rb +75 -0
  671. data/lib/datadog/tracing/contrib/sinatra/tracer.rb +84 -0
  672. data/lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb +116 -0
  673. data/lib/datadog/tracing/contrib/sneakers/configuration/settings.rb +43 -0
  674. data/lib/datadog/tracing/contrib/sneakers/ext.rb +27 -0
  675. data/lib/datadog/tracing/contrib/sneakers/integration.rb +44 -0
  676. data/lib/datadog/tracing/contrib/sneakers/patcher.rb +27 -0
  677. data/lib/datadog/tracing/contrib/sneakers/tracer.rb +60 -0
  678. data/lib/datadog/tracing/contrib/span_attribute_schema.rb +92 -0
  679. data/lib/datadog/tracing/contrib/status_code_matcher.rb +72 -0
  680. data/lib/datadog/tracing/contrib/stripe/configuration/settings.rb +37 -0
  681. data/lib/datadog/tracing/contrib/stripe/ext.rb +27 -0
  682. data/lib/datadog/tracing/contrib/stripe/integration.rb +43 -0
  683. data/lib/datadog/tracing/contrib/stripe/patcher.rb +28 -0
  684. data/lib/datadog/tracing/contrib/stripe/request.rb +67 -0
  685. data/lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb +39 -0
  686. data/lib/datadog/tracing/contrib/sucker_punch/exception_handler.rb +28 -0
  687. data/lib/datadog/tracing/contrib/sucker_punch/ext.rb +28 -0
  688. data/lib/datadog/tracing/contrib/sucker_punch/instrumentation.rb +102 -0
  689. data/lib/datadog/tracing/contrib/sucker_punch/integration.rb +41 -0
  690. data/lib/datadog/tracing/contrib/sucker_punch/patcher.rb +35 -0
  691. data/lib/datadog/tracing/contrib/trilogy/configuration/settings.rb +58 -0
  692. data/lib/datadog/tracing/contrib/trilogy/ext.rb +27 -0
  693. data/lib/datadog/tracing/contrib/trilogy/instrumentation.rb +94 -0
  694. data/lib/datadog/tracing/contrib/trilogy/integration.rb +43 -0
  695. data/lib/datadog/tracing/contrib/trilogy/patcher.rb +31 -0
  696. data/lib/datadog/tracing/contrib/utils/database.rb +31 -0
  697. data/lib/datadog/tracing/contrib/utils/quantization/hash.rb +109 -0
  698. data/lib/datadog/tracing/contrib/utils/quantization/http.rb +177 -0
  699. data/lib/datadog/tracing/contrib.rb +82 -0
  700. data/lib/datadog/tracing/correlation.rb +128 -0
  701. data/lib/datadog/tracing/diagnostics/environment_logger.rb +165 -0
  702. data/lib/datadog/tracing/diagnostics/ext.rb +36 -0
  703. data/lib/datadog/tracing/diagnostics/health.rb +40 -0
  704. data/lib/datadog/tracing/distributed/b3_multi.rb +72 -0
  705. data/lib/datadog/tracing/distributed/b3_single.rb +68 -0
  706. data/lib/datadog/tracing/distributed/datadog.rb +199 -0
  707. data/lib/datadog/tracing/distributed/datadog_tags_codec.rb +84 -0
  708. data/lib/datadog/tracing/distributed/fetcher.rb +21 -0
  709. data/lib/datadog/tracing/distributed/headers/ext.rb +34 -0
  710. data/lib/datadog/tracing/distributed/helpers.rb +65 -0
  711. data/lib/datadog/tracing/distributed/none.rb +18 -0
  712. data/lib/datadog/tracing/distributed/propagation.rb +127 -0
  713. data/lib/datadog/tracing/distributed/trace_context.rb +415 -0
  714. data/lib/datadog/tracing/event.rb +74 -0
  715. data/lib/datadog/tracing/flush.rb +96 -0
  716. data/lib/datadog/tracing/metadata/analytics.rb +26 -0
  717. data/lib/datadog/tracing/metadata/errors.rb +24 -0
  718. data/lib/datadog/tracing/metadata/ext.rb +191 -0
  719. data/lib/datadog/tracing/metadata/tagging.rb +129 -0
  720. data/lib/datadog/tracing/metadata.rb +20 -0
  721. data/lib/datadog/tracing/pipeline/span_filter.rb +46 -0
  722. data/lib/datadog/tracing/pipeline/span_processor.rb +39 -0
  723. data/lib/datadog/tracing/pipeline.rb +61 -0
  724. data/lib/datadog/tracing/propagation/http.rb +14 -0
  725. data/lib/datadog/tracing/remote.rb +78 -0
  726. data/lib/datadog/tracing/runtime/metrics.rb +17 -0
  727. data/lib/datadog/tracing/sampling/all_sampler.rb +25 -0
  728. data/lib/datadog/tracing/sampling/ext.rb +56 -0
  729. data/lib/datadog/tracing/sampling/matcher.rb +88 -0
  730. data/lib/datadog/tracing/sampling/priority_sampler.rb +165 -0
  731. data/lib/datadog/tracing/sampling/rate_by_key_sampler.rb +94 -0
  732. data/lib/datadog/tracing/sampling/rate_by_service_sampler.rb +62 -0
  733. data/lib/datadog/tracing/sampling/rate_limiter.rb +186 -0
  734. data/lib/datadog/tracing/sampling/rate_sampler.rb +68 -0
  735. data/lib/datadog/tracing/sampling/rule.rb +77 -0
  736. data/lib/datadog/tracing/sampling/rule_sampler.rb +159 -0
  737. data/lib/datadog/tracing/sampling/sampler.rb +42 -0
  738. data/lib/datadog/tracing/sampling/span/ext.rb +25 -0
  739. data/lib/datadog/tracing/sampling/span/matcher.rb +89 -0
  740. data/lib/datadog/tracing/sampling/span/rule.rb +82 -0
  741. data/lib/datadog/tracing/sampling/span/rule_parser.rb +104 -0
  742. data/lib/datadog/tracing/sampling/span/sampler.rb +77 -0
  743. data/lib/datadog/tracing/span.rb +214 -0
  744. data/lib/datadog/tracing/span_operation.rb +505 -0
  745. data/lib/datadog/tracing/sync_writer.rb +67 -0
  746. data/lib/datadog/tracing/trace_digest.rb +177 -0
  747. data/lib/datadog/tracing/trace_operation.rb +485 -0
  748. data/lib/datadog/tracing/trace_segment.rb +220 -0
  749. data/lib/datadog/tracing/tracer.rb +541 -0
  750. data/lib/datadog/tracing/transport/http/api/instance.rb +37 -0
  751. data/lib/datadog/tracing/transport/http/api/spec.rb +19 -0
  752. data/lib/datadog/tracing/transport/http/api.rb +43 -0
  753. data/lib/datadog/tracing/transport/http/builder.rb +162 -0
  754. data/lib/datadog/tracing/transport/http/client.rb +57 -0
  755. data/lib/datadog/tracing/transport/http/statistics.rb +47 -0
  756. data/lib/datadog/tracing/transport/http/traces.rb +152 -0
  757. data/lib/datadog/tracing/transport/http.rb +125 -0
  758. data/lib/datadog/tracing/transport/io/client.rb +89 -0
  759. data/lib/datadog/tracing/transport/io/response.rb +27 -0
  760. data/lib/datadog/tracing/transport/io/traces.rb +101 -0
  761. data/lib/datadog/tracing/transport/io.rb +30 -0
  762. data/lib/datadog/tracing/transport/serializable_trace.rb +126 -0
  763. data/lib/datadog/tracing/transport/statistics.rb +77 -0
  764. data/lib/datadog/tracing/transport/trace_formatter.rb +240 -0
  765. data/lib/datadog/tracing/transport/traces.rb +224 -0
  766. data/lib/datadog/tracing/utils.rb +83 -0
  767. data/lib/datadog/tracing/workers/trace_writer.rb +194 -0
  768. data/lib/datadog/tracing/workers.rb +123 -0
  769. data/lib/datadog/tracing/writer.rb +186 -0
  770. data/lib/datadog/tracing.rb +148 -0
  771. data/lib/ddtrace/auto_instrument.rb +16 -0
  772. data/lib/ddtrace/auto_instrument_base.rb +8 -0
  773. data/lib/ddtrace/profiling/preload.rb +2 -0
  774. data/lib/ddtrace/transport/ext.rb +47 -0
  775. data/lib/ddtrace/version.rb +19 -5
  776. data/lib/ddtrace.rb +9 -72
  777. metadata +808 -632
  778. data/.circleci/config.yml +0 -441
  779. data/.circleci/images/primary/Dockerfile-2.0.0 +0 -73
  780. data/.circleci/images/primary/Dockerfile-2.1.10 +0 -73
  781. data/.circleci/images/primary/Dockerfile-2.2.10 +0 -73
  782. data/.circleci/images/primary/Dockerfile-2.3.8 +0 -75
  783. data/.circleci/images/primary/Dockerfile-2.4.6 +0 -73
  784. data/.circleci/images/primary/Dockerfile-2.5.6 +0 -73
  785. data/.circleci/images/primary/Dockerfile-2.6.4 +0 -73
  786. data/.circleci/images/primary/Dockerfile-2.7.0 +0 -73
  787. data/.dockerignore +0 -1
  788. data/.env +0 -26
  789. data/.github/CODEOWNERS +0 -1
  790. data/.gitignore +0 -59
  791. data/.rspec +0 -1
  792. data/.rubocop.yml +0 -81
  793. data/.yardopts +0 -5
  794. data/Appraisals +0 -944
  795. data/CONTRIBUTING.md +0 -85
  796. data/Gemfile +0 -7
  797. data/Rakefile +0 -722
  798. data/benchmarks/postgres_database.yml +0 -9
  799. data/benchmarks/sidekiq_test.rb +0 -154
  800. data/ddtrace.gemspec +0 -64
  801. data/docker-compose.yml +0 -335
  802. data/docs/DevelopmentGuide.md +0 -195
  803. data/docs/GettingStarted.md +0 -2142
  804. data/lib/ddtrace/analytics.rb +0 -36
  805. data/lib/ddtrace/augmentation/method_wrapper.rb +0 -20
  806. data/lib/ddtrace/augmentation/method_wrapping.rb +0 -38
  807. data/lib/ddtrace/augmentation/shim.rb +0 -102
  808. data/lib/ddtrace/augmentation.rb +0 -13
  809. data/lib/ddtrace/buffer.rb +0 -119
  810. data/lib/ddtrace/configuration/base.rb +0 -84
  811. data/lib/ddtrace/configuration/dependency_resolver.rb +0 -24
  812. data/lib/ddtrace/configuration/option.rb +0 -64
  813. data/lib/ddtrace/configuration/option_definition.rb +0 -123
  814. data/lib/ddtrace/configuration/option_definition_set.rb +0 -18
  815. data/lib/ddtrace/configuration/option_set.rb +0 -6
  816. data/lib/ddtrace/configuration/options.rb +0 -112
  817. data/lib/ddtrace/configuration/pin_setup.rb +0 -30
  818. data/lib/ddtrace/configuration/settings.rb +0 -187
  819. data/lib/ddtrace/configuration.rb +0 -30
  820. data/lib/ddtrace/context.rb +0 -305
  821. data/lib/ddtrace/context_flush.rb +0 -69
  822. data/lib/ddtrace/context_provider.rb +0 -50
  823. data/lib/ddtrace/contrib/action_cable/configuration/settings.rb +0 -25
  824. data/lib/ddtrace/contrib/action_cable/event.rb +0 -65
  825. data/lib/ddtrace/contrib/action_cable/events/broadcast.rb +0 -49
  826. data/lib/ddtrace/contrib/action_cable/events/perform_action.rb +0 -55
  827. data/lib/ddtrace/contrib/action_cable/events/transmit.rb +0 -50
  828. data/lib/ddtrace/contrib/action_cable/events.rb +0 -33
  829. data/lib/ddtrace/contrib/action_cable/ext.rb +0 -23
  830. data/lib/ddtrace/contrib/action_cable/instrumentation.rb +0 -31
  831. data/lib/ddtrace/contrib/action_cable/integration.rb +0 -38
  832. data/lib/ddtrace/contrib/action_cable/patcher.rb +0 -27
  833. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +0 -148
  834. data/lib/ddtrace/contrib/action_pack/action_controller/patcher.rb +0 -25
  835. data/lib/ddtrace/contrib/action_pack/configuration/settings.rb +0 -27
  836. data/lib/ddtrace/contrib/action_pack/ext.rb +0 -16
  837. data/lib/ddtrace/contrib/action_pack/integration.rb +0 -38
  838. data/lib/ddtrace/contrib/action_pack/patcher.rb +0 -23
  839. data/lib/ddtrace/contrib/action_pack/utils.rb +0 -36
  840. data/lib/ddtrace/contrib/action_view/configuration/settings.rb +0 -26
  841. data/lib/ddtrace/contrib/action_view/event.rb +0 -39
  842. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +0 -45
  843. data/lib/ddtrace/contrib/action_view/events/render_template.rb +0 -48
  844. data/lib/ddtrace/contrib/action_view/events.rb +0 -30
  845. data/lib/ddtrace/contrib/action_view/ext.rb +0 -17
  846. data/lib/ddtrace/contrib/action_view/instrumentation/partial_renderer.rb +0 -74
  847. data/lib/ddtrace/contrib/action_view/instrumentation/template_renderer.rb +0 -167
  848. data/lib/ddtrace/contrib/action_view/integration.rb +0 -45
  849. data/lib/ddtrace/contrib/action_view/patcher.rb +0 -47
  850. data/lib/ddtrace/contrib/action_view/utils.rb +0 -32
  851. data/lib/ddtrace/contrib/active_model_serializers/configuration/settings.rb +0 -25
  852. data/lib/ddtrace/contrib/active_model_serializers/event.rb +0 -68
  853. data/lib/ddtrace/contrib/active_model_serializers/events/render.rb +0 -32
  854. data/lib/ddtrace/contrib/active_model_serializers/events/serialize.rb +0 -35
  855. data/lib/ddtrace/contrib/active_model_serializers/events.rb +0 -30
  856. data/lib/ddtrace/contrib/active_model_serializers/ext.rb +0 -17
  857. data/lib/ddtrace/contrib/active_model_serializers/integration.rb +0 -40
  858. data/lib/ddtrace/contrib/active_model_serializers/patcher.rb +0 -29
  859. data/lib/ddtrace/contrib/active_record/configuration/resolver.rb +0 -45
  860. data/lib/ddtrace/contrib/active_record/configuration/settings.rb +0 -30
  861. data/lib/ddtrace/contrib/active_record/event.rb +0 -30
  862. data/lib/ddtrace/contrib/active_record/events/instantiation.rb +0 -60
  863. data/lib/ddtrace/contrib/active_record/events/sql.rb +0 -64
  864. data/lib/ddtrace/contrib/active_record/events.rb +0 -30
  865. data/lib/ddtrace/contrib/active_record/ext.rb +0 -21
  866. data/lib/ddtrace/contrib/active_record/integration.rb +0 -46
  867. data/lib/ddtrace/contrib/active_record/patcher.rb +0 -23
  868. data/lib/ddtrace/contrib/active_record/utils.rb +0 -76
  869. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +0 -157
  870. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +0 -48
  871. data/lib/ddtrace/contrib/active_support/cache/redis.rb +0 -47
  872. data/lib/ddtrace/contrib/active_support/configuration/settings.rb +0 -25
  873. data/lib/ddtrace/contrib/active_support/ext.rb +0 -21
  874. data/lib/ddtrace/contrib/active_support/integration.rb +0 -40
  875. data/lib/ddtrace/contrib/active_support/notifications/event.rb +0 -62
  876. data/lib/ddtrace/contrib/active_support/notifications/subscriber.rb +0 -66
  877. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +0 -159
  878. data/lib/ddtrace/contrib/active_support/patcher.rb +0 -23
  879. data/lib/ddtrace/contrib/analytics.rb +0 -24
  880. data/lib/ddtrace/contrib/aws/configuration/settings.rb +0 -25
  881. data/lib/ddtrace/contrib/aws/ext.rb +0 -20
  882. data/lib/ddtrace/contrib/aws/instrumentation.rb +0 -56
  883. data/lib/ddtrace/contrib/aws/integration.rb +0 -42
  884. data/lib/ddtrace/contrib/aws/parsed_context.rb +0 -56
  885. data/lib/ddtrace/contrib/aws/patcher.rb +0 -49
  886. data/lib/ddtrace/contrib/aws/services.rb +0 -115
  887. data/lib/ddtrace/contrib/concurrent_ruby/configuration/settings.rb +0 -15
  888. data/lib/ddtrace/contrib/concurrent_ruby/context_composite_executor_service.rb +0 -35
  889. data/lib/ddtrace/contrib/concurrent_ruby/ext.rb +0 -11
  890. data/lib/ddtrace/contrib/concurrent_ruby/future_patch.rb +0 -23
  891. data/lib/ddtrace/contrib/concurrent_ruby/integration.rb +0 -38
  892. data/lib/ddtrace/contrib/concurrent_ruby/patcher.rb +0 -28
  893. data/lib/ddtrace/contrib/configurable.rb +0 -76
  894. data/lib/ddtrace/contrib/configuration/resolver.rb +0 -16
  895. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +0 -39
  896. data/lib/ddtrace/contrib/configuration/settings.rb +0 -35
  897. data/lib/ddtrace/contrib/dalli/configuration/settings.rb +0 -25
  898. data/lib/ddtrace/contrib/dalli/ext.rb +0 -17
  899. data/lib/ddtrace/contrib/dalli/instrumentation.rb +0 -50
  900. data/lib/ddtrace/contrib/dalli/integration.rb +0 -38
  901. data/lib/ddtrace/contrib/dalli/patcher.rb +0 -67
  902. data/lib/ddtrace/contrib/dalli/quantize.rb +0 -22
  903. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +0 -25
  904. data/lib/ddtrace/contrib/delayed_job/ext.rb +0 -18
  905. data/lib/ddtrace/contrib/delayed_job/integration.rb +0 -38
  906. data/lib/ddtrace/contrib/delayed_job/patcher.rb +0 -28
  907. data/lib/ddtrace/contrib/delayed_job/plugin.rb +0 -61
  908. data/lib/ddtrace/contrib/elasticsearch/configuration/settings.rb +0 -26
  909. data/lib/ddtrace/contrib/elasticsearch/ext.rb +0 -19
  910. data/lib/ddtrace/contrib/elasticsearch/integration.rb +0 -39
  911. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +0 -118
  912. data/lib/ddtrace/contrib/elasticsearch/quantize.rb +0 -80
  913. data/lib/ddtrace/contrib/ethon/configuration/settings.rb +0 -27
  914. data/lib/ddtrace/contrib/ethon/easy_patch.rb +0 -148
  915. data/lib/ddtrace/contrib/ethon/ext.rb +0 -15
  916. data/lib/ddtrace/contrib/ethon/integration.rb +0 -43
  917. data/lib/ddtrace/contrib/ethon/multi_patch.rb +0 -80
  918. data/lib/ddtrace/contrib/ethon/patcher.rb +0 -25
  919. data/lib/ddtrace/contrib/excon/configuration/settings.rb +0 -28
  920. data/lib/ddtrace/contrib/excon/ext.rb +0 -14
  921. data/lib/ddtrace/contrib/excon/integration.rb +0 -43
  922. data/lib/ddtrace/contrib/excon/middleware.rb +0 -157
  923. data/lib/ddtrace/contrib/excon/patcher.rb +0 -27
  924. data/lib/ddtrace/contrib/extensions.rb +0 -59
  925. data/lib/ddtrace/contrib/faraday/configuration/settings.rb +0 -33
  926. data/lib/ddtrace/contrib/faraday/connection.rb +0 -18
  927. data/lib/ddtrace/contrib/faraday/ext.rb +0 -14
  928. data/lib/ddtrace/contrib/faraday/integration.rb +0 -43
  929. data/lib/ddtrace/contrib/faraday/middleware.rb +0 -81
  930. data/lib/ddtrace/contrib/faraday/patcher.rb +0 -81
  931. data/lib/ddtrace/contrib/faraday/rack_builder.rb +0 -18
  932. data/lib/ddtrace/contrib/grape/configuration/settings.rb +0 -27
  933. data/lib/ddtrace/contrib/grape/endpoint.rb +0 -208
  934. data/lib/ddtrace/contrib/grape/ext.rb +0 -19
  935. data/lib/ddtrace/contrib/grape/instrumentation.rb +0 -33
  936. data/lib/ddtrace/contrib/grape/integration.rb +0 -39
  937. data/lib/ddtrace/contrib/grape/patcher.rb +0 -73
  938. data/lib/ddtrace/contrib/graphql/configuration/settings.rb +0 -27
  939. data/lib/ddtrace/contrib/graphql/ext.rb +0 -13
  940. data/lib/ddtrace/contrib/graphql/integration.rb +0 -39
  941. data/lib/ddtrace/contrib/graphql/patcher.rb +0 -57
  942. data/lib/ddtrace/contrib/grpc/configuration/settings.rb +0 -25
  943. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +0 -56
  944. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +0 -76
  945. data/lib/ddtrace/contrib/grpc/datadog_interceptor.rb +0 -74
  946. data/lib/ddtrace/contrib/grpc/ext.rb +0 -15
  947. data/lib/ddtrace/contrib/grpc/integration.rb +0 -38
  948. data/lib/ddtrace/contrib/grpc/intercept_with_datadog.rb +0 -49
  949. data/lib/ddtrace/contrib/grpc/patcher.rb +0 -72
  950. data/lib/ddtrace/contrib/http/circuit_breaker.rb +0 -63
  951. data/lib/ddtrace/contrib/http/configuration/settings.rb +0 -27
  952. data/lib/ddtrace/contrib/http/ext.rb +0 -14
  953. data/lib/ddtrace/contrib/http/instrumentation.rb +0 -170
  954. data/lib/ddtrace/contrib/http/integration.rb +0 -45
  955. data/lib/ddtrace/contrib/http/patcher.rb +0 -26
  956. data/lib/ddtrace/contrib/http_annotation_helper.rb +0 -10
  957. data/lib/ddtrace/contrib/integration.rb +0 -16
  958. data/lib/ddtrace/contrib/mongodb/configuration/settings.rb +0 -28
  959. data/lib/ddtrace/contrib/mongodb/ext.rb +0 -20
  960. data/lib/ddtrace/contrib/mongodb/instrumentation.rb +0 -68
  961. data/lib/ddtrace/contrib/mongodb/integration.rb +0 -38
  962. data/lib/ddtrace/contrib/mongodb/parsers.rb +0 -68
  963. data/lib/ddtrace/contrib/mongodb/patcher.rb +0 -31
  964. data/lib/ddtrace/contrib/mongodb/subscribers.rb +0 -108
  965. data/lib/ddtrace/contrib/mysql2/configuration/settings.rb +0 -25
  966. data/lib/ddtrace/contrib/mysql2/ext.rb +0 -15
  967. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +0 -60
  968. data/lib/ddtrace/contrib/mysql2/integration.rb +0 -38
  969. data/lib/ddtrace/contrib/mysql2/patcher.rb +0 -27
  970. data/lib/ddtrace/contrib/patchable.rb +0 -59
  971. data/lib/ddtrace/contrib/patcher.rb +0 -56
  972. data/lib/ddtrace/contrib/presto/configuration/settings.rb +0 -25
  973. data/lib/ddtrace/contrib/presto/ext.rb +0 -25
  974. data/lib/ddtrace/contrib/presto/instrumentation.rb +0 -107
  975. data/lib/ddtrace/contrib/presto/integration.rb +0 -38
  976. data/lib/ddtrace/contrib/presto/patcher.rb +0 -30
  977. data/lib/ddtrace/contrib/racecar/configuration/settings.rb +0 -25
  978. data/lib/ddtrace/contrib/racecar/event.rb +0 -71
  979. data/lib/ddtrace/contrib/racecar/events/batch.rb +0 -27
  980. data/lib/ddtrace/contrib/racecar/events/message.rb +0 -27
  981. data/lib/ddtrace/contrib/racecar/events.rb +0 -30
  982. data/lib/ddtrace/contrib/racecar/ext.rb +0 -21
  983. data/lib/ddtrace/contrib/racecar/integration.rb +0 -39
  984. data/lib/ddtrace/contrib/racecar/patcher.rb +0 -26
  985. data/lib/ddtrace/contrib/rack/configuration/settings.rb +0 -41
  986. data/lib/ddtrace/contrib/rack/ext.rb +0 -18
  987. data/lib/ddtrace/contrib/rack/integration.rb +0 -38
  988. data/lib/ddtrace/contrib/rack/middlewares.rb +0 -287
  989. data/lib/ddtrace/contrib/rack/patcher.rb +0 -107
  990. data/lib/ddtrace/contrib/rack/request_queue.rb +0 -39
  991. data/lib/ddtrace/contrib/rails/configuration/settings.rb +0 -81
  992. data/lib/ddtrace/contrib/rails/ext.rb +0 -13
  993. data/lib/ddtrace/contrib/rails/framework.rb +0 -125
  994. data/lib/ddtrace/contrib/rails/integration.rb +0 -44
  995. data/lib/ddtrace/contrib/rails/middlewares.rb +0 -38
  996. data/lib/ddtrace/contrib/rails/patcher.rb +0 -74
  997. data/lib/ddtrace/contrib/rails/railtie.rb +0 -17
  998. data/lib/ddtrace/contrib/rails/utils.rb +0 -20
  999. data/lib/ddtrace/contrib/rake/configuration/settings.rb +0 -27
  1000. data/lib/ddtrace/contrib/rake/ext.rb +0 -18
  1001. data/lib/ddtrace/contrib/rake/instrumentation.rb +0 -88
  1002. data/lib/ddtrace/contrib/rake/integration.rb +0 -38
  1003. data/lib/ddtrace/contrib/rake/patcher.rb +0 -30
  1004. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +0 -36
  1005. data/lib/ddtrace/contrib/redis/configuration/settings.rb +0 -25
  1006. data/lib/ddtrace/contrib/redis/ext.rb +0 -18
  1007. data/lib/ddtrace/contrib/redis/integration.rb +0 -42
  1008. data/lib/ddtrace/contrib/redis/patcher.rb +0 -97
  1009. data/lib/ddtrace/contrib/redis/quantize.rb +0 -47
  1010. data/lib/ddtrace/contrib/redis/tags.rb +0 -38
  1011. data/lib/ddtrace/contrib/redis/vendor/resolver.rb +0 -159
  1012. data/lib/ddtrace/contrib/registerable.rb +0 -33
  1013. data/lib/ddtrace/contrib/registry.rb +0 -42
  1014. data/lib/ddtrace/contrib/resque/configuration/settings.rb +0 -26
  1015. data/lib/ddtrace/contrib/resque/ext.rb +0 -14
  1016. data/lib/ddtrace/contrib/resque/integration.rb +0 -47
  1017. data/lib/ddtrace/contrib/resque/patcher.rb +0 -29
  1018. data/lib/ddtrace/contrib/resque/resque_job.rb +0 -80
  1019. data/lib/ddtrace/contrib/rest_client/configuration/settings.rb +0 -26
  1020. data/lib/ddtrace/contrib/rest_client/ext.rb +0 -14
  1021. data/lib/ddtrace/contrib/rest_client/integration.rb +0 -38
  1022. data/lib/ddtrace/contrib/rest_client/patcher.rb +0 -23
  1023. data/lib/ddtrace/contrib/rest_client/request_patch.rb +0 -89
  1024. data/lib/ddtrace/contrib/sequel/configuration/settings.rb +0 -23
  1025. data/lib/ddtrace/contrib/sequel/database.rb +0 -61
  1026. data/lib/ddtrace/contrib/sequel/dataset.rb +0 -62
  1027. data/lib/ddtrace/contrib/sequel/ext.rb +0 -15
  1028. data/lib/ddtrace/contrib/sequel/integration.rb +0 -38
  1029. data/lib/ddtrace/contrib/sequel/patcher.rb +0 -33
  1030. data/lib/ddtrace/contrib/sequel/utils.rb +0 -46
  1031. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +0 -24
  1032. data/lib/ddtrace/contrib/shoryuken/ext.rb +0 -18
  1033. data/lib/ddtrace/contrib/shoryuken/integration.rb +0 -39
  1034. data/lib/ddtrace/contrib/shoryuken/patcher.rb +0 -24
  1035. data/lib/ddtrace/contrib/shoryuken/tracer.rb +0 -49
  1036. data/lib/ddtrace/contrib/sidekiq/client_tracer.rb +0 -43
  1037. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +0 -31
  1038. data/lib/ddtrace/contrib/sidekiq/ext.rb +0 -23
  1039. data/lib/ddtrace/contrib/sidekiq/integration.rb +0 -38
  1040. data/lib/ddtrace/contrib/sidekiq/patcher.rb +0 -34
  1041. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +0 -66
  1042. data/lib/ddtrace/contrib/sidekiq/tracing.rb +0 -45
  1043. data/lib/ddtrace/contrib/sinatra/configuration/settings.rb +0 -34
  1044. data/lib/ddtrace/contrib/sinatra/env.rb +0 -38
  1045. data/lib/ddtrace/contrib/sinatra/ext.rb +0 -18
  1046. data/lib/ddtrace/contrib/sinatra/headers.rb +0 -31
  1047. data/lib/ddtrace/contrib/sinatra/integration.rb +0 -38
  1048. data/lib/ddtrace/contrib/sinatra/patcher.rb +0 -27
  1049. data/lib/ddtrace/contrib/sinatra/tracer.rb +0 -87
  1050. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +0 -75
  1051. data/lib/ddtrace/contrib/sucker_punch/configuration/settings.rb +0 -25
  1052. data/lib/ddtrace/contrib/sucker_punch/exception_handler.rb +0 -26
  1053. data/lib/ddtrace/contrib/sucker_punch/ext.rb +0 -18
  1054. data/lib/ddtrace/contrib/sucker_punch/instrumentation.rb +0 -84
  1055. data/lib/ddtrace/contrib/sucker_punch/integration.rb +0 -38
  1056. data/lib/ddtrace/contrib/sucker_punch/patcher.rb +0 -42
  1057. data/lib/ddtrace/correlation.rb +0 -35
  1058. data/lib/ddtrace/diagnostics/health.rb +0 -37
  1059. data/lib/ddtrace/distributed_tracing/headers/b3.rb +0 -44
  1060. data/lib/ddtrace/distributed_tracing/headers/b3_single.rb +0 -56
  1061. data/lib/ddtrace/distributed_tracing/headers/datadog.rb +0 -42
  1062. data/lib/ddtrace/distributed_tracing/headers/headers.rb +0 -70
  1063. data/lib/ddtrace/distributed_tracing/headers/helpers.rb +0 -45
  1064. data/lib/ddtrace/encoding.rb +0 -95
  1065. data/lib/ddtrace/environment.rb +0 -27
  1066. data/lib/ddtrace/error.rb +0 -27
  1067. data/lib/ddtrace/event.rb +0 -52
  1068. data/lib/ddtrace/ext/analytics.rb +0 -12
  1069. data/lib/ddtrace/ext/app_types.rb +0 -11
  1070. data/lib/ddtrace/ext/correlation.rb +0 -10
  1071. data/lib/ddtrace/ext/diagnostics.rb +0 -31
  1072. data/lib/ddtrace/ext/distributed.rb +0 -33
  1073. data/lib/ddtrace/ext/environment.rb +0 -13
  1074. data/lib/ddtrace/ext/errors.rb +0 -10
  1075. data/lib/ddtrace/ext/forced_tracing.rb +0 -25
  1076. data/lib/ddtrace/ext/http.rb +0 -46
  1077. data/lib/ddtrace/ext/manual_tracing.rb +0 -9
  1078. data/lib/ddtrace/ext/metrics.rb +0 -15
  1079. data/lib/ddtrace/ext/net.rb +0 -10
  1080. data/lib/ddtrace/ext/priority.rb +0 -16
  1081. data/lib/ddtrace/ext/runtime.rb +0 -26
  1082. data/lib/ddtrace/ext/sampling.rb +0 -16
  1083. data/lib/ddtrace/ext/sql.rb +0 -8
  1084. data/lib/ddtrace/ext/transport.rb +0 -17
  1085. data/lib/ddtrace/forced_tracing.rb +0 -36
  1086. data/lib/ddtrace/logger.rb +0 -81
  1087. data/lib/ddtrace/metrics.rb +0 -222
  1088. data/lib/ddtrace/monkey.rb +0 -58
  1089. data/lib/ddtrace/opentelemetry/extensions.rb +0 -13
  1090. data/lib/ddtrace/opentelemetry/span.rb +0 -33
  1091. data/lib/ddtrace/opentracer/binary_propagator.rb +0 -24
  1092. data/lib/ddtrace/opentracer/carrier.rb +0 -6
  1093. data/lib/ddtrace/opentracer/distributed_headers.rb +0 -52
  1094. data/lib/ddtrace/opentracer/global_tracer.rb +0 -15
  1095. data/lib/ddtrace/opentracer/propagator.rb +0 -22
  1096. data/lib/ddtrace/opentracer/rack_propagator.rb +0 -60
  1097. data/lib/ddtrace/opentracer/scope.rb +0 -15
  1098. data/lib/ddtrace/opentracer/scope_manager.rb +0 -6
  1099. data/lib/ddtrace/opentracer/span.rb +0 -98
  1100. data/lib/ddtrace/opentracer/span_context.rb +0 -14
  1101. data/lib/ddtrace/opentracer/span_context_factory.rb +0 -23
  1102. data/lib/ddtrace/opentracer/text_map_propagator.rb +0 -75
  1103. data/lib/ddtrace/opentracer/thread_local_scope.rb +0 -30
  1104. data/lib/ddtrace/opentracer/thread_local_scope_manager.rb +0 -40
  1105. data/lib/ddtrace/opentracer/tracer.rb +0 -208
  1106. data/lib/ddtrace/opentracer.rb +0 -40
  1107. data/lib/ddtrace/patcher.rb +0 -47
  1108. data/lib/ddtrace/pin.rb +0 -114
  1109. data/lib/ddtrace/pipeline/span_filter.rb +0 -38
  1110. data/lib/ddtrace/pipeline/span_processor.rb +0 -20
  1111. data/lib/ddtrace/pipeline.rb +0 -46
  1112. data/lib/ddtrace/propagation/grpc_propagator.rb +0 -61
  1113. data/lib/ddtrace/propagation/http_propagator.rb +0 -75
  1114. data/lib/ddtrace/quantization/hash.rb +0 -103
  1115. data/lib/ddtrace/quantization/http.rb +0 -86
  1116. data/lib/ddtrace/runtime/cgroup.rb +0 -44
  1117. data/lib/ddtrace/runtime/class_count.rb +0 -17
  1118. data/lib/ddtrace/runtime/container.rb +0 -73
  1119. data/lib/ddtrace/runtime/gc.rb +0 -16
  1120. data/lib/ddtrace/runtime/identity.rb +0 -41
  1121. data/lib/ddtrace/runtime/metrics.rb +0 -93
  1122. data/lib/ddtrace/runtime/object_space.rb +0 -19
  1123. data/lib/ddtrace/runtime/socket.rb +0 -14
  1124. data/lib/ddtrace/runtime/thread_count.rb +0 -16
  1125. data/lib/ddtrace/sampler.rb +0 -290
  1126. data/lib/ddtrace/sampling/matcher.rb +0 -57
  1127. data/lib/ddtrace/sampling/rate_limiter.rb +0 -127
  1128. data/lib/ddtrace/sampling/rule.rb +0 -61
  1129. data/lib/ddtrace/sampling/rule_sampler.rb +0 -125
  1130. data/lib/ddtrace/sampling.rb +0 -2
  1131. data/lib/ddtrace/span.rb +0 -297
  1132. data/lib/ddtrace/sync_writer.rb +0 -72
  1133. data/lib/ddtrace/tracer.rb +0 -437
  1134. data/lib/ddtrace/transport/http/adapters/net.rb +0 -112
  1135. data/lib/ddtrace/transport/http/adapters/registry.rb +0 -24
  1136. data/lib/ddtrace/transport/http/adapters/test.rb +0 -77
  1137. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +0 -64
  1138. data/lib/ddtrace/transport/http/api/endpoint.rb +0 -27
  1139. data/lib/ddtrace/transport/http/api/fallbacks.rb +0 -22
  1140. data/lib/ddtrace/transport/http/api/instance.rb +0 -29
  1141. data/lib/ddtrace/transport/http/api/map.rb +0 -14
  1142. data/lib/ddtrace/transport/http/api/spec.rb +0 -15
  1143. data/lib/ddtrace/transport/http/api.rb +0 -46
  1144. data/lib/ddtrace/transport/http/builder.rb +0 -165
  1145. data/lib/ddtrace/transport/http/client.rb +0 -107
  1146. data/lib/ddtrace/transport/http/env.rb +0 -48
  1147. data/lib/ddtrace/transport/http/response.rb +0 -26
  1148. data/lib/ddtrace/transport/http/statistics.rb +0 -30
  1149. data/lib/ddtrace/transport/http/traces.rb +0 -140
  1150. data/lib/ddtrace/transport/http.rb +0 -91
  1151. data/lib/ddtrace/transport/io/client.rb +0 -76
  1152. data/lib/ddtrace/transport/io/response.rb +0 -23
  1153. data/lib/ddtrace/transport/io/traces.rb +0 -44
  1154. data/lib/ddtrace/transport/io.rb +0 -26
  1155. data/lib/ddtrace/transport/parcel.rb +0 -17
  1156. data/lib/ddtrace/transport/request.rb +0 -13
  1157. data/lib/ddtrace/transport/response.rb +0 -49
  1158. data/lib/ddtrace/transport/statistics.rb +0 -72
  1159. data/lib/ddtrace/transport/traces.rb +0 -33
  1160. data/lib/ddtrace/utils/database.rb +0 -25
  1161. data/lib/ddtrace/utils/time.rb +0 -14
  1162. data/lib/ddtrace/utils.rb +0 -65
  1163. data/lib/ddtrace/vendor/active_record/connection_specification.rb +0 -301
  1164. data/lib/ddtrace/worker.rb +0 -20
  1165. data/lib/ddtrace/workers/async.rb +0 -165
  1166. data/lib/ddtrace/workers/loop.rb +0 -105
  1167. data/lib/ddtrace/workers/polling.rb +0 -48
  1168. data/lib/ddtrace/workers/queue.rb +0 -39
  1169. data/lib/ddtrace/workers.rb +0 -125
  1170. data/lib/ddtrace/writer.rb +0 -161
  1171. data/tasks/release_gem.rake +0 -28
data/CHANGELOG.md CHANGED
@@ -2,6 +2,1671 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [1.23.1] - 2024-06-06
6
+
7
+ ### Fixed
8
+
9
+ AppSec: Fix undefined method error when Tracing disabled ([#3650][])
10
+
11
+ ## [1.23.0] - 2024-05-09
12
+
13
+ ### Added
14
+
15
+ * Profiling: Enable endpoint profiling for Sidekiq and similar background job processors ([#3619][])
16
+
17
+ ### Fixed
18
+
19
+ * Fix no such file or directory issue when using single step instrumentation ([#3623][])
20
+ * Fix error during telemetry debug logging attempt ([#3618][])
21
+
22
+ ## [1.22.0] - 2024-04-16
23
+
24
+ ### Added
25
+
26
+ * Tracing: Add sampling rules by trace resouce and tags ([#3587][], [#3585][])
27
+ * Appsec: Add WAF vendor header support ([#3528][])
28
+
29
+ ### Changed
30
+
31
+ * Upgrade `Telemetry` to V2 ([#3551][])
32
+ * Upgrade to libdatadog 7 ([#3536][])
33
+ * Profiling: Enable Garbage Collection profiling by default ([#3558][])
34
+ * Profiling: Skip heap samples with age 0 ([#3573][])
35
+ * Profiling: Support falling back into extension directory when loading profiler ([#3582][])
36
+
37
+ ### Fixed
38
+
39
+ * Appsec: Fix MIME-style newlines with strict base64 encoding ([#3565][])
40
+
41
+ ## [2.0.0.beta1] - 2024-03-22
42
+
43
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v2.0.0.beta1
44
+
45
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.21.1...v2.0.0.beta1
46
+
47
+ See https://github.com/DataDog/dd-trace-rb/blob/v2.0.0.beta1/docs/UpgradeGuide2.md.
48
+
49
+ ## [1.21.1] - 2024-03-20
50
+
51
+ ### Added
52
+
53
+ * Backports auto instrument shim with `datadog/auto_instrument` ([#3535][])
54
+
55
+ ### Fixed
56
+
57
+ * Fix ActiveRecord resolving invalid string ([#3523][])
58
+ * Revert `http.route` tagging to fix instrumentation failure for Rails 7.1 apps ([#3539][])
59
+ * Fix wrong permissions on released gem files ([#3531][])
60
+
61
+ ## [1.21.0] - 2024-03-14
62
+
63
+ ### Highlights
64
+ Allocation profiling is now in beta, and timeline profiling is enabled by default.
65
+ For more details, check the [release notes](https://github.com/DataDog/dd-trace-rb/releases/tag/v1.21.0)
66
+
67
+ ### Added
68
+
69
+ * APM source code integration ([#3463][])
70
+ * Core: Reduce startup logs verbosity ([#3468][])
71
+ * Tracing: Add Concurrent::Async instrumentation ([#3427][])
72
+ * Profiling: System info support ([#3357][])
73
+ * Profiling: Add bin/ddprofrb ([#3501][])
74
+
75
+ ### Changed
76
+
77
+ * Bump datadog-ci dependency to 0.8.1 ([#3518][])
78
+ * Upgrade to libdatadog 6 ([#3455][])
79
+ * Core: Allow suppressing error logs for Core::Remote::Negotiation ([#3495][])
80
+ * Tracing: Add `http.route` tag to rack ([#3345][])
81
+ * Tracing: Logs deprecation warning for `use` removal ([#3438][])
82
+ * Profiling: Allocation sampling overhead improvements ([#3434][], [#3440][])
83
+ * Profiling: Enable timeline by default ([#3428][])
84
+ * Profiling: Rename Profiling files to reflect "datadog" instead of "ddtrace" ([#3502][])
85
+ * Profiling: Replace `profiling.advanced.experimental_allocation_enabled` with `profiling.allocation_enabled` and remove experimental warning ([#3520][])
86
+
87
+ ### Fixed
88
+
89
+ * Core: Fix rare remote configuration worker thread leak ([#3519][])
90
+ * Tracing: Fix `Datadog::Tracing.reject!` with correct metrics ([#3491][])
91
+ * Tracing: Guard PG result with `nil` check ([#3511][])
92
+ * Profiling: Add workaround for Ruby VM bug causing crash in gc_finalize_deferred ([#3473][])
93
+ * Profiling: Fix missing profiling code hotspots when using ddtrace+otel ([#3466][])
94
+ * Profiling: Stop worker on clock failure ([#3439][])
95
+ * Profiling: Upgrade libdatadog to fix incorrect platform detection for x86_64-linux-gnu/aarch64-linux-gnu ([#3503][])
96
+
97
+ ## [1.20.0] - 2024-02-05
98
+
99
+ ### Added
100
+
101
+ * Tracing: Add `Trilogy` instrumentation ([#3274][])
102
+ * Rack: Add remote configuration boot tags ([#3315][])
103
+ * Faraday: Add `on_error` option ([#3431][])
104
+ * Profiling: Add dynamic allocation sampling ([#3395][])
105
+
106
+ ### Changed
107
+
108
+ * Bump `datadog-ci` dependency to 0.7.0 ([#3408][])
109
+ * Improve performance of gathering ClassCount metric ([#3386][])
110
+
111
+ ### Fixed
112
+
113
+ * OpenTelemetry: Fix internal loading ([#3400][])
114
+ * Core: Fix logger deadlock ([#3426][])
115
+ * Rack: Fix missing active trace ([#3420][])
116
+ * Redis: Fix instance configuration ([#3278][])
117
+
118
+ ## [1.19.0] - 2024-01-10
119
+
120
+ ### Highlights
121
+ Alpha support for memory profiling has been added. For more details, check the [release notes](https://github.com/DataDog/dd-trace-rb/releases/tag/v1.19.0)
122
+
123
+ ### Added
124
+ * Tracing: Add `on_error` settings for `mysql2` ([#3316][])
125
+ * Core: Add install_signature to app-started telemetry event ([#3349][])
126
+ * Profiling: Heap Profiling ([#3281][]) ([#3287][]) ([#3328][]) ([#3329][]) ([#3333][]) ([#3360][])
127
+ * Profiling: Redesign GC profiling to add timeline support and reduce overhead ([#3313][])
128
+ * Core: Use Ruby 3.3 stable for CI testing ([#3354][])
129
+
130
+ ### Changed
131
+ * Core: Bump `datadog-ci` dependency to 0.6.0 ([#3361][])
132
+ * Core: Bump debase-ruby_core_source dependency to 3.3.1 ([#3373][])
133
+ * Docs: Backport "List Ruby 3.3 as supported in the docs" to master branch ([#3374][])
134
+ * Profiling: Import upstream `rb_profile_frames` fix ([#3352][])
135
+ * Profiling: Allow the dynamic sampling rate overhead target to be set ([#3310][])
136
+ * Profiling: Split profiling tests into ractor and non-ractor suites. ([#3320][])
137
+
138
+ ### Fixed
139
+ * Docs: Fix `pg` doc markdown format ([#3317][])
140
+ * Tracing: Fix recursive `require` in Railtie ([#3365][])
141
+ * Profiling: Fix issues stemming from rb_gc_force_recycle ([#3366][])
142
+ * Profiling: Fix Ruby 3.3 CI being broken in master due to profiler ([#3356][])
143
+ * Profiling: Fix "no signals" workaround detection when mariadb is in use ([#3362][])
144
+
145
+ ## [1.18.0] - 2023-12-07
146
+
147
+ ### Added
148
+
149
+ * Tracing: Support lib injection for ARM64 architecture ([#3307][])
150
+ * Tracing: Add `error_handler` for `pg` instrumentation ([#3303][])
151
+ * Appsec: Enable "Trusted IPs", a.k.a passlist with optional monitoring ([#3229][])
152
+
153
+ ### Changed
154
+
155
+ * Mark ddtrace threads as fork-safe ([#3279][])
156
+ * Bump `datadog-ci` dependency to 0.5.0 ([#3308][])
157
+ * Bump `debase-ruby_core_source` dependency to 3.2.3 ([#3284][])
158
+ * Profiling: Disable profiler on Ruby 3.3 when running with RUBY_MN_THREADS=1 ([#3259][])
159
+ * Profiling: Run without "no signals" workaround on passenger 6.0.19+ ([#3280][])
160
+
161
+ ### Fixed
162
+
163
+ * Tracing: Fix `pg` instrumentation `enabled` settings ([#3271][])
164
+ * Profiling: Fix potential crash by importing upstream `rb_profile_frames` fix ([#3289][])
165
+ * Appsec: Call `devise` RegistrationsController block ([#3286][])
166
+
167
+ ## [1.17.0] - 2023-11-22
168
+
169
+ For W3C Trace Context, this release adds [`tracecontext`](https://www.w3.org/TR/trace-context/) to the default trace propagation extraction and injection styles. The new defaults are:
170
+ * Extraction: `Datadog,b3multi,b3,tracecontext`
171
+ * Injection: `Datadog,tracecontext`
172
+
173
+ And to increase interoperability with `tracecontext`, 128-bit Trace ID generation is now the default.
174
+
175
+ For OpenTelemetry, this release adds support for converting [OpenTelemetry Trace Semantic Conventions](https://opentelemetry.io/docs/specs/semconv/general/trace/) into equivalent Datadog trace semantics. Also, it's now possible to configure top-level Datadog span fields using OpenTelemetry span attributes (https://github.com/DataDog/dd-trace-rb/pull/3262).
176
+
177
+ For CI Visibility, you can now manually create CI traces and spans with the [newly released API](https://github.com/DataDog/datadog-ci-rb/releases/tag/v0.4.0).
178
+
179
+ ### Added
180
+
181
+ * OpenTelemetry: Parse OpenTelemetry semantic conventions to Datadog's ([#3273][])
182
+ * OpenTelemetry: Support span reserved attribute overrides ([#3262][])
183
+ * Tracing: Ensure W3C `tracestate` is always propagated ([#3255][])
184
+
185
+ ### Changed
186
+
187
+ * Tracing: Set 128-bit trace_id to true by default ([#3266][])
188
+ * Tracing: Default trace propagation styles to `Datadog,b3multi,b3,tracecontext` ([#3248][],[#3267][])
189
+ * Ci-App: Upgraded `datadog-ci` dependency to 0.4 ([#3270][])
190
+
191
+ ## [1.16.2] - 2023-11-10
192
+
193
+ This release reverts a change to appsec response body parsing that was introduced in [1.16.0 ](https://github.com/DataDog/dd-trace-rb/releases/tag/v1.16.0) that may cause memory leaks.
194
+
195
+ ### Fixed
196
+ * Appsec: [Revert parse response body fix introduced in 1.16.0](https://github.com/DataDog/dd-trace-rb/pull/3153) ([#3252][])
197
+
198
+ ## [1.16.1] - 2023-11-08
199
+
200
+ ### Fixed
201
+
202
+ * Tracing: Fix `concurrent-ruby` future propagation without `active_trace` ([#3242][])
203
+ * Tracing: Fix host injection error handling ([#3240][])
204
+
205
+ ## [1.16.0] - 2023-11-03
206
+
207
+ **This release includes a security change for the Tracing Redis integration:**
208
+
209
+ Currently, the Datadog Agent removes command arguments from the resource name. However there are cases, like Redis compressed keys, where this obfuscation cannot correctly remove command arguments. To safeguard that situation, the resource name set by the tracer will only be the command (e.g. `SET`) with no arguments. To retain the previous behavior and keep arguments in the span resource, with the potential risk of some command arguments not being fully obfuscated, set ``DD_REDIS_COMMAND_ARGS=true`` or set the option `c.instrument :redis, command_args: true`.
210
+
211
+ ### Added
212
+
213
+ * Tracing: Propagate trace through `Concurrent::Promises.future` ([#1522][])
214
+ * Core: Name `Datadog::Core::Remote::Worker` thread ([#3207][])
215
+
216
+ ### Changed
217
+
218
+ * Tracing: Redis - Omit command arguments from span.resource by default ([#3235][])
219
+ * Ci-app: Bump `datadog-ci` dependency from 0.2.0 to 0.3.0 ([#3223][])
220
+
221
+ ### Fixed
222
+
223
+ * Appsec: ASM parse response body ([#3153][])
224
+ * Appsec: ASM make sure to append content type and length information ([#3204][])
225
+ * Appsec: Make sure function that checks content-type header value accepts nil content-type header value ([#3234][])
226
+ * Profiling: Shut down profiler if any components failed ([#3197][])
227
+ * Tracing: Fix `ActiveSupport` instrumentation of custom cache stores ([#3206][])
228
+
229
+ ## [1.15.0] - 2023-10-09
230
+
231
+ ### Highlights
232
+
233
+ * Timeline view for Profiler beta
234
+ * Configure AppSec blocking responses via configuration or Remote Configuration
235
+ * CI visibility to configure with agentless mode
236
+
237
+ For more details, check the [release notes](https://github.com/DataDog/dd-trace-rb/releases/tag/v1.15.0)
238
+
239
+ ### Added
240
+
241
+ * Enable allocation counting feature by default for some Ruby 3 versions ([#3176][])
242
+ * Detect `WebMock` `Cucumber` and `Rails.env` to disable telemetry and remote configuration for development environment ([#3065][], [#3062][], [#3145][])
243
+ * Profiling: Import java-profiler PID controller and port it to C ([#3190][])
244
+ * Profiling: Record allocation type when sampling objects ([#3096][])
245
+ * Profiling: Include `ruby vm type` in profiler allocation samples ([#3074][])
246
+ * Tracing: Support `Rack` 3 ([#3132][])
247
+ * Tracing: Support `Opensearch` 3 ([#3189][])
248
+ * Tracing: `grpc` adds `client_error_handler` option ([#3095][])
249
+ * Tracing: Add `async` option for `test_mode` configuration ([#3158][])
250
+ * Tracing: Implements `_dd.base_service` tag ([#3018][])
251
+ * Appsec: Allow blocking response template configuration via ENV variables ([#2975][])
252
+ * Appsec: ASM API security. Schema extraction ([#3131][], [#3166][], [#3177][])
253
+ * Appsec: Enable configuring blocking response via Remote Configuration ([#3099][])
254
+ * Ci-app: Validate git tags ([#3100][])
255
+ * Ci-app: Add agentless mode ([#3186][])
256
+
257
+ ### Changed
258
+
259
+ * Appsec: Skip passing waf addresses when the value is empty ([#3188][])
260
+ * Profiling: Restore support for Ruby 3.3 ([#3167][])
261
+ * Profiling: Add approximate thread state categorization for timeline ([#3162][])
262
+ * Profiling: Wire up allocation sampling into `CpuAndWallTimeWorker` ([#3103][])
263
+ * Tracing: `dalli` disable memcached command tag by default ([#3171][])
264
+ * Tracing: Use first valid extracted style for distributed tracing ([#2879][])
265
+ * Tracing: Rename configuration option `on_set` to `after_set` ([#3107][])
266
+ * Tracing: Rename `experimental_default_proc` to `default_proc` ([#3091][])
267
+ * Tracing: Use `peer.service` for sql comment propagation ([#3127][])
268
+ * Ci-app: Fix `Datadog::CI::Environment` to support the new CI specs ([#3080][])
269
+ * Bump `datadog-ci` dependency to 0.2 ([#3186][])
270
+ * Bump `debase-ruby_core_source` dependency to 3.2.2 ([#3163][])
271
+ * Upgrade `libdatadog` 5 ([#3169][], [#3104][])
272
+ * Upgrade `libddwaf-rb` 1.11.0 ([#3087][])
273
+ * Update AppSec rules to 1.8.0 ([#3140][], [#3139][])
274
+
275
+ ### Fixed
276
+
277
+ * Profiling: Add workaround for incorrect invoke location when logging gem is in use ([#3183][])
278
+ * Profiling: Fix missing endpoint profiling when `request_queuing` is enabled in `rack` instrumentation ([#3109][])
279
+ * Appsec: Span tags reporting the number of WAF failed loaded rules ([#3106][])
280
+ * Tracing: Fix tagging with empty data ([#3102][])
281
+ * Tracing: Fix `rails.cache.backend` span tag with multiple stores ([#3060][])
282
+
283
+ ### Removed
284
+
285
+ * Profiling: Remove legacy profiler codepath ([#3172][])
286
+ * Ci-app: Remove CI module and add a dependency on [`datadog-ci` gem](https://github.com/DataDog/datadog-ci-rb) ([#3128][])
287
+ * Tracing: Remove `depends_on` option from configuration DSL ([#3085][])
288
+ * Tracing: Remove `delegate_to` option from configuration DSL ([#3086][])
289
+
290
+ ## [1.14.0] - 2023-08-24
291
+
292
+ ### Added
293
+
294
+ * Cucumber 8.0.0 support, test CI visibility with cucumber versions 6-8 ([#3061][])
295
+ * Tracing: Add `ddsource` to #to_log_format ([#3025][])
296
+ * Core: include peer service configurations in telemetry payload ([#3056][])
297
+ * Tracing: Improve quantization ([#3041][])
298
+
299
+ ### Changed
300
+
301
+ * Profiling: Disable profiler on Ruby 3.3 due to incompatibility ([#3054][])
302
+ * Core: EnvironmentLogger adjustments ([#3020][], [#3057][])
303
+
304
+ ### Fixed
305
+
306
+ * Appsec: Fix ASM setting for automated user events. ([#3070][])
307
+ * Tracing: Fix ActiveRecord adapter name for Rails 7 ([#3051][])
308
+
309
+ ## [1.13.1] - 2023-08-14
310
+
311
+ ### Fixed
312
+
313
+ * Tracing: `net/http` instrumentation excludes query string for `http.url` tag ([#3045][])
314
+ * Tracing: Remove `log_tags` warning when given hash for log injection ([#3022][])
315
+ * Tracing: Fix OpenSearch integration loading ([#3019][])
316
+ * Core: Fix default hostname/port when mixing http and uds configuration ([#3037][])
317
+ * Core: Disable Telemetry and Remote Configuration in development environments ([#3039][])
318
+ * Profiling: Improve `Datadog::Profiling::HttpTransport` error logging ([#3038][])
319
+ * Docs: Document known issues with hanging Resque workers ([#3033][])
320
+
321
+ ## [1.13.0] - 2023-07-31
322
+
323
+ ### Added
324
+
325
+ * Core: Add support for `Option` precedence ([#2915][])
326
+ * Core: Add support for unsetting options ([#2972][])
327
+ * Core: Gauge primitive `RubyVM::YJIT.runtime_stats`, if `YJIT` is enabled ([#2711][], [#2959][])([@HeyNonster][])
328
+ * Core: Add Telemetry `app-client-configuration-change` event ([#2977][])
329
+ * Core: Improve our `SafeDup` module ([#2960][])
330
+ * Tracing: Add `OpenSearch` Integration ([#2940][])
331
+ * Tracing: Implement `peer.service` tag to integrations ([#2982][])
332
+ * Tracing: Add mandatory rpc and grpc tags for `grpc` integration ([#2620][], [#2962][])
333
+ * Tracing: Include `_dd.profiling.enabled` tag ([#2913][])
334
+ * Tracing: Support host injection ([#2941][], [#3007][])
335
+ * Tracing: Implement Dynamic Configuration for tracing ([#2848][], [#2973][])
336
+ * Tracing: Add for dynamic log injection configuration ([#2992][])
337
+ * Tracing: Add sampling configuration with `DD_TRACE_SAMPLING_RULES` ([#2968][])
338
+ * Tracing: Add HTTP header tagging with `DD_TRACE_HEADER_TAGS` for clients and servers ([#2946][], [#2935][])
339
+ * Profiling: Add fallback name/invoke location for unnamed threads started in native code ([#2993][])
340
+ * Profiling: Use invoke location as a fallback for nameless threads in the profiler ([#2950][])
341
+ * Profiling: Add fallback name for main thread in profiling data ([#2939][])
342
+ * Ci-app: Add `Minitest` CI integration ([#2932][]) ([@bravehager][])
343
+ * Appsec: `Devise` integration and automatic user events ([#2877][])
344
+ * Appsec: Handle disabled tracing and appsec events ([#2572][])
345
+ * Appsec: Automate user events check for UUID in safe mode ([#2952][])
346
+ * Docs: Add Ruby 3.2 support to compatibility matrix ([#2971][])
347
+
348
+ ### Changed
349
+
350
+ * Core: Set maximum supported Ruby version ([#2497][])
351
+ * Core: Prevent telemetry requests from being traced ([#2961][])
352
+ * Core: Add `env` and `type` to Core configuration option ([#2983][], [#2988][], [#2994][])
353
+ * Core: Remove `lazy` from Core configuration option ([#2931][], [#2999][])
354
+ * Profiling: Bump `libdatadog` dependency to version 3 ([#2948][])
355
+ * Profiling: Improve error message when `ddtrace_profiling_loader` fails to load ([#2957][])
356
+ * Tracing: Improve log injection runtime conditionals ([#2926][], [#2882][])
357
+
358
+ ### Fixed
359
+
360
+ * Core: Fix polynomial-time regular expressions ([#2814][])
361
+ * Core: Fix environment variable for dynamic configuration polling interval ([#2967][])
362
+ * Core: Reduce remote configuration error logging noise ([#3011][])
363
+ * Tracing: Fix manual log injection for 128 bit trace_id ([#2974][])
364
+ * Tracing: Ensure the GRPC client interceptor return the response ([#2928][]) ([@KJTsanaktsidis][])
365
+ * Tracing: Remove dynamic input used in regular expression ([#2867][])
366
+ * Tracing: Fix distributed tracing header formats ([#3005][] )
367
+ * Profiling: Fix profiler `libmysqlclient` version detection with `mysql2-aurora` gem ([#2956][])
368
+ * Profiling: Automatically enable profiler "no signals" workaround for `passenger` web server ([#2978][])
369
+
370
+ ## [1.12.1] - 2023-06-14
371
+
372
+ ### Added
373
+ * Appsec: Add `appsec.blocked` tag to span ([#2895][])
374
+ * Profiling: Add workaround for legacy profiler incompatibility with ruby-cloud-profiler gem ([#2891][])
375
+ * Core: Allow setting remote configuration service name ([#2853][])
376
+
377
+ ### Changed
378
+ * Appsec: Change the value format for the WAF address `server.request.query` ([#2903][])
379
+ * Profiling: Log pkg-config command when building profiling native extension
380
+
381
+ ### Fixed
382
+ * Appsec: Update blocked response content_type resolution ([#2900][])
383
+ * Appsec: Ensure to use service entry span. ([#2898][])
384
+ * Tracing: Fix AWS integration constant loading ([#2896][])
385
+
386
+ ## [1.12.0] - 2023-06-02
387
+
388
+ ### Added
389
+ * Profiling: Add support for profiling Ruby 3.3.0-preview1 ([#2860][])
390
+ * Appsec: Appsec support nested apps ([#2836][])
391
+ * Appsec: Appsec add support for custom rules ([#2856][])
392
+ * Appsec: Update appsec static rules to 1.7.0 version ([#2869][])
393
+ * Appsec: Tag AppSec on Rack top-level span ([#2858][])
394
+ * Profiling: Implement "no signals" workaround and enable CPU Profiling 2.0 for all customers ([#2873][])
395
+ * Ci: Update CI Visibility spec ([#2874][])
396
+ * Appsec: Added missing waf addresses to request operation ([#2883][])
397
+
398
+ ### Changed
399
+
400
+ * Tracing: Consistent APM Span tags for AWS SDK Requests ([#2730][])
401
+ * Tracing: Change default `service_name` values Part 2 ([#2765][])
402
+ * Profiling: Bump debase-ruby_core_source dependency to 3.2.1 ([#2875][])
403
+
404
+ ### Fixed
405
+ * Telemetry: Disable for non-HTTP agent connection ([#2815][])
406
+ * Tracing: Fix circular requires ([#2826][])
407
+ * Tracing: Update comment about Datadog::Tracing::Distributed::Ext to correct modules ([#2840][])
408
+ * Appsec: Check if `:appsec` setting is present before accessing it in remote component ([#2854][])
409
+ * Telemetry: Do not send Dependency `hash` when `version` is present ([#2855][])
410
+ * Core: Fix symbol configuration for `env` and `service` ([#2864][])
411
+ * Tracing: Fix sql comment propagation `full` mode when tracing is disabled ([#2866][])
412
+ * Appsec: Use relative URI for server.request.uri.raw ([#2890][])
413
+
414
+ ## [1.11.1] - 2023-05-03
415
+
416
+ ### Fixed
417
+
418
+ * Appsec: Remove misreported `ASM_CUSTOM_RULES` capability ([#2829][])
419
+ * Appsec: Fix block response content negotiation ([#2824][])
420
+ * Appsec: Fix incorrect remote configuration payload key handling ([#2822][])
421
+
422
+ ## [1.11.0] - 2023-04-27
423
+
424
+ ### Highlights
425
+
426
+ As of ddtrace 1.11.0, these features are GA and emabled by default:
427
+
428
+ - CPU Profiling 2.0
429
+ - Remote Configuration
430
+ - Telemetry
431
+
432
+ For more details, check the release notes.
433
+
434
+ ### Added
435
+
436
+ * Add remote configuration, enabled by default ([#2674][], [#2678][], [#2686][], [#2687][], [#2688][], [#2689][], [#2696][], [#2705][], [#2731][], [#2732][], [#2733][], [#2739][], [#2756][], [#2769][], [#2771][], [#2773][], [#2789][], [#2805][], [#2794][])
437
+ * AppSec: Add response headers passing to WAF ([#2701][])
438
+ * Tracing: Distributed tracing for Sidekiq ([#2513][])
439
+ * Tracing: Add Roda integration ([#2368][])
440
+ * Profiling: Support disabling endpoint names collection in new profiler ([#2698][])
441
+ * Tracing: Support Sidekiq 7 ([#2810][])
442
+ * Core: Add support for Unix Domain Socket (UDS) configuration via `DD_TRACE_AGENT_URL` ([#2806][])
443
+ * Core: Enable Telemetry by default ([#2762][])
444
+
445
+ ### Changed
446
+
447
+ * Core: Allow `1` as true value in environment variables ([#2710][])
448
+ * Profiling: Enable CPU Profiling 2.0 by default ([#2702][])
449
+ * Tracing: Improve controller instrumentation and deprecate option `exception_controller` ([#2726][])
450
+ * Tracing: Implement Span Attribute Schema Environment Variable ([#2727][])
451
+ * Tracing: Change default `service_name` values (gated by feature flag) ([#2760][])
452
+
453
+ ### Fixed
454
+
455
+ * Bug: Tracing: Fix w3c propagation special character handling ([#2720][])
456
+ * Performance: Tracing: Use `+@` instead of `dup` for duplicating strings ([#2704][])
457
+ * Profiling: Avoid triggering allocation sampling during sampling ([#2690][])
458
+ * Integrations: Tracing: Fix Rails < 3 conditional check in Utils#railtie_supported? ([#2695][])
459
+ * Profiling: Do not auto-enable new profiler when rugged gem is detected ([#2741][])
460
+ * Tracing: Fix using SemanticLogger#log(severity, message, progname) ([#2748][]) ([@rqz13][])
461
+ * Profiling: Improve detection of mysql2 gem incompatibilities with profiler ([#2770][])
462
+ * AppSec: Remove check for `::Rack::Request.instance_methods.include?(:each_header)` at load time ([#2778][])
463
+ * Tracing: Fix quadratic backtracking on invalid URI ([#2788][])
464
+ * Community: Correctly set mutex ([#2757][]) ([@ixti][])
465
+
466
+ Read the [full changeset](https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0.beta1) and the release [milestone](https://github.com/DataDog/dd-trace-rb/milestone/121?closed=1).
467
+
468
+ ## [1.11.0.beta1] - 2023-04-14
469
+
470
+ As of ddtrace 1.11.0.beta1, CPU Profiling 2.0 is now GA and enabled by default. For more details, check the release notes.
471
+
472
+ As of ddtrace 1.11.0.beta1, Remote Configuration is now public beta and disabled by default. For more details, check the release notes.
473
+
474
+ ### Added
475
+
476
+ * Add remote configuration beta, disabled by default ([#2674][], [#2678][], [#2686][], [#2687][], [#2688][], [#2689][], [#2696][], [#2705][], [#2731][], [#2732][], [#2733][], [#2739][], [#2756][], [#2769][], [#2771][], [#2773][], [#2789][])
477
+ * AppSec: Add response headers passing to WAF ([#2701][])
478
+ * Tracing: Distributed tracing for Sidekiq ([#2513][])
479
+ * Tracing: Add Roda integration ([#2368][])
480
+ * Profiling: [PROF-6555] Support disabling endpoint names collection in new profiler ([#2698][])
481
+
482
+ ### Changed
483
+
484
+ * Core: Allow `1` as true value in environment variables ([#2710][])
485
+ * Profiling: [PROF-7360] Enable CPU Profiling 2.0 by default ([#2702][])
486
+ * Tracing: Improve controller instrumentation and deprecate option `exception_controller` ([#2726][])
487
+ * Tracing: Implement Span Attribute Schema Environment Variable ([#2727][])
488
+
489
+ ### Fixed
490
+
491
+ * Bug: Tracing: Fix w3c propagation special character handling ([#2720][])
492
+ * Performance: Tracing: Use `+@` instead of `dup` for duplicating strings ([#2704][])
493
+ * Profiling: [PROF-7307] Avoid triggering allocation sampling during sampling ([#2690][])
494
+ * Integrations: Tracing: Fix Rails < 3 conditional check in Utils#railtie_supported? ([#2695][])
495
+ * Profiling: [PROF-7409] Do not auto-enable new profiler when rugged gem is detected ([#2741][])
496
+ * Tracing: Fix using SemanticLogger#log(severity, message, progname) ([#2748][]) ([@rqz13][])
497
+ * Profiling: [PROF-6447] Improve detection of mysql2 gem incompatibilities with profiler ([#2770][])
498
+ * AppSec: Remove check for `::Rack::Request.instance_methods.include?(:each_header)` at load time ([#2778][])
499
+ * Tracing: Fix quadratic backtracking on invalid URI ([#2788][])
500
+
501
+ ## [1.10.1] - 2023-03-10
502
+
503
+ ### Fixed
504
+
505
+ * CI: Update TeamCity environment variable support ([#2668][])
506
+ * Core: Fix spurious dependency on AppSec when loading CI with `require 'datadog/ci'` ([#2679][])
507
+ * Core: Allow multiple headers and multiple IPs per header for client IP ([#2665][])
508
+ * AppSec: prevent side-effect on AppSec login event tracking method arguments ([#2663][]) ([@coneill-enhance][])
509
+
510
+ ## [1.10.0] - 2023-03-06
511
+
512
+ ### Added
513
+
514
+ * Support Ruby 3.2 ([#2601][])
515
+ * Publish init container image (beta) for `dd-trace-rb` injection through K8s admission controller ([#2606][])
516
+ * Tracing: Support 128 bits trace id ([#2543][])
517
+ * Tracing: Add tags to integrations (`que` / `racecar` / `resque`/ `shoryken` / `sneakers` / `qless` / `delayed_job` / `kafka` / `sidekiq` / `dalli` / `presto` / `elasticsearch`) ([#2619][], [#2613][] , [#2608][], [#2590][])
518
+ * Appsec: Introduce `AppSec::Instrumentation::Gateway::Argument` ([#2648][])
519
+ * Appsec: Block request when user ID matches rules ([#2642][])
520
+ * Appsec: Block request base on response addresses matches ([#2605][])
521
+ * Appsec: Allow to set user id denylist ([#2612][])
522
+ * Profiling: Show profiler overhead in flamegraph for CPU Profiling 2.0 ([#2607][])
523
+ * Profiling: Add support for allocation samples to `ThreadContext` ([#2657][])
524
+ * Profiling: Exclude disabled profiling sample value types from output ([#2634][])
525
+ * Profiling: Extend stack collector to record the alloc-samples metric ([#2618][])
526
+ * Profiling: Add `Profiling.allocation_count` API for new profiler ([#2635][])
527
+
528
+ ### Changed
529
+
530
+ * Tracing: `rack` instrumentation counts time spent in queue as part of the `http_server.queue` span ([#2591][]) ([@agrobbin][])
531
+ * Appsec: Update ruleset to 1.5.2 ([#2662][], [#2659][], [#2598][])
532
+ * Appsec: Update `libddwaf` version to 1.6.2.0.0 ([#2614][])
533
+ * Profiling: Upgrade profiler to use `libdatadog` v2.0.0 ([#2599][])
534
+ * Profiling: Remove support for profiling Ruby 2.2 ([#2592][])
535
+
536
+ ### Fixed
537
+
538
+ * Fix broken Ruby VM statistics for Ruby 3.2 ([#2600][])
539
+ * Tracing: Fix 'uninitialized constant GRPC::Interceptor' error with 'gapic-common' gem ([#2649][])
540
+ * Profiling: Fix profiler not adding the "In native code" placeholder ([#2594][])
541
+ * Fix profiler detection for google-protobuf installation ([#2595][])
542
+
543
+ ## [1.9.0] - 2023-01-30
544
+
545
+ As of ddtrace 1.9.0, CPU Profiling 2.0 is now in opt-in (that is, disabled by default) public beta. For more details, check the release notes.
546
+
547
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.9.0
548
+
549
+ ### Added
550
+
551
+ * Tracing: Add `Stripe` instrumentation ([#2557][])
552
+ * Tracing: Add configurable response codes considered as errors for `Net/HTTP`, `httprb` and `httpclient` ([#2501][], [#2576][])([@caramcc][])
553
+ * Tracing: Flexible header matching for HTTP propagator ([#2504][])
554
+ * Tracing: `OpenTelemetry` Traces support ([#2496][])
555
+ * Tracing: W3C: Propagate unknown values as-is ([#2485][])
556
+ * Appsec: Add event kit API ([#2512][])
557
+ * Profiling: Allow profiler development on arm64 macOS ([#2573][])
558
+ * Core: Add `profiling_enabled` state to environment logger output ([#2541][])
559
+ * Core: Add 'type' to `OptionDefinition` ([#2493][])
560
+ * Allow `debase-ruby_core_source` 3.2.0 to be used ([#2526][])
561
+
562
+ ### Changed
563
+
564
+ * Profiling: Upgrade to `libdatadog` to `1.0.1.1.0` ([#2530][])
565
+ * Appsec: Update appsec rules `1.4.3` ([#2580][])
566
+ * Ci: Update CI Visibility metadata extraction ([#2586][])
567
+
568
+ ### Fixed
569
+
570
+ * Profiling: Fix wrong `libdatadog` version being picked during profiler build ([#2531][])
571
+ * Tracing: Support `PG` calls with a block ([#2522][])
572
+ * Ci: Fix error in `teamcity` env vars ([#2562][])
573
+
574
+ ## [1.8.0] - 2022-12-14
575
+
576
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.8.0
577
+
578
+ As of ddtrace 1.8.0, CPU Profiling 2.0 is now in opt-in (that is, disabled by default) public beta. For more details,
579
+ check the release notes.
580
+
581
+ ### Added
582
+
583
+ * Core: Profiling: [PROF-6559] Mark Ruby CPU Profiling 2.0 as being in beta ([#2489][])
584
+ * Tracing: Attempt to parse future version of TraceContext ([#2473][])
585
+ * Tracing: Add DD_TRACE_PROPAGATION_STYLE option ([#2466][])
586
+ * Integrations: Tracing: SQL comment propagation full mode with traceparent ([#2464][])
587
+ * Integrations: Tracing: Wire W3C propagator to HTTP & gRPC propagation ([#2458][])
588
+ * Integrations: Tracing: Auto-instrumentation with service_name from environmental variable ([#2455][])
589
+ * Core: Integrations: Tracing: Deprecation notice for B3 propagation configuration ([#2454][])
590
+ * Tracing: Add W3C Trace Context propagator ([#2451][])
591
+ * Integrations: Tracing: Redis 5 Instrumentation ([#2428][])
592
+
593
+ ### Changed
594
+
595
+ * Tracing: Changes `error.msg` to `error.message` for UNC ([#2469][])
596
+ * Tracing: Semicolons not allowed in 'origin' ([#2461][])
597
+ * Core: Dev/refactor: Tracing: Dev/internal: Move Utils#next_id and constants to Tracing::Utils ([#2463][])
598
+ * Core: Dev/refactor: Tracing: Dev/internal: Move Tracing config settings from Core to Tracing ([#2459][])
599
+ * Core: Dev/refactor: Tracing: Dev/internal: Move Tracing diagnostic code from Core to Tracing ([#2453][])
600
+
601
+ ### Fixed
602
+
603
+ * Integrations: Tracing: Improve redis integration patching ([#2470][])
604
+ * Tracing: Extra testing from W3C spec ([#2460][])
605
+
606
+ ## [1.7.0] - 2022-11-29
607
+
608
+ ### Added
609
+ * Integrations: Support que 2 ([#2382][]) ([@danhodge][])
610
+ * Tracing: Unified tagging `span.kind` as `server` and `client` ([#2365][])
611
+ * Tracing: Adds `span.kind` tag for `kafka`, `sidekiq`, `racecar`, `que`, `shoryuken`, `sneakers`, and `resque` ([#2420][], [#2419][], [#2413][], [#2394][])
612
+ * Tracing: Adds `span.kind` with values `producer` and `consumer` for `delayed_job` ([#2393][])
613
+ * Tracing: Adds `span.kind` as `client` for `redis` ([#2392][])
614
+ * Appsec: Pass HTTP client IP to WAF ([#2316][])
615
+ * Unified tagging `process_id` ([#2276][])
616
+
617
+ ### Changed
618
+ * Allow `debase-ruby_core_source` 0.10.18 to be used ([#2435][])
619
+ * Update AppSec ruleset to v1.4.2 ([#2390][])
620
+ * Refactored clearing of profile data after Ruby app forks ([#2362][], [#2367][])
621
+ * Tracing: Move distributed propagation to Contrib ([#2352][])
622
+
623
+ ### Fixed
624
+ * Fix ddtrace installation issue when users have CI=true ([#2378][])
625
+
626
+ ## [1.6.1] - 2022-11-16
627
+
628
+ ### Changed
629
+
630
+ * Limit `redis` version support to less than 5
631
+
632
+ ### Fixed
633
+
634
+ * [redis]: Fix frozen input for `Redis.new(...)`
635
+
636
+ ## [1.6.0] - 2022-11-15
637
+
638
+ ### Added
639
+
640
+ * Trace level tags propagation in distributed tracing ([#2260][])
641
+ * [hanami]: Hanami 1.x instrumentation ([#2230][])
642
+ * [pg, mysql2]: option `comment_propagation` for SQL comment propagation, default is `disabled` ([#2339][])([#2324][])
643
+
644
+ ### Changed
645
+
646
+ * [rack, sinatra]: Squash nested spans and improve patching mechanism.<br> No need to `register Datadog::Tracing::Contrib::Sinatra::Tracer`([#2217][])
647
+ * [rails, rack]: Fix Non-GET request method with rails exception controller ([#2317][])
648
+ * Upgrade to libdatadog 0.9.0.1.0 ([#2302][])
649
+ * Remove legacy profiling transport ([#2062][])
650
+
651
+ ### Fixed
652
+
653
+ * [redis]: Fix redis instance configuration, not on `client` ([#2363][])
654
+ ```
655
+ # Change your code from
656
+ Datadog.configure_onto(redis.client, service_name: '...')
657
+ # to
658
+ Datadog.configure_onto(redis, service_name: '...')
659
+ ```
660
+ * Allow `DD_TAGS` values to have the colon character ([#2292][])
661
+ * Ensure that `TraceSegment` can be reported correctly when they are dropped ([#2335][])
662
+ * Docs: Fixes upgrade guide on configure_onto ([#2307][])
663
+ * Fix environment logger with IO transport ([#2313][])
664
+
665
+ ## [1.5.2] - 2022-10-27
666
+
667
+ ### Deprecation notice
668
+
669
+ - `DD_TRACE_CLIENT_IP_HEADER_DISABLED` was changed to `DD_TRACE_CLIENT_IP_ENABLED`. Although the former still works we encourage usage of the latter instead.
670
+
671
+ ### Changed
672
+
673
+ - `http.client_ip` tag collection is made opt-in for APM. Note that `http.client_ip` is always collected when ASM is enabled as part of the security service provided ([#2321][], [#2331][])
674
+
675
+ ### Fixed
676
+
677
+ - Handle REQUEST_URI with base url ([#2328][], [#2330][])
678
+
679
+ ## [1.5.1] - 2022-10-19
680
+
681
+ ### Changed
682
+
683
+ * Update libddwaf to 1.5.1 ([#2306][])
684
+ * Improve libddwaf extension memory management ([#2306][])
685
+
686
+ ### Fixed
687
+
688
+ * Fix `URI::InvalidURIError` ([#2310][], [#2318][]) ([@yujideveloper][])
689
+ * Handle URLs with invalid characters ([#2311][], [#2319][])
690
+ * Fix missing appsec.event tag ([#2306][])
691
+ * Fix missing Rack and Rails request body parsing for AppSec analysis ([#2306][])
692
+ * Fix unneeded AppSec call in a Rack context when AppSec is disabled ([#2306][])
693
+ * Fix spurious AppSec instrumentation ([#2306][])
694
+
695
+ ## [1.5.0] - 2022-09-29
696
+
697
+ ### Deprecation notice
698
+
699
+ * `c.tracing.instrument :rack, { quantize: { base: ... } }` will change its default from `:exclude` to `:show` in a future version. Voluntarily moving to `:show` is recommended.
700
+ * `c.tracing.instrument :rack, { quantize: { query: { show: ... } }` will change its default to `:all` in a future version, together with `quantize.query.obfuscate` changing to `:internal`. Voluntarily moving to these future values is recommended.
701
+
702
+ ### Added
703
+
704
+ * Feature: Single Span Sampling ([#2128][])
705
+ * Add query string automatic redaction ([#2283][])
706
+ * Use full URL in `http.url` tag ([#2265][])
707
+ * Add `http.useragent` tag ([#2252][])
708
+ * Add `http.client_ip` tag for Rack-based frameworks ([#2248][])
709
+ * Ci-app: CI: Fetch committer and author in Bitrise ([#2258][])
710
+
711
+ ### Changed
712
+
713
+ * Bump allowed version of debase-ruby_core_source to include v0.10.17 ([#2267][])
714
+
715
+ ### Fixed
716
+
717
+ * Bug: Fix `service_nam` typo to `service_name` ([#2296][])
718
+ * Bug: Check AppSec Rails for railties instead of rails meta gem ([#2293][]) ([@seuros][])
719
+ * Ci-app: Correctly extract commit message from AppVeyor ([#2257][])
720
+
721
+ ## [1.4.2] - 2022-09-27
722
+
723
+ ### Fixed
724
+
725
+ OpenTracing context propagation ([#2191][], [#2289][])
726
+
727
+ ## [1.4.1] - 2022-09-15
728
+
729
+ ### Fixed
730
+
731
+ * Missing distributed traces when trace is dropped by priority sampling ([#2101][], [#2279][])
732
+ * Profiling support when Ruby is compiled without a shared library ([#2250][])
733
+
734
+ ## [1.4.0] - 2022-08-25
735
+
736
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.4.0
737
+
738
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.3.0...v1.4.0
739
+
740
+ ### Added
741
+
742
+ * gRPC: tag `grpc.client.deadline` ([#2200][])
743
+ * Implement telemetry, disable by default ([#2153][])
744
+
745
+ ### Changed
746
+
747
+ * Bump `libdatadog` dependency version ([#2229][])
748
+
749
+ ### Fixed
750
+
751
+ * Fix CI instrumentation configuration ([#2219][])
752
+
753
+ ## [1.3.0] - 2022-08-04
754
+
755
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.3.0
756
+
757
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.2.0...v1.3.0
758
+
759
+ ### Added
760
+
761
+ * Top-level span being tagged to avoid duplicate computation ([#2138][])
762
+
763
+ ### Changed
764
+
765
+ * ActiveSupport: Optionally disable tracing with Rails ([@marcotc][])
766
+ * Rack: Resource overwritten by nested application ([#2180][])
767
+ * Rake: Explicit task instrumentation to prevent memory bloat ([#2174][])
768
+ * Sidekiq and DelayedJob: Add spans to improve tracing ([#2170][])
769
+ * Drop Profiling support for Ruby 2.1 ([#2140][])
770
+ * Migrate `libddprof` dependency to `libdatadog` ([#2061][])
771
+
772
+ ### Fixed
773
+
774
+ * Fix OpenTracing propagation with TraceDigest ([#2201][])
775
+ * Fix SpanFilter dropping descendant spans ([#2074][])
776
+ * Redis: Fix Empty pipelined span being dropped ([#757][]) ([@sponomarev][])
777
+ * Fix profiler not restarting on `Process.daemon` ([#2150][])
778
+ * Fix setting service from Rails configuration ([#2118][]) ([@agrobbin][])
779
+ * Some document and development improvement ([@marocchino][]) ([@yukimurasawa][])
780
+
781
+ ## [1.2.0] - 2022-07-11
782
+
783
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.2.0
784
+
785
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.1.0...v1.2.0
786
+
787
+ Special thanks go to [@miketheman][] for gifting Datadog access to the `datadog` gem a few days ago.
788
+
789
+ ### Added
790
+
791
+ * Add Postgres (`pg` gem) instrumentation ([#2054][]) ([@jennchenn][])
792
+ * Add env var for debugging profiling native extension compilation issues ([#2069][])
793
+ * Teach Rest Client integration the `:split_by_domain` option ([#2079][]) ([@agrobbin][])
794
+ * Allow passing request_queuing option to Rack through Rails tracer ([#2082][]) ([@KieranP][])
795
+ * Add Utility to Collect Platform Information ([#2097][]) ([@jennchenn][])
796
+ * Add convenient interface for getting and setting tags using `[]` and `[]=` respectively ([#2076][]) ([@ioquatix][])
797
+ * Add b3 metadata in grpc ([#2110][]) ([@henrich-m][])
798
+
799
+ ### Changed
800
+
801
+ * Profiler now reports profiling data using the libddprof gem ([#2059][])
802
+ * Rename `Kernel#at_fork_blocks` monkey patch to `Kernel#ddtrace_at_fork_blocks` ([#2070][])
803
+ * Improved error message for enabling profiling when `pkg-config` system tool is not installed ([#2134][])
804
+
805
+ ### Fixed
806
+
807
+ * Prevent errors in `action_controller` integration when tracing is disabled ([#2027][]) ([@ahorner][])
808
+ * Fix profiler not building on ruby-head (3.2) due to VM refactoring ([#2066][])
809
+ * Span and trace IDs should not be zero ([#2113][]) ([@albertvaka][])
810
+ * Fix object_id usage as thread local key ([#2096][])
811
+ * Fix profiling not working on Heroku and AWS Elastic Beanstalk due to linking issues ([#2125][])
812
+
813
+ ## [1.1.0] - 2022-05-25
814
+
815
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.1.0
816
+
817
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0...v1.1.0
818
+
819
+ ### Added
820
+
821
+ * [Application Security Monitoring](https://docs.datadoghq.com/security_platform/application_security/)
822
+ * Elasticsearch: v8.0 support ([#1985][])
823
+ * Sidekiq: Quantize args ([#1972][]) ([@dudo][])
824
+ * Profiling: Add libddprof dependency to power the new Ruby profiler ([#2028][])
825
+ * Helper to easily enable core dumps ([#2010][])
826
+
827
+ ### Changed
828
+
829
+ * Support spaces in environment variable DD_TAGS ([#2011][])
830
+
831
+ ### Fixed
832
+
833
+ * Fix "circular require considered harmful" warnings ([#1998][])
834
+ * Logging: Change ddsource to a scalar value ([#2022][])
835
+ * Improve exception logging ([#1992][])
836
+
837
+ ## [1.0.0] - 2022-04-28
838
+
839
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0
840
+
841
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta2...v1.0.0
842
+
843
+ Diff since last stable release: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0
844
+
845
+ ### Added
846
+
847
+ - GraphQL 2.0 support ([#1982][])
848
+
849
+ ### Changed
850
+
851
+ - AppSec: Update libddwaf to 1.3.0 ([#1981][])
852
+
853
+ ### Fixed
854
+
855
+ - Rails log correlation ([#1989][]) ([@cwoodcox][])
856
+ - Resource not inherited from lazily annotated spans ([#1983][])
857
+ - AppSec: Query address for libddwaf ([#1990][])
858
+
859
+ ### Refactored
860
+
861
+ - Docs: Add undocumented Rake option ([#1980][]) ([@ecdemis123][])
862
+ - Improvements to test suite & CI ([#1970][], [#1974][], [#1991][])
863
+ - Improvements to documentation ([#1984][])
864
+
865
+ ## [1.0.0.beta2] - 2022-04-14
866
+
867
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta2
868
+
869
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2
870
+
871
+ ### Added
872
+
873
+ - Ruby 3.1 & 3.2 support ([#1975][], [#1955][])
874
+ - Trace tag API ([#1959][])
875
+
876
+ ### Changed
877
+
878
+ - Access to configuration settings is namespaced ([#1922][])
879
+ - AWS provides metrics by default ([#1976][]) ([@dudo][])
880
+ - Update `debase-ruby_core_source` version ([#1964][])
881
+ - Profiling: Hide symbols/functions in native extension ([#1968][])
882
+ - Profiling: Renamed code_provenance.json to code-provenance.json ([#1919][])
883
+ - AppSec: Update libddwaf to v1.2.1 ([#1942][])
884
+ - AppSec: Update rulesets to v1.3.1 ([#1965][], [#1961][], [#1937][])
885
+ - AppSec: Avoid exception on missing ruleset file ([#1948][])
886
+ - AppSec: Env var consistency ([#1938][])
887
+
888
+ ### Fixed
889
+
890
+ - Rake instrumenting while disabled ([#1940][], [#1945][])
891
+ - Grape instrumenting while disabled ([#1940][], [#1943][])
892
+ - CI: require 'datadog/ci' not loading dependencies ([#1911][])
893
+ - CI: RSpec shared example file names ([#1816][]) ([@Drowze][])
894
+ - General documentation improvements ([#1958][], [#1933][], [#1927][])
895
+ - Documentation fixes & improvements to 1.0 upgrade guide ([#1956][], [#1973][], [#1939][], [#1914][])
896
+
897
+ ### Removed
898
+
899
+ - OpenTelemetry extensions (Use [OTLP](https://docs.datadoghq.com/tracing/setup_overview/open_standards/#otlp-ingest-in-datadog-agent) instead) ([#1917][])
900
+
901
+ ### Refactored
902
+
903
+ - Agent settings resolver logic ([#1930][], [#1931][], [#1932][])
904
+
905
+ ## [1.0.0.beta1] - 2022-02-15
906
+
907
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta1
908
+
909
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1
910
+
911
+ See https://github.com/DataDog/dd-trace-rb/blob/v1.0.0.beta1/docs/UpgradeGuide.md.
912
+
913
+ ## [0.54.2] - 2022-01-18
914
+
915
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.2
916
+
917
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.1...v0.54.2
918
+
919
+ ### Changed
920
+
921
+ - Bump `debase-ruby_core_source` dependency version; also allow older versions to be used ([#1798][], [#1829][])
922
+ - Profiler: Reduce impact of reporting data in multi-process applications ([#1807][])
923
+ - Profiler: Update API used to report data to backend ([#1820][])
924
+
925
+ ### Fixed
926
+
927
+ - Gracefully handle installation on environments where Ruby JIT seems to be available but is actually broken ([#1801][])
928
+
929
+ ## [0.54.1] - 2021-11-30
930
+
931
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.1
932
+
933
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...v0.54.1
934
+
935
+ ### Fixed
936
+
937
+ - Skip building profiling native extension when Ruby has been compiled without JIT ([#1774][], [#1776][])
938
+
939
+ ## [0.54.0] - 2021-11-17
940
+
941
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.0
942
+
943
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
944
+
945
+ ### Added
946
+
947
+ - MongoDB service name resolver when using multi cluster ([#1423][]) ([@skcc321][])
948
+ - Service name override for ActiveJob in Rails configuration ([#1703][], [#1770][]) ([@hatstand][])
949
+ - Profiler: Expose profile duration and start to the UI ([#1709][])
950
+ - Profiler: Gather CPU time without monkey patching Thread ([#1735][], [#1740][])
951
+ - Profiler: Link profiler samples to individual web requests ([#1688][])
952
+ - Profiler: Capture threads with empty backtrace ([#1719][])
953
+ - CI-App: Memoize environment tags to improve performance ([#1762][])
954
+ - CI-App: `test.framework_version` tag for rspec and cucumber ([#1713][])
955
+
956
+ ### Changed
957
+
958
+ - Set minimum version of dogstatsd-ruby 5 series to 5.3 ([#1717][])
959
+ - Use USER_KEEP/USER_REJECT for RuleSampler decisions ([#1769][])
960
+
961
+ ### Fixed
962
+
963
+ - "private method `ruby2_keywords' called" errors ([#1712][], [#1714][])
964
+ - Configuration warning when Agent port is a String ([#1720][])
965
+ - Ensure internal trace buffer respects its maximum size ([#1715][])
966
+ - Remove erroneous maximum resque version support ([#1761][])
967
+ - CI-App: Environment variables parsing precedence ([#1745][], [#1763][])
968
+ - CI-App: GitHub Metadata Extraction ([#1771][])
969
+ - Profiler: Missing thread id for natively created threads ([#1718][])
970
+ - Docs: Active Job integration example code ([#1721][]) ([@y-yagi][])
971
+
972
+ ### Refactored
973
+
974
+ - Redis client patch to use prepend ([#1743][]) ([@justinhoward][])
975
+
976
+ ## [0.53.0] - 2021-10-06
977
+
978
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.53.0
979
+
980
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
981
+
982
+ ### Added
983
+
984
+ - ActiveJob integration ([#1639][]) ([@bensheldon][])
985
+ - Instrument Action Cable subscribe/unsubscribe hooks ([#1674][]) ([@agrobbin][])
986
+ - Instrument Sidekiq server internal events (heartbeat, job fetch, and scheduled push) ([#1685][]) ([@agrobbin][])
987
+ - Correlate Active Job logs to the active DataDog trace ([#1694][]) ([@agrobbin][])
988
+ - Runtime Metrics: Global VM cache statistics ([#1680][])
989
+ - Automatically send traces to agent Unix socket if present ([#1700][])
990
+ - CI-App: User Provided Git Metadata ([#1662][])
991
+ - ActionMailer integration ([#1280][])
992
+
993
+ ### Changed
994
+
995
+ - Profiler: Set Sinatra resource setting at beginning of request and delay setting fallback resource ([#1628][])
996
+ - Profiler: Use most recent event for trace resource name ([#1695][])
997
+ - Profiler: Limit number of threads per sample ([#1699][])
998
+ - Profiler: Rename `extract_trace_resource` to `endpoint.collection.enabled` ([#1702][])
999
+
1000
+ ### Fixed
1001
+
1002
+ - Capture Rails exception before default error page is rendered ([#1684][])
1003
+ - `NoMethodError` in sinatra integration when Tracer middleware is missing ([#1643][], [#1644][]) ([@mscrivo][])
1004
+ - CI-App: Require `rspec-core` for RSpec integration ([#1654][]) ([@elliterate][])
1005
+ - CI-App: Use the merge request branch on merge requests ([#1687][]) ([@carlallen][])
1006
+ - Remove circular dependencies. ([#1668][]) ([@saturnflyer][])
1007
+ - Links in the Table of Contents ([#1661][]) ([@chychkan][])
1008
+ - CI-App: Fix CI Visibility Spec Tests ([#1706][])
1009
+
1010
+ ### Refactored
1011
+
1012
+ - Profiler: pprof encoding benchmark and improvements ([#1511][])
1013
+
1014
+ ## [0.52.0] - 2021-08-09
1015
+
1016
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.52.0
1017
+
1018
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
1019
+
1020
+ ### Added
1021
+
1022
+ - Add Sorbet typechecker to dd-trace-rb ([#1607][])
1023
+
1024
+ Note that no inline type signatures were added, to avoid a hard dependency on sorbet.
1025
+
1026
+ - Profiler: Add support for annotating profiler stacks with the resource of the active web trace, if any ([#1623][])
1027
+
1028
+ Note that this data is not yet visible on the profiling interface.
1029
+
1030
+ - Add error_handler option to GRPC tracer configuration ([#1583][]) ([@fteem][])
1031
+ - User-friendly handling of slow submissions on shutdown ([#1601][])
1032
+ - Profiler: Add experimental toggle to disable the profiling native extension ([#1594][])
1033
+ - Profiler: Bootstrap profiling native extension ([#1584][])
1034
+
1035
+ ### Changed
1036
+
1037
+ - Profiler: Profiling data is no longer reported when there's less than 1 second of data to report ([#1630][])
1038
+ - Move Grape span resource setting to beginning of request ([#1629][])
1039
+ - Set resource in Sinatra spans at the beginning of requests, and delay setting fallback resource to end of requests ([#1628][])
1040
+ - Move Rails span resource setting to beginning of request ([#1626][])
1041
+ - Make registry a global constant repository ([#1572][])
1042
+ - Profiler: Remove automatic agentless support ([#1590][])
1043
+
1044
+ ### Fixed
1045
+
1046
+ - Profiler: Fix CPU-time accounting in Profiling when fibers are used ([#1636][])
1047
+ - Don't set peer.service tag on grpc.server spans ([#1632][])
1048
+ - CI-App: Fix GitHub actions environment variable extraction ([#1622][])
1049
+ - Additional Faraday 1.4+ cgroup parsing formats ([#1595][])
1050
+ - Avoid shipping development cruft files in gem releases ([#1585][])
1051
+
1052
+ ## [0.51.1] - 2021-07-13
1053
+
1054
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.1
1055
+
1056
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
1057
+
1058
+ ### Fixed
1059
+
1060
+ - AWS-SDK instrumentation without `aws-sdk-s3` ([#1592][])
1061
+
1062
+ ## [0.51.0] - 2021-07-12
1063
+
1064
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.0
1065
+
1066
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
1067
+
1068
+ ### Added
1069
+
1070
+ - Semantic Logger trace correlation injection ([#1566][])
1071
+ - New and improved Lograge trace correlation injection ([#1555][])
1072
+ - Profiler: Start profiler on `ddtrace/auto_instrument`
1073
+ - CI-App: Add runtime and OS information ([#1587][])
1074
+ - CI-App: Read metadata from local git repository ([#1561][])
1075
+
1076
+ ### Changed
1077
+
1078
+ - Rename `Datadog::Runtime` to `Datadog::Core::Environment` ([#1570][])
1079
+
1080
+ 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.
1081
+
1082
+ 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.
1083
+
1084
+ * The following modules have been moved:
1085
+ ```ruby
1086
+ Datadog::Runtime::Cgroup -> Datadog::Core::Environment::Cgroup
1087
+ Datadog::Runtime::ClassCount -> Datadog::Core::Environment::ClassCount
1088
+ Datadog::Runtime::Container -> Datadog::Core::Environment::Container
1089
+ Datadog::Runtime::GC -> Datadog::Core::Environment::GC
1090
+ Datadog::Runtime::Identity -> Datadog::Core::Environment::Identity
1091
+ Datadog::Runtime::ObjectSpace -> Datadog::Core::Environment::ObjectSpace
1092
+ Datadog::Runtime::Socket -> Datadog::Core::Environment::Socket
1093
+ Datadog::Runtime::ThreadCount -> Datadog::Core::Environment::ThreadCount
1094
+ ```
1095
+ * Most constants from `Datadog::Ext::Runtime` have been moved to a new module: `Datadog::Core::Environment::Ext`.
1096
+ - Skip CPU time instrumentation if logging gem is detected ([#1557][])
1097
+
1098
+ ### Fixed
1099
+
1100
+ - Initialize `dogstatsd-ruby` in single threaded mode ([#1576][])
1101
+
1102
+ This should alleviate any existing issues with `dogstatsd-ruby` resource leaks.
1103
+
1104
+ - Do not use configured `dogstatsd-ruby` instance when it's an incompatible version ([#1560][])
1105
+ - Ensure tags with special Datadog processing are consistently serialized ([#1556][])
1106
+ - Profiler: NameError during initialization ([#1552][])
1107
+
1108
+ ### Refactored
1109
+ - Improvements to test suite & CI ([#1586][])
1110
+ - Improvements to documentation ([#1397][])
1111
+
1112
+ ## [0.50.0] - 2021-06-07
1113
+
1114
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.50.0
1115
+
1116
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.49.0...v0.50.0
1117
+
1118
+ ### Added
1119
+
1120
+ - Add warning, update documentation, for incompatible dogstastd-ruby version ([#1544][][#1533][])
1121
+ - Add CI mode and Test mode feature ([#1504][])
1122
+ - Add Gem.loaded_specs fallback behavior if protobuf or dogstatsd-ruby already loaded([#1506][][#1510][])
1123
+
1124
+ ### Changed
1125
+
1126
+ - Declare EOL for Ruby 2.0 support ([#1534][])
1127
+ - Rename Thread#native_thread_id to #pthread_thread_id to avoid conflict with Ruby 3.1 ([#1537][])
1128
+
1129
+ ### Fixed
1130
+
1131
+ - Fix tracer ignoring value for service tag (service.name) in DD_TAGS ([#1543][])
1132
+ - Fix nested error reporting to correctly walk clause chain ([#1535][])
1133
+ - Fix AWS integration to prevent S3 URL presigning from generating a remote request span ([#1494][])
1134
+ - Fix backtrace handling of exception classes that return nil message ([#1500][]) ([@masato-hi][])
1135
+
1136
+ ### Refactored
1137
+
1138
+ - Cleanup Ruby 2.0 Code (dropping Ruby 2.0 support) ([#1529][][#1523][][#1524][][#1509][][#1507][][#1503][][#1502][])
1139
+
1140
+ ## [0.49.0] - 2021-05-12
1141
+
1142
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.49.0
1143
+
1144
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.48.0...v0.49.0
1145
+
1146
+ ### Added
1147
+
1148
+ - Add cause to error stack trace ([#1472][])
1149
+
1150
+ ### Changed
1151
+
1152
+ ### Fixed
1153
+
1154
+ - Prevent double initialization when auto instrumenting non-Rails applications ([#1497][])
1155
+ - Support kwargs in Ruby 3.0 for sucker_punch ([#1495][]) ([@lloeki][])
1156
+ - Fargate fixes and Container parsing for CGroups ([#1487][][#1480][][#1475][])
1157
+ - Fix ActionPack instrumentation `#starts_with?` error([#1489][])
1158
+ - Doc fixes ([#1473][]) ([@kexoth][])
1159
+
1160
+ ### Refactored
1161
+
1162
+ ## [0.48.0] - 2021-04-19
1163
+
1164
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.48.0
1165
+
1166
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
1167
+
1168
+ ### Added
1169
+
1170
+ - Makara support with ActiveRecord ([#1447][])
1171
+ - `tag_body` configuration for Shoryuken ([#1449][]) ([@gkampjes][])
1172
+
1173
+ ### Changed
1174
+
1175
+ - Add deprecation warning for Ruby 2.0 support ([#1441][])
1176
+
1177
+ Support for Ruby 2.0 will be available up to release `0.49.x`, and dropped from release `0.50.0` and greater.
1178
+ Users are welcome to continue using version `< 0.50.0` for their Ruby 2.0 deployments going forward.
1179
+
1180
+ - Auto instrument Resque workers by default ([#1400][])
1181
+
1182
+ ### Fixed
1183
+
1184
+ - Ensure DD_TRACE_SAMPLE_RATE enables full RuleSampler ([#1416][])
1185
+ - Fix Fargate 1.4 container ID not being read ([#1457][])
1186
+ - Correctly close all StatsD clients ([#1429][])
1187
+
1188
+ ### Refactored
1189
+ - Improvements to test suite & CI ([#1421][], [#1435][], [#1445][], [#1453][], [#1456][], [#1461][])
1190
+ - Improvements to documentation ([#1455][])
1191
+
1192
+ ## [0.47.0] - 2021-03-29
1193
+
1194
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.47.0
1195
+
1196
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
1197
+
1198
+ ### Added
1199
+
1200
+ - Document support for httpx integration ([#1396][]) ([@HoneyryderChuck][])
1201
+ - Schemas to list of supported AWS services ([#1415][]) ([@tomgi][])
1202
+ - Branch test coverage report ([#1343][])
1203
+
1204
+ ### Changed
1205
+
1206
+ - **BREAKING** Separate Resolver configuration and resolution steps ([#1319][])
1207
+
1208
+ ### ActiveRecord `describes` configuration now supports partial matching
1209
+
1210
+ 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.
1211
+
1212
+ 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.
1213
+
1214
+ `c.use active_record, describe:` statements that are currently matching a connection will continue to match that same connection.
1215
+
1216
+ 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).
1217
+
1218
+ ### `Datadog::Contrib::Configuration::Resolver` interface changed
1219
+
1220
+ 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).
1221
+
1222
+
1223
+ - Remove type check from ThreadLocalContext#local. ([#1399][]) ([@orekyuu][])
1224
+
1225
+ ### Fixed
1226
+
1227
+ - Support for JRuby 9.2.0.0 ([#1409][])
1228
+ - Failed integration message ([#1394][]) ([@e1senh0rn][])
1229
+ - Addressed "warning: instance variable [@components][] not initialized" ([#1419][])
1230
+ - Close /proc/self/cgroup file after reading ([#1414][])
1231
+ - Improve internal "only once" behavior across the tracer ([#1398][])
1232
+ - Increase thread-safety during tracer initialization ([#1418][])
1233
+
1234
+ ### Refactored
1235
+
1236
+ - Use MINIMUM_VERSION in resque compatible? check ([#1426][]) ([@mriddle][])
1237
+ - Lint fixes for Rubocop 1.12.0 release ([#1430][])
1238
+ - Internal tracer improvements ([#1403][])
1239
+ - Improvements to test suite & CI ([#1334][], [#1379][], [#1393][], [#1406][], [#1408][], [#1412][], [#1417][], [#1420][], [#1422][], [#1427][], [#1428][], [#1431][], [#1432][])
1240
+
1241
+ ## [0.46.0] - 2021-03-03
1242
+
1243
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.46.0
1244
+
1245
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
1246
+
1247
+ ### Added
1248
+
1249
+ - Add EventBridge to supported AWS services ([#1368][]) ([@tomgi][])
1250
+ - Add `time_now_provider` configuration option ([#1224][])
1251
+ - 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).
1252
+ - Add name to background threads created by ddtrace ([#1366][])
1253
+
1254
+ ### Changed
1255
+
1256
+ - Rework RSpec instrumentation as separate traces for each test ([#1381][])
1257
+
1258
+ ### Fixed
1259
+
1260
+ - ArgumentError: wrong number of arguments (given 2, expected 0) due to concurrent `require` ([#1306][], [#1354][]) ([@EvNomad][])
1261
+ - Fix Rails' deprecation warnings ([#1352][])
1262
+ - Fully populate Rake span fields on exceptions ([#1377][])
1263
+ - Fix a typo in `httpclient` integration ([#1365][]) ([@y-yagi][])
1264
+ - Add missing license files for vendor'd code ([#1346][])
1265
+
1266
+ ### Refactored
1267
+
1268
+ - Improvements to test suite & CI ([#1277][], [#1305][], [#1336][], [#1350][], [#1353][], [#1357][], [#1367][], [#1369][], [#1370][], [#1371][], [#1374][], [#1380][])
1269
+ - Improvements to documentation ([#1332][])
1270
+
1271
+ ### Removed
1272
+
1273
+ - Remove deprecated Datadog::Monkey ([#1341][])
1274
+ - Remove deprecated Datadog::DeprecatedPin ([#1342][])
1275
+ - Remove unused Shim/MethodWrapper/MethodWrapping ([#1347][])
1276
+ - Remove APP_ANALYTICS from tests instrumentation ([#1378][]) ([@AdrianLC][])
1277
+
1278
+ ## [0.45.0] - 2021-01-26
1279
+
1280
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.45.0
1281
+
1282
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
1283
+
1284
+ ### Added
1285
+
1286
+ - Option to auto enable all instrumentations ([#1260][])
1287
+ - httpclient support ([#1311][]) ([@agrobbin][])
1288
+
1289
+ ### Changed
1290
+
1291
+ - Promote request_queuing out of experimental ([#1320][])
1292
+ - Safeguards around distributed HTTP propagator ([#1304][])
1293
+ - Improvements to test integrations ([#1291][], [#1303][], [#1307][])
1294
+
1295
+ ### Refactored
1296
+
1297
+ - Direct object_id lookup for ActiveRecord connections ([#1317][])
1298
+ - Avoid multiple parsing of Ethon URIs ([#1302][]) ([@callumj][])
1299
+ - Improvements to test suite & CI ([#1309][], [#1318][], [#1321][], [#1323][], [#1325][], [#1331][])
1300
+ - Improvements to documentation ([#1326][])
1301
+
1302
+ ## [0.44.0] - 2021-01-06
1303
+
1304
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.44.0
1305
+
1306
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
1307
+
1308
+ ### Added
1309
+
1310
+ - Ruby 3.0 support ([#1281][], [#1296][], [#1298][])
1311
+ - Rails 6.1 support ([#1295][])
1312
+ - Qless integration ([#1237][]) ([@sco11morgan][])
1313
+ - AWS Textract service to AWS integration ([#1270][]) ([@Sticksword][])
1314
+ - Ability to disable Redis argument capture ([#1276][]) ([@callumj][])
1315
+ - Upload coverage report to Codecov ([#1289][])
1316
+
1317
+ ### Changed
1318
+
1319
+ - Reduce Runtime Metrics frequency to every 10 seconds ([#1269][])
1320
+
1321
+ ### Fixed
1322
+
1323
+ - Disambiguate resource names for Grape endpoints with shared paths ([#1279][]) ([@pzaich][])
1324
+ - Remove invalid Jenkins URL from CI integration ([#1283][])
1325
+
1326
+ ### Refactored
1327
+
1328
+ - Reduce memory allocation when unnecessary ([#1273][], [#1275][]) ([@callumj][])
1329
+ - Improvements to test suite & CI ([#847][], [#1256][], [#1257][], [#1266][], [#1272][], [#1277][], [#1278][], [#1284][], [#1286][], [#1287][], [#1293][], [#1299][])
1330
+ - Improvements to documentation ([#1262][], [#1263][], [#1264][], [#1267][], [#1268][], [#1297][])
1331
+
1332
+ ## [0.43.0] - 2020-11-18
1333
+
1334
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.43.0
1335
+
1336
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
1337
+
1338
+ ### Added
1339
+
1340
+ - Background job custom error handlers ([#1212][]) ([@norbertnytko][])
1341
+ - Add "multi" methods instrumentation for Rails cache ([#1217][]) ([@michaelkl][])
1342
+ - Support custom error status codes for Grape ([#1238][])
1343
+ - Cucumber integration ([#1216][])
1344
+ - RSpec integration ([#1234][])
1345
+ - Validation to `:on_error` argument on `Datadog::Tracer#trace` ([#1220][])
1346
+
1347
+ ### Changed
1348
+
1349
+ - Update `TokenBucket#effective_rate` calculation ([#1236][])
1350
+
1351
+ ### Fixed
1352
+
1353
+ - Avoid writer reinitialization during shutdown ([#1235][], [#1248][])
1354
+ - Fix configuration multiplexing ([#1204][], [#1227][])
1355
+ - Fix misnamed B3 distributed headers ([#1226][], [#1229][])
1356
+ - Correct span type for AWS SDK ([#1233][])
1357
+ - Correct span type for internal Pin on HTTP clients ([#1239][])
1358
+ - Reset trace context after fork ([#1225][])
1359
+
1360
+ ### Refactored
1361
+
1362
+ - Improvements to test suite ([#1232][], [#1244][])
1363
+ - Improvements to documentation ([#1243][], [#1218][]) ([@cjford][])
1364
+
1365
+ ### Removed
1366
+
1367
+ ## [0.42.0] - 2020-10-21
1368
+
1369
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
1370
+
1371
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
1372
+
1373
+ ### Added
1374
+
1375
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
1376
+
1377
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
1378
+
1379
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
1380
+
1381
+ - Access active correlation by Thread ([#1200][])
1382
+
1383
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
1384
+
1385
+ ### Changed
1386
+
1387
+ ### Fixed
1388
+
1389
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
1390
+
1391
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
1392
+
1393
+ ### Refactored
1394
+
1395
+ - Refactor Trace buffer into multiple components ([#1195][])
1396
+
1397
+ ## [0.41.0] - 2020-09-30
1398
+
1399
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.41.0
1400
+
1401
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
1402
+
1403
+ ### Added
1404
+
1405
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
1406
+
1407
+ ### Changed
1408
+
1409
+ - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics ([#934][], [#935][], [#1180][])
1410
+ - This helps support the way runtime metrics are associated with spans in the UI.
1411
+ - Faster TraceBuffer for CRuby ([#1172][])
1412
+ - Reduce memory usage during gem startup ([#1090][])
1413
+ - Reduce memory usage of the HTTP transport ([#1165][])
1414
+
1415
+ ### Fixed
1416
+
1417
+ - Improved prepared statement support for Sequel integrations ([#1186][])
1418
+ - Fix Sequel instrumentation when executing literal strings ([#1185][]) ([@matchbookmac][])
1419
+ - Remove explicit `Logger` class verification ([#1181][]) ([@bartekbsh][])
1420
+ - This allows users to pass in a custom logger that does not inherit from `Logger` class.
1421
+ - Correct tracer buffer metric counting ([#1182][])
1422
+ - Fix Span#pretty_print for empty duration ([#1183][])
1423
+
1424
+ ### Refactored
1425
+
1426
+ - Improvements to test suite & CI ([#1179][], [#1184][], [#1177][], [#1178][], [#1176][])
1427
+ - Reduce generated Span ID range to fit in Fixnum ([#1189][])
1428
+
1429
+ ## [0.40.0] - 2020-09-08
1430
+
1431
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.40.0
1432
+
1433
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
1434
+
1435
+ ### Added
1436
+
1437
+ - Rails `log_injection` option to auto enable log correlation ([#1157][])
1438
+ - Que integration ([#1141][], [#1146][]) ([@hs-bguven][])
1439
+ - `Components#startup!` hook ([#1151][])
1440
+ - Code coverage report ([#1159][])
1441
+ - 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`.
1442
+
1443
+ ### Changed
1444
+
1445
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
1446
+
1447
+ ### Fixed
1448
+
1449
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
1450
+
1451
+ * **BREAKING** for nested modular Sinatra applications only:
1452
+ ```ruby
1453
+ class Nested < Sinatra::Base
1454
+ end
1455
+
1456
+ class TopLevel < Sinatra::Base
1457
+ use Nested # Nesting happens here
1458
+ end
1459
+ ```
1460
+ * Non-breaking for classic applications nor modular non-nested applications.
1461
+
1462
+ Fixes issues introduced by [#1015][] (in 0.35.0), when we first introduced Sinatra support for modular applications.
1463
+
1464
+ 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.
1465
+
1466
+ 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.
1467
+
1468
+ 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.
1469
+
1470
+ Please see [#1145][] for more information, and example screenshots on how traces for affected applications will look like.
1471
+
1472
+ - Rack/Rails span error propagation with `rescue_from` ([#1155][], [#1162][])
1473
+ - Prevent logger recursion during startup ([#1158][])
1474
+ - Race condition on new worker classes ([#1154][])
1475
+ - These classes represent future work, and not being used at the moment.
1476
+
1477
+ ### Refactored
1478
+
1479
+ - Run CI tests in parallel ([#1156][])
1480
+ - Migrate minitest tests to RSpec ([#1127][], [#1128][], [#1133][], [#1149][], [#1152][], [#1153][])
1481
+ - Improvements to test suite ([#1134][], [#1148][], [#1163][])
1482
+ - Improvements to documentation ([#1138][])
1483
+
1484
+ ### Removed
1485
+
1486
+ - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life ([#1137][])**
1487
+ - GitLab status check when not applicable ([#1160][])
1488
+ - 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.
1489
+
1490
+ ## [0.39.0] - 2020-08-05
1491
+
1492
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.39.0
1493
+
1494
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
1495
+
1496
+ ### Added
1497
+
1498
+ - JRuby 9.2 support ([#1126][])
1499
+ - Sneakers integration ([#1121][]) ([@janz93][])
1500
+
1501
+ ### Changed
1502
+
1503
+ - Consistent environment variables across languages ([#1115][])
1504
+ - Default logger level from WARN to INFO ([#1120][]) ([@gingerlime][])
1505
+ - This change also reduces the startup environment log message to INFO level ([#1104][])
1506
+
1507
+ ### Fixed
1508
+
1509
+ - HTTP::StateError on error responses for http.rb ([#1116][], [#1122][]) ([@evan-waters][])
1510
+ - Startup log error when using the test adapter ([#1125][], [#1131][]) ([@benhutton][])
1511
+ - Warning message for Faraday < 1.0 ([#1129][]) ([@fledman][], [@tjwp][])
1512
+ - Propagate Rails error message to Rack span ([#1124][])
1513
+
1514
+ ### Refactored
1515
+
1516
+ - Improved ActiveRecord documentation ([#1119][])
1517
+ - Improvements to test suite ([#1105][], [#1118][])
1518
+
1519
+ ## [0.38.0] - 2020-07-13
1520
+
1521
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.38.0
1522
+
1523
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
1524
+
1525
+ ### Added
1526
+
1527
+ - http.rb integration ([#529][], [#853][])
1528
+ - Kafka integration ([#1070][]) ([@tjwp][])
1529
+ - Span#set_tags ([#1081][]) ([@DocX][])
1530
+ - retry_count tag for Sidekiq jobs ([#1089][]) ([@elyalvarado][])
1531
+ - Startup environment log ([#1104][], [#1109][])
1532
+ - DD_SITE and DD_API_KEY configuration ([#1107][])
1533
+
1534
+ ### Changed
1535
+
1536
+ - Auto instrument Faraday default connection ([#1057][])
1537
+ - Sidekiq client middleware is now the same for client and server ([#1099][]) ([@drcapulet][])
1538
+ - Single pass SpanFilter ([#1071][]) ([@tjwp][])
1539
+
1540
+ ### Fixed
1541
+
1542
+ - Ensure fatal exceptions are propagated ([#1100][])
1543
+ - Respect child_of: option in Tracer#trace ([#1082][]) ([@DocX][])
1544
+ - Improve Writer thread safety ([#1091][]) ([@fledman][])
1545
+
1546
+ ### Refactored
1547
+
1548
+ - Improvements to test suite ([#1092][], [#1103][])
1549
+
1550
+ ## [0.37.0] - 2020-06-24
1551
+
1552
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.37.0
1553
+
1554
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
1555
+
1556
+ ### Refactored
1557
+
1558
+ - Documentation improvements regarding Datadog Agent defaults ([#1074][]) ([@cswatt][])
1559
+ - Improvements to test suite ([#1043][], [#1051][], [#1062][], [#1075][], [#1076][], [#1086][])
1560
+
1561
+ ### Removed
1562
+
1563
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
1564
+ - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
1565
+ - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
1566
+
1567
+ A reference to a tracer instance cannot be stored as it will be replaced by a new instance during reconfiguration.
1568
+
1569
+ Retrieving the global tracer instance, by invoking `Datadog.tracer`, is the only safe mechanism to acquire the active tracer instance.
1570
+
1571
+ 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.
1572
+
1573
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
1574
+ - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
1575
+ - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
1576
+ - This removal is a continuation of [#1079][] above, thus carrying the same rationale.
1577
+
1578
+ ### Migration
1579
+
1580
+ - Remove `tracer` argument provided to integrations (e.g. `c.use :rails, tracer: ...`).
1581
+ - Remove `tracer` argument provided to `Pin` or `DeprecatedPin` initializers (e.g. `Pin.new(service, tracer: ...)`).
1582
+ - If you require a custom tracer instance, use a global instance configuration:
1583
+ ```ruby
1584
+ Datadog.configure do |c|
1585
+ c.tracer.instance = custom_tracer
1586
+ end
1587
+ ```
1588
+
1589
+ ## [0.36.0] - 2020-05-27
1590
+
1591
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.36.0
1592
+
1593
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
1594
+
1595
+ ### Changed
1596
+
1597
+ - Prevent trace components from being re-initialized multiple times during setup ([#1037][])
1598
+
1599
+ ### Fixed
1600
+
1601
+ - Allow Rails patching if Railties are loaded ([#993][], [#1054][]) ([@mustela][], [@bheemreddy181][], [@vramaiah][])
1602
+ - Pin delegates to default tracer unless configured ([#1041][])
1603
+
1604
+ ### Refactored
1605
+
1606
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
1607
+
1608
+ ## [0.35.2] - 2020-05-08
1609
+
1610
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.2
1611
+
1612
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
1613
+
1614
+ ### Fixed
1615
+
1616
+ - Internal tracer HTTP requests generating traces ([#1030][], [#1033][]) ([@gingerlime][])
1617
+ - `Datadog.configure` forcing all options to eager load ([#1032][], [#1034][]) ([@kelvin-acosta][])
1618
+
1619
+ ## [0.35.1] - 2020-05-05
1620
+
1621
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.1
1622
+
1623
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
1624
+
1625
+ ### Fixed
1626
+
1627
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
1628
+
1629
+ ## [0.35.0] - 2020-04-29
1630
+
1631
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.35.0
1632
+
1633
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
1634
+
1635
+ ### Added
1636
+
1637
+ - Chunk large trace payloads before flushing ([#818][], [#840][])
1638
+ - Support for Sinatra modular apps ([#486][], [#913][], [#1015][]) ([@jpaulgs][], [@tomasv][], [@ZimbiX][])
1639
+ - active_job support for Resque ([#991][]) ([@stefanahman][], [@psycholein][])
1640
+ - JRuby 9.2 to CI test matrix ([#995][])
1641
+ - `TraceWriter` and `AsyncTraceWriter` workers ([#986][])
1642
+ - Runtime metrics worker ([#988][])
1643
+
1644
+ ### Changed
1645
+
1646
+ - Populate env, service, and version from tags ([#1008][])
1647
+ - Extract components from configuration ([#996][])
1648
+ - Extract logger to components ([#997][])
1649
+ - Extract runtime metrics worker from `Writer` ([#1004][])
1650
+ - Improvements to Faraday documentation ([#1005][])
1651
+
1652
+ ### Fixed
1653
+
1654
+ - Runtime metrics not starting after #write ([#1010][])
1655
+
1656
+ ### Refactored
1657
+
1658
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
1659
+
1660
+ ## [0.34.2] - 2020-04-09
1661
+
1662
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.34.2
1663
+
1664
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
1665
+
1666
+ ### Changed
1667
+
1668
+ - Revert Rails applications setting default `env` if none are configured. ([#1000][]) ([@errriclee][])
1669
+
5
1670
  ## [0.34.1] - 2020-04-02
6
1671
 
7
1672
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.34.1
@@ -10,11 +1675,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
10
1675
 
11
1676
  ### Changed
12
1677
 
13
- - Rails applications set default `service` and `env` if none are configured. (#990)
1678
+ - Rails applications set default `service` and `env` if none are configured. ([#990][])
14
1679
 
15
1680
  ### Fixed
16
1681
 
17
- - Some configuration settings not applying (#989, #990) (@rahul342)
1682
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
18
1683
 
19
1684
  ## [0.34.0] - 2020-03-31
20
1685
 
@@ -24,18 +1689,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
24
1689
 
25
1690
  ### Added
26
1691
 
27
- - `Datadog::Event` for simple pub-sub messaging (#972)
28
- - `Datadog::Workers` for trace writing (#969, #973)
29
- - `_dd.measured` tag to some integrations for more statistics (#974)
30
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
31
- - Multiplexed configuration for Ethon, Excon, Faraday, HTTP inetgrations (#882, #953) (@stormsilver)
1692
+ - `Datadog::Event` for simple pub-sub messaging ([#972][])
1693
+ - `Datadog::Workers` for trace writing ([#969][], [#973][])
1694
+ - `_dd.measured` tag to some integrations for more statistics ([#974][])
1695
+ - `env`, `service`, `version`, `tags` configuration for auto-tagging ([#977][], [#980][], [#982][], [#983][], [#985][])
1696
+ - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations ([#882][], [#953][]) ([@stormsilver][])
32
1697
 
33
1698
  ### Fixed
34
1699
 
35
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
36
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
37
- - Presto configuration (#975)
38
- - Test suite issues (#981)
1700
+ - Runtime metrics configuration dropping with new writer ([#967][], [#968][]) ([@ericmustin][])
1701
+ - Faraday "unexpected middleware" warnings on v0.x ([#965][], [#971][])
1702
+ - Presto configuration ([#975][])
1703
+ - Test suite issues ([#981][])
39
1704
 
40
1705
  ## [0.33.1] - 2020-03-09
41
1706
 
@@ -45,7 +1710,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
45
1710
 
46
1711
  ### Fixed
47
1712
 
48
- - NoMethodError when activating instrumentation for non-existent library (#964, #966) (@roccoblues, @brafales)
1713
+ - NoMethodError when activating instrumentation for non-existent library ([#964][], [#966][]) ([@roccoblues][], [@brafales][])
49
1714
 
50
1715
  ## [0.33.0] - 2020-03-05
51
1716
 
@@ -55,27 +1720,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
55
1720
 
56
1721
  ### Added
57
1722
 
58
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
59
- - Sidekiq job argument tagging (#933) (@mantrala)
60
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
61
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
62
- - Setter/reset behavior for configuration options (#957)
63
- - Priority sampling rate tag (#891)
1723
+ - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) ([#775][], [#920][], [#961][]) ([@ahammel][], [@ericmustin][])
1724
+ - Sidekiq job argument tagging ([#933][]) ([@mantrala][])
1725
+ - Support for multiple Redis services ([#861][], [#937][], [#940][]) ([@mberlanda][])
1726
+ - Support for Sidekiq w/ Delayed extensions ([#798][], [#942][]) ([@joeyAghion][])
1727
+ - Setter/reset behavior for configuration options ([#957][])
1728
+ - Priority sampling rate tag ([#891][])
64
1729
 
65
1730
  ### Changed
66
1731
 
67
- - Enforced minimum version requirements for instrumentation (#944)
68
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
69
- - Relaxed Rack minimum version to 1.1.0 (#952)
1732
+ - Enforced minimum version requirements for instrumentation ([#944][])
1733
+ - RubyGems minimum version requirement 2.0.0 ([#954][]) ([@Joas1988][])
1734
+ - Relaxed Rack minimum version to 1.1.0 ([#952][])
70
1735
 
71
1736
  ### Fixed
72
1737
 
73
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
74
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
75
- - Runtime metrics accumulating service names when disabled (#956)
76
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
77
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
78
- - Various test suite issues (#930, #932, #951, #960)
1738
+ - AWS instrumentation patching when AWS is partially loaded ([#938][], [#945][]) ([@letiesperon][], [@illdelph][])
1739
+ - NoMethodError for RuleSampler with priority sampling ([#949][], [#950][]) ([@BabyGroot][])
1740
+ - Runtime metrics accumulating service names when disabled ([#956][])
1741
+ - Sidekiq instrumentation incompatibility with Rails 6.0.2 ([#943][], [#947][]) ([@pj0tr][])
1742
+ - Documentation tweaks ([#948][], [#955][]) ([@mstruve][], [@link04][])
1743
+ - Various test suite issues ([#930][], [#932][], [#951][], [#960][])
79
1744
 
80
1745
  ## [0.32.0] - 2020-01-22
81
1746
 
@@ -85,18 +1750,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
85
1750
 
86
1751
  ### Added
87
1752
 
88
- - New transport: Datadog::Transport::IO (#910)
89
- - Dual License (#893, #921)
1753
+ - New transport: Datadog::Transport::IO ([#910][])
1754
+ - Dual License ([#893][], [#921][])
90
1755
 
91
1756
  ### Changed
92
1757
 
93
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
94
- - RuleSampler is now the default sampler; no behavior changes by default (#917)
1758
+ - Improved annotation of `net/http` spans during exception ([#888][], [#907][]) ([@djmb][], [@ericmustin][])
1759
+ - RuleSampler is now the default sampler; no behavior changes by default ([#917][])
95
1760
 
96
1761
  ### Refactored
97
1762
 
98
- - Improved support for multiple tracer instances (#919)
99
- - Improvements to test suite (#909, #928, #929)
1763
+ - Improved support for multiple tracer instances ([#919][])
1764
+ - Improvements to test suite ([#909][], [#928][], [#929][])
100
1765
 
101
1766
  ## [0.31.1] - 2020-01-15
102
1767
 
@@ -106,13 +1771,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
106
1771
 
107
1772
  ### Fixed
108
1773
 
109
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
110
- - Fix references to Datadog::Tracer.log (#912)
111
- - Ensure http.status_code tag is always a string (#927)
1774
+ - Implement SyncWriter#stop method ([#914][], [#915][]) ([@Yurokle][])
1775
+ - Fix references to Datadog::Tracer.log ([#912][])
1776
+ - Ensure http.status_code tag is always a string ([#927][])
112
1777
 
113
1778
  ### Refactored
114
1779
 
115
- - Improvements to test suite & CI (#911, #918)
1780
+ - Improvements to test suite & CI ([#911][], [#918][])
116
1781
 
117
1782
  ## [0.31.0] - 2020-01-07
118
1783
 
@@ -122,27 +1787,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
122
1787
 
123
1788
  ### Added
124
1789
 
125
- - Ruby 2.7 support (#805, #896)
126
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
127
- - Faraday 1.0 support (#906)
128
- - Set resource for Rails template spans (#855, #881) (@djmb)
129
- - at_exit hook for graceful Tracer shutdown (#884)
130
- - Environment variables to configure RuleSampler defaults (#892)
1790
+ - Ruby 2.7 support ([#805][], [#896][])
1791
+ - ActionCable integration ([#132][], [#824][]) ([@renchap][], [@ericmustin][])
1792
+ - Faraday 1.0 support ([#906][])
1793
+ - Set resource for Rails template spans ([#855][], [#881][]) ([@djmb][])
1794
+ - at_exit hook for graceful Tracer shutdown ([#884][])
1795
+ - Environment variables to configure RuleSampler defaults ([#892][])
131
1796
 
132
1797
  ### Changed
133
1798
 
134
- - Updated partial trace flushing to conform with new back-end requirements (#845)
135
- - Store numeric tags as metrics (#886)
136
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
137
- - Changed default RuleSampler rate limit from unlimited to 100/s (#898)
1799
+ - Updated partial trace flushing to conform with new back-end requirements ([#845][])
1800
+ - Store numeric tags as metrics ([#886][])
1801
+ - Moved logging from Datadog::Tracer to Datadog::Logger ([#880][])
1802
+ - Changed default RuleSampler rate limit from unlimited to 100/s ([#898][])
138
1803
 
139
1804
  ### Fixed
140
1805
 
141
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
1806
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
142
1807
 
143
1808
  ### Refactored
144
1809
 
145
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
1810
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
146
1811
 
147
1812
  ## [0.30.1] - 2019-12-30
148
1813
 
@@ -152,12 +1817,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
152
1817
 
153
1818
  ### Fixed
154
1819
 
155
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
156
- - Spans associated with runtime metrics when disabled (#885)
1820
+ - NoMethodError when configuring tracer with SyncWriter ([#899][], [#900][]) ([@Yurokle][])
1821
+ - Spans associated with runtime metrics when disabled ([#885][])
157
1822
 
158
1823
  ### Refactored
159
1824
 
160
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
1825
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
161
1826
 
162
1827
  ## [0.30.0] - 2019-12-04
163
1828
 
@@ -167,13 +1832,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
167
1832
 
168
1833
  ### Added
169
1834
 
170
- - Additional tracer health metrics (#867)
171
- - Integration patching instrumentation (#871)
172
- - Rule-based trace sampling (#854)
1835
+ - Additional tracer health metrics ([#867][])
1836
+ - Integration patching instrumentation ([#871][])
1837
+ - Rule-based trace sampling ([#854][])
173
1838
 
174
1839
  ### Fixed
175
1840
 
176
- - Rails template layout name error (#872) (@djmb)
1841
+ - Rails template layout name error ([#872][]) ([@djmb][])
177
1842
 
178
1843
  ## [0.29.1] - 2019-11-26
179
1844
 
@@ -183,7 +1848,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
183
1848
 
184
1849
  ### Fixed
185
1850
 
186
- - Priority sampling not activating by default (#868)
1851
+ - Priority sampling not activating by default ([#868][])
187
1852
 
188
1853
  ## [0.29.0] - 2019-11-20
189
1854
 
@@ -193,25 +1858,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
193
1858
 
194
1859
  ### Added
195
1860
 
196
- - Tracer health metrics (#838, #859)
1861
+ - Tracer health metrics ([#838][], [#859][])
197
1862
 
198
1863
  ### Changed
199
1864
 
200
- - Default trace buffer size from 100 to 1000 (#865)
201
- - Rack request start headers to accept more values (#832) (@JamesHarker)
202
- - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
1865
+ - Default trace buffer size from 100 to 1000 ([#865][])
1866
+ - Rack request start headers to accept more values ([#832][]) ([@JamesHarker][])
1867
+ - Faraday to apply default instrumentation out-of-the-box ([#786][], [#843][]) ([@mdross95][])
203
1868
 
204
1869
  ### Fixed
205
1870
 
206
- - Synthetics trace context being ignored (#856)
1871
+ - Synthetics trace context being ignored ([#856][])
207
1872
 
208
1873
  ### Refactored
209
1874
 
210
- - Tracer buffer constants (#851)
1875
+ - Tracer buffer constants ([#851][])
211
1876
 
212
1877
  ### Removed
213
1878
 
214
- - Some old Ruby 1.9 code (#819, #844)
1879
+ - Some old Ruby 1.9 code ([#819][], [#844][])
215
1880
 
216
1881
  ## [0.28.0] - 2019-10-01
217
1882
 
@@ -221,13 +1886,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
221
1886
 
222
1887
  ### Added
223
1888
 
224
- - Support for Rails 6.0 (#814)
225
- - Multiplexing on hostname/port for Dalli (#823)
226
- - Support for Redis array arguments (#796, #817) (@brafales)
1889
+ - Support for Rails 6.0 ([#814][])
1890
+ - Multiplexing on hostname/port for Dalli ([#823][])
1891
+ - Support for Redis array arguments ([#796][], [#817][]) ([@brafales][])
227
1892
 
228
1893
  ### Refactored
229
1894
 
230
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
1895
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
231
1896
 
232
1897
  ## [0.27.0] - 2019-09-04
233
1898
 
@@ -245,16 +1910,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
245
1910
 
246
1911
  ### Added
247
1912
 
248
- - Support for Ruby 2.5 & 2.6 (#800, #802)
249
- - Ethon integration (#527, #778) (@al-kudryavtsev)
1913
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
1914
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
250
1915
 
251
1916
  ### Refactored
252
1917
 
253
- - Rails integration into smaller integrations per component (#747, #762, #795)
1918
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
254
1919
 
255
1920
  ### Removed
256
1921
 
257
- - Support for Ruby 1.9 (#791)
1922
+ - Support for Ruby 1.9 ([#791][])
258
1923
 
259
1924
  ## [0.26.0] - 2019-08-06
260
1925
 
@@ -272,15 +1937,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
272
1937
 
273
1938
  ### Added
274
1939
 
275
- - Container ID tagging for containerized environments (#784)
1940
+ - Container ID tagging for containerized environments ([#784][])
276
1941
 
277
1942
  ### Refactored
278
1943
 
279
- - Datadog::Metrics constants (#789)
1944
+ - Datadog::Metrics constants ([#789][])
280
1945
 
281
1946
  ### Removed
282
1947
 
283
- - Datadog::HTTPTransport and related components (#782)
1948
+ - Datadog::HTTPTransport and related components ([#782][])
284
1949
 
285
1950
  ## [0.25.1] - 2019-07-16
286
1951
 
@@ -290,7 +1955,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
290
1955
 
291
1956
  ### Fixed
292
1957
 
293
- - Redis integration not quantizing AUTH command (#776)
1958
+ - Redis integration not quantizing AUTH command ([#776][])
294
1959
 
295
1960
  ## [0.25.0] - 2019-06-27
296
1961
 
@@ -308,25 +1973,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
308
1973
 
309
1974
  ### Added
310
1975
 
311
- - Unix socket support for transport layer (#770)
1976
+ - Unix socket support for transport layer ([#770][])
312
1977
 
313
1978
  ### Changed
314
1979
 
315
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
1980
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
316
1981
 
317
1982
  ### Fixed
318
1983
 
319
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
1984
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
320
1985
 
321
1986
  ### Refactored
322
1987
 
323
- - Transport layer (#628)
1988
+ - Transport layer ([#628][])
324
1989
 
325
1990
  ### Deprecated
326
1991
 
327
- - Ruby < 2.0 support (#771)
328
- - Use of `Datadog::HTTPTransport` (#628)
329
- - Use of `Datadog::Ext::ForcedTracing` (#765)
1992
+ - Ruby < 2.0 support ([#771][])
1993
+ - Use of `Datadog::HTTPTransport` ([#628][])
1994
+ - Use of `Datadog::Ext::ForcedTracing` ([#765][])
330
1995
 
331
1996
  ## [0.24.0] - 2019-05-21
332
1997
 
@@ -336,9 +2001,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
336
2001
 
337
2002
  ### Added
338
2003
 
339
- - B3 header support (#753)
340
- - Hostname tagging option (#760)
341
- - Contribution and development guides (#754)
2004
+ - B3 header support ([#753][])
2005
+ - Hostname tagging option ([#760][])
2006
+ - Contribution and development guides ([#754][])
342
2007
 
343
2008
  ## [0.23.3] - 2019-05-16
344
2009
 
@@ -348,7 +2013,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
348
2013
 
349
2014
  ### Fixed
350
2015
 
351
- - Integrations initializing tracer at load time (#756)
2016
+ - Integrations initializing tracer at load time ([#756][])
352
2017
 
353
2018
  ## [0.23.2] - 2019-05-10
354
2019
 
@@ -358,9 +2023,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
358
2023
 
359
2024
  ### Fixed
360
2025
 
361
- - Span types for HTTP, web, and some datastore integrations (#751)
362
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
363
- - Rails 6 warning for `parent_name` (#750) (@sinsoku)
2026
+ - Span types for HTTP, web, and some datastore integrations ([#751][])
2027
+ - AWS integration not patching service-level gems ([#707][], [#752][]) ([@alksl][], [@tonypinder][])
2028
+ - Rails 6 warning for `parent_name` ([#750][]) ([@sinsoku][])
364
2029
 
365
2030
  ## [0.23.1] - 2019-05-02
366
2031
 
@@ -370,7 +2035,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
370
2035
 
371
2036
  ### Fixed
372
2037
 
373
- - NoMethodError runtime_metrics for SyncWriter (#748)
2038
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
374
2039
 
375
2040
  ## [0.23.0] - 2019-04-30
376
2041
 
@@ -380,16 +2045,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
380
2045
 
381
2046
  ### Added
382
2047
 
383
- - Error status support via tags for OpenTracing (#739)
384
- - Forced sampling support via tags (#720)
2048
+ - Error status support via tags for OpenTracing ([#739][])
2049
+ - Forced sampling support via tags ([#720][])
385
2050
 
386
2051
  ### Fixed
387
2052
 
388
- - Wrong return values for Rake integration (#742) (@Redapted)
2053
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
389
2054
 
390
2055
  ### Removed
391
2056
 
392
- - Obsolete service telemetry (#738)
2057
+ - Obsolete service telemetry ([#738][])
393
2058
 
394
2059
  ## [0.22.0] - 2019-04-15
395
2060
 
@@ -401,11 +2066,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
401
2066
 
402
2067
  ### Changed
403
2068
 
404
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
2069
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
405
2070
 
406
2071
  ### Added
407
2072
 
408
- - Initial beta support for Runtime metrics collection (#677)
2073
+ - Initial beta support for Runtime metrics collection ([#677][])
409
2074
 
410
2075
  ## [0.21.2] - 2019-04-10
411
2076
 
@@ -415,7 +2080,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
415
2080
 
416
2081
  ### Changed
417
2082
 
418
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
2083
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
419
2084
 
420
2085
  ## [0.21.1] - 2019-03-26
421
2086
 
@@ -425,7 +2090,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
425
2090
 
426
2091
  ### Changed
427
2092
 
428
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
2093
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
429
2094
 
430
2095
  ## [0.21.0] - 2019-03-20
431
2096
 
@@ -435,17 +2100,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
435
2100
 
436
2101
  ### Added
437
2102
 
438
- - Trace analytics support (#697, #715)
439
- - HTTP after_request span hook (#716, #724)
2103
+ - Trace analytics support ([#697][], [#715][])
2104
+ - HTTP after_request span hook ([#716][], [#724][])
440
2105
 
441
2106
  ### Fixed
442
2107
 
443
- - Distributed traces with IDs in 2^64 range being dropped (#719)
444
- - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
2108
+ - Distributed traces with IDs in 2^64 range being dropped ([#719][])
2109
+ - Custom logger level forced to warning ([#681][], [#721][]) ([@blaines][], [@ericmustin][])
445
2110
 
446
2111
  ### Refactored
447
2112
 
448
- - Global configuration for tracing into configuration API (#714)
2113
+ - Global configuration for tracing into configuration API ([#714][])
449
2114
 
450
2115
  ## [0.20.0] - 2019-03-07
451
2116
 
@@ -458,24 +2123,24 @@ These changes are backwards compatible, but all integration configuration should
458
2123
 
459
2124
  ### Added
460
2125
 
461
- - Propagate synthetics origin header (#699)
2126
+ - Propagate synthetics origin header ([#699][])
462
2127
 
463
2128
  ### Changed
464
2129
 
465
- - Enable distributed tracing by default (#701)
2130
+ - Enable distributed tracing by default ([#701][])
466
2131
 
467
2132
  ### Fixed
468
2133
 
469
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
2134
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
470
2135
 
471
2136
  ### Refactored
472
2137
 
473
- - Refactor MongoDB to use instrumentation module (#704)
474
- - Refactor HTTP to use instrumentation module (#703)
475
- - Deprecate GRPC global pin in favor of configuration API (#702)
476
- - Deprecate Grape pin in favor of configuration API (#700)
477
- - Deprecate Faraday pin in favor of configuration API (#696)
478
- - Deprecate Dalli pin in favor of configuration API (#693)
2138
+ - Refactor MongoDB to use instrumentation module ([#704][])
2139
+ - Refactor HTTP to use instrumentation module ([#703][])
2140
+ - Deprecate GRPC global pin in favor of configuration API ([#702][])
2141
+ - Deprecate Grape pin in favor of configuration API ([#700][])
2142
+ - Deprecate Faraday pin in favor of configuration API ([#696][])
2143
+ - Deprecate Dalli pin in favor of configuration API ([#693][])
479
2144
 
480
2145
  ## [0.19.1] - 2019-02-07
481
2146
 
@@ -485,11 +2150,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
485
2150
 
486
2151
  ### Added
487
2152
 
488
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
2153
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
489
2154
 
490
2155
  ### Fixed
491
2156
 
492
- - Priority sampling dropping spans (#686)
2157
+ - Priority sampling dropping spans ([#686][])
493
2158
 
494
2159
  ## [0.19.0] - 2019-01-22
495
2160
 
@@ -499,12 +2164,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
499
2164
 
500
2165
  ### Added
501
2166
 
502
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
503
- - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
2167
+ - Tracer#active_correlation for adding correlation IDs to logs. ([#660][], [#664][], [#673][])
2168
+ - Opt-in support for `event_sample_rate` tag for some integrations. ([#665][], [#666][])
504
2169
 
505
2170
  ### Changed
506
2171
 
507
- - Priority sampling enabled by default. (#654)
2172
+ - Priority sampling enabled by default. ([#654][])
508
2173
 
509
2174
  ## [0.18.3] - 2019-01-17
510
2175
 
@@ -514,9 +2179,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
514
2179
 
515
2180
  ### Fixed
516
2181
 
517
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
518
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
519
- - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
2182
+ - Mongo `NoMethodError` when no span available during `#failed`. ([#674][], [#675][]) ([@Azure7111][])
2183
+ - Rack deprecation warnings firing with some 3rd party libraries present. ([#672][])
2184
+ - Shoryuken resource name when used with ActiveJob. ([#671][]) ([@aurelian][])
520
2185
 
521
2186
  ## [0.18.2] - 2019-01-03
522
2187
 
@@ -526,8 +2191,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
526
2191
 
527
2192
  ### Fixed
528
2193
 
529
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
530
- - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
2194
+ - Unfinished Mongo spans when SASL configured ([#658][]) ([@zachmccormick][])
2195
+ - Possible performance issue with unexpanded Rails cache keys ([#630][], [#635][]) ([@gingerlime][])
531
2196
 
532
2197
  ## [0.18.1] - 2018-12-20
533
2198
 
@@ -537,7 +2202,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
537
2202
 
538
2203
  ### Fixed
539
2204
 
540
- - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
2205
+ - ActiveRecord `SystemStackError` with some 3rd party libraries ([#661][], [#662][]) ([@EpiFouloux][], [@tjgrathwell][], [@guizmaii][])
541
2206
 
542
2207
  ## [0.18.0] - 2018-12-18
543
2208
 
@@ -547,15 +2212,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
547
2212
 
548
2213
  ### Added
549
2214
 
550
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
551
- - Sidekiq client integration (#602, #650) (@dirk)
552
- - Datadog::Shim for adding instrumentation (#648)
2215
+ - Shoryuken integration ([#538][], [#626][], [#655][]) ([@steveh][], [@JustSnow][])
2216
+ - Sidekiq client integration ([#602][], [#650][]) ([@dirk][])
2217
+ - Datadog::Shim for adding instrumentation ([#648][])
553
2218
 
554
2219
  ### Changed
555
2220
 
556
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
557
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
558
- - Return default configuration instead of `nil` on miss (#651)
2221
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available ([#631][])
2222
+ - Inject `:connection` into `sql.active_record` event ([#640][], [#649][], [#656][]) ([@guizmaii][])
2223
+ - Return default configuration instead of `nil` on miss ([#651][])
559
2224
 
560
2225
  ## [0.17.3] - 2018-11-29
561
2226
 
@@ -565,9 +2230,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
565
2230
 
566
2231
  ### Fixed
567
2232
 
568
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
569
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
570
- - Rack middleware inserted twice in some Rails applications (#641)
2233
+ - Bad resource names for Grape::API objects in Grape 1.2.0 ([#639][])
2234
+ - RestClient raising NoMethodError when response is `nil` ([#636][], [#642][]) ([@frsantos][])
2235
+ - Rack middleware inserted twice in some Rails applications ([#641][])
571
2236
 
572
2237
  ## [0.17.2] - 2018-11-23
573
2238
 
@@ -577,7 +2242,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
577
2242
 
578
2243
  ### Fixed
579
2244
 
580
- - Resque integration shutting down tracer when forking is disabled (#637)
2245
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
581
2246
 
582
2247
  ## [0.17.1] - 2018-11-07
583
2248
 
@@ -587,8 +2252,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
587
2252
 
588
2253
  ### Fixed
589
2254
 
590
- - RestClient incorrect app type (#583) (@gaborszakacs)
591
- - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
2255
+ - RestClient incorrect app type ([#583][]) ([@gaborszakacs][])
2256
+ - DelayedJob incorrect job name when used with ActiveJob ([#605][]) ([@agirlnamedsophia][])
592
2257
 
593
2258
  ## [0.17.0] - 2018-10-30
594
2259
 
@@ -598,18 +2263,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
598
2263
 
599
2264
  ### Added
600
2265
 
601
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
2266
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
602
2267
 
603
2268
  ### Changed
604
2269
 
605
- - Use Rack Env to update resource in Rails (#580) (@dasch)
606
- - Expand support for Sidekiq to 3.5.4+ (#593)
607
- - Expand support for mysql2 to 0.3.21+ (#578)
2270
+ - Use Rack Env to update resource in Rails ([#580][]) ([@dasch][])
2271
+ - Expand support for Sidekiq to 3.5.4+ ([#593][])
2272
+ - Expand support for mysql2 to 0.3.21+ ([#578][])
608
2273
 
609
2274
  ### Refactored
610
2275
 
611
- - Upgraded integrations to new API (#544)
612
- - Encoding classes into modules (#598)
2276
+ - Upgraded integrations to new API ([#544][])
2277
+ - Encoding classes into modules ([#598][])
613
2278
 
614
2279
  ## [0.16.1] - 2018-10-17
615
2280
 
@@ -619,8 +2284,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
619
2284
 
620
2285
  ### Fixed
621
2286
 
622
- - Priority sampling response being mishandled (#591)
623
- - HTTP open timeout to agent too long (#582)
2287
+ - Priority sampling response being mishandled ([#591][])
2288
+ - HTTP open timeout to agent too long ([#582][])
624
2289
 
625
2290
  ## [0.16.0] - 2018-09-18
626
2291
 
@@ -630,8 +2295,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
630
2295
 
631
2296
  ### Added
632
2297
 
633
- - OpenTracing support (#517)
634
- - `middleware` option for disabling Rails trace middleware. (#552)
2298
+ - OpenTracing support ([#517][])
2299
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
635
2300
 
636
2301
  ## [0.15.0] - 2018-09-12
637
2302
 
@@ -641,13 +2306,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
641
2306
 
642
2307
  ### Added
643
2308
 
644
- - Rails 5.2 support (#535)
645
- - Context propagation support for `Concurrent::Future` (#415, #496)
2309
+ - Rails 5.2 support ([#535][])
2310
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
646
2311
 
647
2312
  ### Fixed
648
2313
 
649
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
650
- - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
2314
+ - Grape uninitialized constant TraceMiddleware ([#525][], [#533][]) ([@dim][])
2315
+ - Signed integer trace and span IDs being discarded in distributed traces ([#530][]) ([@alloy][])
651
2316
 
652
2317
  ## [0.14.2] - 2018-08-23
653
2318
 
@@ -657,7 +2322,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
657
2322
 
658
2323
  ### Fixed
659
2324
 
660
- - Sampling priority from request headers not being used (#521)
2325
+ - Sampling priority from request headers not being used ([#521][])
661
2326
 
662
2327
  ## [0.14.1] - 2018-08-21
663
2328
 
@@ -667,11 +2332,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
667
2332
 
668
2333
  ### Changed
669
2334
 
670
- - Reduce verbosity of connection errors in log (#515)
2335
+ - Reduce verbosity of connection errors in log ([#515][])
671
2336
 
672
2337
  ### Fixed
673
2338
 
674
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
2339
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
675
2340
 
676
2341
  ## [0.14.0] - 2018-08-14
677
2342
 
@@ -681,22 +2346,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
681
2346
 
682
2347
  ### Added
683
2348
 
684
- - RestClient integration (#422, #460)
685
- - DelayedJob integration (#393 #444)
686
- - Version information to integrations (#483)
687
- - Tracer#active_root_span helper (#503)
2349
+ - RestClient integration ([#422][], [#460][])
2350
+ - DelayedJob integration ([#393][] [#444][])
2351
+ - Version information to integrations ([#483][])
2352
+ - Tracer#active_root_span helper ([#503][])
688
2353
 
689
2354
  ### Changed
690
2355
 
691
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
692
- - ActiveRecord to allow configuring multiple databases (#451)
693
- - Integrations configuration settings (#450, #452, #451)
2356
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
2357
+ - ActiveRecord to allow configuring multiple databases ([#451][])
2358
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
694
2359
 
695
2360
  ### Fixed
696
2361
 
697
- - Context propagation for distributed traces when context is full (#502)
698
- - Rake shutdown tracer after execution (#487) (@kissrobber)
699
- - Deprecation warnings fired using Unicorn (#508)
2362
+ - Context propagation for distributed traces when context is full ([#502][])
2363
+ - Rake shutdown tracer after execution ([#487][]) ([@kissrobber][])
2364
+ - Deprecation warnings fired using Unicorn ([#508][])
700
2365
 
701
2366
  ## [0.14.0.rc1] - 2018-08-08
702
2367
 
@@ -706,12 +2371,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
706
2371
 
707
2372
  ### Added
708
2373
 
709
- - RestClient integration (#422, #460)
710
- - Tracer#active_root_span helper (#503)
2374
+ - RestClient integration ([#422][], [#460][])
2375
+ - Tracer#active_root_span helper ([#503][])
711
2376
 
712
2377
  ### Fixed
713
2378
 
714
- - Context propagation for distributed traces when context is full (#502)
2379
+ - Context propagation for distributed traces when context is full ([#502][])
715
2380
 
716
2381
  ## [0.14.0.beta2] - 2018-07-25
717
2382
 
@@ -721,7 +2386,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
721
2386
 
722
2387
  ### Fixed
723
2388
 
724
- - Rake shutdown tracer after execution (#487) @kissrobber
2389
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
725
2390
 
726
2391
  ## [0.14.0.beta1] - 2018-07-24
727
2392
 
@@ -731,19 +2396,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
731
2396
 
732
2397
  ### Changed
733
2398
 
734
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
735
- - ActiveRecord to allow configuring multiple databases (#451)
736
- - Integrations configuration settings (#450, #452, #451)
2399
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
2400
+ - ActiveRecord to allow configuring multiple databases ([#451][])
2401
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
737
2402
 
738
2403
  ### Fixed
739
2404
 
740
- - Ruby warnings during tests (#499)
741
- - Tests failing intermittently on Ruby 1.9.3 (#497)
2405
+ - Ruby warnings during tests ([#499][])
2406
+ - Tests failing intermittently on Ruby 1.9.3 ([#497][])
742
2407
 
743
2408
  ### Added
744
2409
 
745
- - DelayedJob integration (#393 #444)
746
- - Version information to integrations (#483)
2410
+ - DelayedJob integration ([#393][] [#444][])
2411
+ - Version information to integrations ([#483][])
747
2412
 
748
2413
  ## [0.13.2] - 2018-08-07
749
2414
 
@@ -753,7 +2418,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
753
2418
 
754
2419
  ### Fixed
755
2420
 
756
- - Context propagation for distributed traces when context is full (#502)
2421
+ - Context propagation for distributed traces when context is full ([#502][])
757
2422
 
758
2423
  ## [0.13.1] - 2018-07-17
759
2424
 
@@ -763,15 +2428,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
763
2428
 
764
2429
  ### Changed
765
2430
 
766
- - Configuration class variables don't lazy load (#477)
767
- - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
2431
+ - Configuration class variables don't lazy load ([#477][])
2432
+ - Default tracer host `localhost` --> `127.0.0.1` ([#466][], [#480][]) ([@NobodysNightmare][])
768
2433
 
769
2434
  ### Fixed
770
2435
 
771
- - Workers not shutting down quickly in some short running processes (#475)
772
- - Missing documentation for mysql2 and Rails (#476, #488)
773
- - Missing variable in rescue block (#481) (@kitop)
774
- - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
2436
+ - Workers not shutting down quickly in some short running processes ([#475][])
2437
+ - Missing documentation for mysql2 and Rails ([#476][], [#488][])
2438
+ - Missing variable in rescue block ([#481][]) ([@kitop][])
2439
+ - Unclosed spans in ActiveSupport::Notifications with multithreading ([#431][], [#478][]) ([@senny][])
775
2440
 
776
2441
  ## [0.13.0] - 2018-06-20
777
2442
 
@@ -781,31 +2446,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
781
2446
 
782
2447
  ### Added
783
2448
 
784
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
785
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
786
- - ActiveModelSerializers integration (#340) (@sullimander)
787
- - Excon integration (#211, #426) (@walterking, @jeffjo)
788
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
789
- - Request queuing tracing to Rack (experimental) (#272)
790
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
791
- - Request and response header tags to Rack (#389)
792
- - Request and response header tags to Sinatra (#427, #375)
793
- - MySQL2 integration (#453) (@jamiehodge)
794
- - Sidekiq job delay tag (#443, #418) (@gottfrois)
2449
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
2450
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
2451
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
2452
+ - Excon integration ([#211][], [#426][]) ([@walterking][], [@jeffjo][])
2453
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
2454
+ - Request queuing tracing to Rack (experimental) ([#272][])
2455
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
2456
+ - Request and response header tags to Rack ([#389][])
2457
+ - Request and response header tags to Sinatra ([#427][], [#375][])
2458
+ - MySQL2 integration ([#453][]) ([@jamiehodge][])
2459
+ - Sidekiq job delay tag ([#443][], [#418][]) ([@gottfrois][])
795
2460
 
796
2461
  ### Fixed
797
2462
 
798
- - Elasticsearch quantization of ids (#458)
799
- - MongoDB to allow quantization of collection name (#463)
2463
+ - Elasticsearch quantization of ids ([#458][])
2464
+ - MongoDB to allow quantization of collection name ([#463][])
800
2465
 
801
2466
  ### Refactored
802
2467
 
803
- - Hash quantization into core library (#410)
804
- - MongoDB integration to use Hash quantization library (#463)
2468
+ - Hash quantization into core library ([#410][])
2469
+ - MongoDB integration to use Hash quantization library ([#463][])
805
2470
 
806
- ### Changed
2471
+ ### Changed
807
2472
 
808
- - Hash quantization truncates arrays with nested objects (#463)
2473
+ - Hash quantization truncates arrays with nested objects ([#463][])
809
2474
 
810
2475
  ## [0.13.0.beta1] - 2018-05-09
811
2476
 
@@ -815,18 +2480,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
815
2480
 
816
2481
  ### Added
817
2482
 
818
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
819
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
820
- - ActiveModelSerializers integration (#340) (@sullimander)
821
- - Excon integration (#211) (@walterking)
822
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
823
- - Request queuing tracing to Rack (experimental) (#272)
824
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
825
- - Request and response header tags to Rack (#389)
2483
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
2484
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
2485
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
2486
+ - Excon integration ([#211][]) ([@walterking][])
2487
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
2488
+ - Request queuing tracing to Rack (experimental) ([#272][])
2489
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
2490
+ - Request and response header tags to Rack ([#389][])
826
2491
 
827
2492
  ### Refactored
828
2493
 
829
- - Hash quantization into core library (#410)
2494
+ - Hash quantization into core library ([#410][])
830
2495
 
831
2496
  ## [0.12.1] - 2018-06-12
832
2497
 
@@ -836,22 +2501,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
836
2501
 
837
2502
  ### Changed
838
2503
 
839
- - Cache configuration `Proxy` objects (#446)
840
- - `freeze` more constant strings, to improve memory usage (#446)
841
- - `Utils#truncate` to use slightly less memory (#446)
2504
+ - Cache configuration `Proxy` objects ([#446][])
2505
+ - `freeze` more constant strings, to improve memory usage ([#446][])
2506
+ - `Utils#truncate` to use slightly less memory ([#446][])
842
2507
 
843
2508
  ### Fixed
844
2509
 
845
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
846
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
847
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
848
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
849
- - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
2510
+ - Net/HTTP integration not permitting `service_name` to be overridden. ([#407][], [#430][]) ([@undergroundwebdesigns][])
2511
+ - Block not being passed through Elasticsearch client initialization. ([#421][]) ([@shayonj][])
2512
+ - Devise raising `NoMethodError` when bad login attempts are made. ([#419][], [#420][]) ([@frsantos][])
2513
+ - AWS spans using wrong resource name ([#374][], [#377][]) ([@jfrancoist][])
2514
+ - ActionView `NoMethodError` on very long traces. ([#445][], [#447][]) ([@jvalanen][])
850
2515
 
851
2516
  ### Refactored
852
2517
 
853
- - ActionController patching strategy using modules. (#439)
854
- - ActionView tracing strategy. (#445, #447)
2518
+ - ActionController patching strategy using modules. ([#439][])
2519
+ - ActionView tracing strategy. ([#445][], [#447][])
855
2520
 
856
2521
  ## [0.12.0] - 2018-05-08
857
2522
 
@@ -861,34 +2526,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
861
2526
 
862
2527
  ### Added
863
2528
 
864
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
865
- - ActiveRecord object instantiation tracing (#311, #334)
866
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
867
- - HTTP quantization module (#384)
868
- - Partial flushing option to tracer (#247, #397)
2529
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
2530
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
2531
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
2532
+ - HTTP quantization module ([#384][])
2533
+ - Partial flushing option to tracer ([#247][], [#397][])
869
2534
 
870
2535
  ### Changed
871
2536
 
872
- - Rack applies URL quantization by default (#371)
873
- - Elasticsearch applies body quantization by default (#362)
874
- - Context for a single trace now has hard limit of 100,000 spans (#247)
875
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
2537
+ - Rack applies URL quantization by default ([#371][])
2538
+ - Elasticsearch applies body quantization by default ([#362][])
2539
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
2540
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
876
2541
 
877
2542
  ### Fixed
878
2543
 
879
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
880
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
881
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
2544
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
2545
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
2546
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
882
2547
 
883
2548
  ### Deprecated
884
2549
 
885
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
2550
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
886
2551
 
887
2552
  ### Refactored
888
2553
 
889
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
890
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
891
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
2554
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
2555
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
2556
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
892
2557
 
893
2558
  ## [0.12.0.rc1] - 2018-04-11
894
2559
 
@@ -898,34 +2563,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
898
2563
 
899
2564
  ### Added
900
2565
 
901
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
902
- - ActiveRecord object instantiation tracing (#311, #334)
903
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
904
- - HTTP quantization module (#384)
905
- - Partial flushing option to tracer (#247, #397)
2566
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
2567
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
2568
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
2569
+ - HTTP quantization module ([#384][])
2570
+ - Partial flushing option to tracer ([#247][], [#397][])
906
2571
 
907
2572
  ### Changed
908
2573
 
909
- - Rack applies URL quantization by default (#371)
910
- - Elasticsearch applies body quantization by default (#362)
911
- - Context for a single trace now has hard limit of 100,000 spans (#247)
912
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
2574
+ - Rack applies URL quantization by default ([#371][])
2575
+ - Elasticsearch applies body quantization by default ([#362][])
2576
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
2577
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
913
2578
 
914
2579
  ### Fixed
915
2580
 
916
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
917
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
918
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
2581
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
2582
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
2583
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
919
2584
 
920
2585
  ### Deprecated
921
2586
 
922
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
2587
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
923
2588
 
924
2589
  ### Refactored
925
2590
 
926
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
927
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
928
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
2591
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
2592
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
2593
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
929
2594
 
930
2595
  ## [0.12.0.beta2] - 2018-02-28
931
2596
 
@@ -935,7 +2600,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
935
2600
 
936
2601
  ### Fixed
937
2602
 
938
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
2603
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
939
2604
 
940
2605
  ## [0.12.0.beta1] - 2018-02-09
941
2606
 
@@ -945,9 +2610,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
945
2610
 
946
2611
  ### Added
947
2612
 
948
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
949
- - ActiveRecord object instantiation tracing (#311, #334)
950
- - `http.request_id` tag to Rack spans (#335)
2613
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
2614
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
2615
+ - `http.request_id` tag to Rack spans ([#335][])
951
2616
 
952
2617
  ## [0.11.4] - 2018-03-29
953
2618
 
@@ -957,9 +2622,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
957
2622
 
958
2623
  ### Fixed
959
2624
 
960
- - Transport body parsing when downgrading (#369)
961
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
962
- - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
2625
+ - Transport body parsing when downgrading ([#369][])
2626
+ - Transport incorrectly attempting to apply sampling to service metadata ([#370][])
2627
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used ([#383][])
963
2628
 
964
2629
  ## [0.11.3] - 2018-03-06
965
2630
 
@@ -969,20 +2634,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
969
2634
 
970
2635
  ### Added
971
2636
 
972
- - CHANGELOG.md (#350, #363) (@awendt)
973
- - `http.request_id` tag to Rack spans (#335)
974
- - Tracer configuration to README.md (#332) (@noma4i)
2637
+ - CHANGELOG.md ([#350][], [#363][]) ([@awendt][])
2638
+ - `http.request_id` tag to Rack spans ([#335][])
2639
+ - Tracer configuration to README.md ([#332][]) ([@noma4i][])
975
2640
 
976
2641
  ### Fixed
977
2642
 
978
- - Extra indentation in README.md (#349) (@ck3g)
979
- - `http.url` when Rails raises exceptions (#351, #353)
980
- - Rails from being patched twice (#352)
981
- - 4XX responses from middleware being marked as errors (#345)
982
- - Rails exception middleware sometimes not being inserted at correct position (#345)
983
- - Processing pipeline documentation typo (#355) (@MMartyn)
984
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
985
- - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
2643
+ - Extra indentation in README.md ([#349][]) ([@ck3g][])
2644
+ - `http.url` when Rails raises exceptions ([#351][], [#353][])
2645
+ - Rails from being patched twice ([#352][])
2646
+ - 4XX responses from middleware being marked as errors ([#345][])
2647
+ - Rails exception middleware sometimes not being inserted at correct position ([#345][])
2648
+ - Processing pipeline documentation typo ([#355][]) ([@MMartyn][])
2649
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
2650
+ - Use of block syntax with Rails `render` not working ([#359][], [#360][]) ([@dorner][])
986
2651
 
987
2652
  ## [0.11.2] - 2018-02-02
988
2653
 
@@ -1004,23 +2669,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1004
2669
 
1005
2670
  ### Added
1006
2671
 
1007
- - `http.base_url` tag for Rack applications (#301, #327)
1008
- - `distributed_tracing` option to Sinatra (#325)
1009
- - `exception_controller` option to Rails (#320)
2672
+ - `http.base_url` tag for Rack applications ([#301][], [#327][])
2673
+ - `distributed_tracing` option to Sinatra ([#325][])
2674
+ - `exception_controller` option to Rails ([#320][])
1010
2675
 
1011
2676
  ### Changed
1012
2677
 
1013
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1014
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
2678
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
2679
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1015
2680
 
1016
2681
  ### Removed
1017
2682
 
1018
- - `Datadog::Monkey` in favor of newer configuration API (#322)
2683
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1019
2684
 
1020
2685
  ### Fixed
1021
2686
 
1022
- - Custom resource names from Rails controllers being overridden (#321)
1023
- - Custom Rails exception controllers reporting as the resource (#320)
2687
+ - Custom resource names from Rails controllers being overridden ([#321][])
2688
+ - Custom Rails exception controllers reporting as the resource ([#320][])
1024
2689
 
1025
2690
  ## [0.11.0] - 2018-01-17
1026
2691
 
@@ -1154,8 +2819,73 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1154
2819
 
1155
2820
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1156
2821
 
1157
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...master
1158
- [0.34.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
2822
+
2823
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.22.0...master
2824
+ [1.23.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.23.0...v1.23.1
2825
+ [1.23.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.22.0...v1.23.0
2826
+ [1.22.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.21.1...v1.22.0
2827
+ [2.0.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v1.21.1...v2.0.0.beta1
2828
+ [1.21.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.21.0...v1.21.1
2829
+ [1.21.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.20.0...v1.21.0
2830
+ [1.20.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.19.0...v1.20.0
2831
+ [1.19.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.18.0...v1.19.0
2832
+ [1.18.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.17.0...v1.18.0
2833
+ [1.17.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.2...v1.17.0
2834
+ [1.16.2]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.1...v1.16.2
2835
+ [1.16.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.0...v1.16.1
2836
+ [1.16.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.15.0...v1.16.0
2837
+ [1.15.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.14.0...v1.15.0
2838
+ [1.14.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.13.1...1.14.0
2839
+ [1.13.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.13.0...1.13.1
2840
+ [1.13.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.12.1...v1.13.0
2841
+ [1.12.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.12.0...v1.12.1
2842
+ [1.12.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.11.1...v1.12.0
2843
+ [1.11.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.1
2844
+ [1.11.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0
2845
+ [1.11.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0.beta1
2846
+ [1.10.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.0...v1.10.1
2847
+ [1.10.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.9.0...v1.10.0
2848
+ [1.9.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.8.0...v1.9.0
2849
+ [1.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.7.0...v1.8.0
2850
+ [1.7.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.6.1...v1.7.0
2851
+ [1.6.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.6.0...v1.6.1
2852
+ [1.6.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.5.2...v1.6.0
2853
+ [1.5.2]: https://github.com/DataDog/dd-trace-rb/compare/v1.5.1...v1.5.2
2854
+ [1.5.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.5.0...v1.5.1
2855
+ [1.5.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.4.2...v1.5.0
2856
+ [1.4.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.4.1...v1.4.2
2857
+ [1.4.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.4.0...v1.4.1
2858
+ [1.4.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.3.0...v1.4.0
2859
+ [1.3.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.2.0...v1.3.0
2860
+ [1.2.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.1.0...v1.2.0
2861
+ [1.1.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0...v1.1.0
2862
+ [1.0.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta2...v1.0.0
2863
+ [1.0.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2
2864
+ [1.0.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1
2865
+ [0.54.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.1...v0.54.2
2866
+ [0.54.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...v0.54.1
2867
+ [0.54.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
2868
+ [0.53.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
2869
+ [0.52.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
2870
+ [0.51.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
2871
+ [0.51.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
2872
+ [0.48.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
2873
+ [0.47.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
2874
+ [0.46.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.45.0...v0.46.0
2875
+ [0.45.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.44.0...v0.45.0
2876
+ [0.44.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
2877
+ [0.43.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
2878
+ [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
2879
+ [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
2880
+ [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
2881
+ [0.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
2882
+ [0.37.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
2883
+ [0.36.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
2884
+ [0.35.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
2885
+ [0.35.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
2886
+ [0.35.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
2887
+ [0.34.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
2888
+ [0.34.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
1159
2889
  [0.34.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
1160
2890
  [0.33.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
1161
2891
  [0.33.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
@@ -1242,3 +2972,1317 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1242
2972
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1243
2973
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1244
2974
  [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1
2975
+
2976
+ <!--- The following link definition list is generated by PimpMyChangelog --->
2977
+ [#132]: https://github.com/DataDog/dd-trace-rb/issues/132
2978
+ [#171]: https://github.com/DataDog/dd-trace-rb/issues/171
2979
+ [#211]: https://github.com/DataDog/dd-trace-rb/issues/211
2980
+ [#247]: https://github.com/DataDog/dd-trace-rb/issues/247
2981
+ [#272]: https://github.com/DataDog/dd-trace-rb/issues/272
2982
+ [#295]: https://github.com/DataDog/dd-trace-rb/issues/295
2983
+ [#301]: https://github.com/DataDog/dd-trace-rb/issues/301
2984
+ [#311]: https://github.com/DataDog/dd-trace-rb/issues/311
2985
+ [#320]: https://github.com/DataDog/dd-trace-rb/issues/320
2986
+ [#321]: https://github.com/DataDog/dd-trace-rb/issues/321
2987
+ [#322]: https://github.com/DataDog/dd-trace-rb/issues/322
2988
+ [#323]: https://github.com/DataDog/dd-trace-rb/issues/323
2989
+ [#324]: https://github.com/DataDog/dd-trace-rb/issues/324
2990
+ [#325]: https://github.com/DataDog/dd-trace-rb/issues/325
2991
+ [#327]: https://github.com/DataDog/dd-trace-rb/issues/327
2992
+ [#328]: https://github.com/DataDog/dd-trace-rb/issues/328
2993
+ [#330]: https://github.com/DataDog/dd-trace-rb/issues/330
2994
+ [#332]: https://github.com/DataDog/dd-trace-rb/issues/332
2995
+ [#334]: https://github.com/DataDog/dd-trace-rb/issues/334
2996
+ [#335]: https://github.com/DataDog/dd-trace-rb/issues/335
2997
+ [#340]: https://github.com/DataDog/dd-trace-rb/issues/340
2998
+ [#345]: https://github.com/DataDog/dd-trace-rb/issues/345
2999
+ [#349]: https://github.com/DataDog/dd-trace-rb/issues/349
3000
+ [#350]: https://github.com/DataDog/dd-trace-rb/issues/350
3001
+ [#351]: https://github.com/DataDog/dd-trace-rb/issues/351
3002
+ [#352]: https://github.com/DataDog/dd-trace-rb/issues/352
3003
+ [#353]: https://github.com/DataDog/dd-trace-rb/issues/353
3004
+ [#354]: https://github.com/DataDog/dd-trace-rb/issues/354
3005
+ [#355]: https://github.com/DataDog/dd-trace-rb/issues/355
3006
+ [#357]: https://github.com/DataDog/dd-trace-rb/issues/357
3007
+ [#359]: https://github.com/DataDog/dd-trace-rb/issues/359
3008
+ [#360]: https://github.com/DataDog/dd-trace-rb/issues/360
3009
+ [#362]: https://github.com/DataDog/dd-trace-rb/issues/362
3010
+ [#363]: https://github.com/DataDog/dd-trace-rb/issues/363
3011
+ [#365]: https://github.com/DataDog/dd-trace-rb/issues/365
3012
+ [#367]: https://github.com/DataDog/dd-trace-rb/issues/367
3013
+ [#369]: https://github.com/DataDog/dd-trace-rb/issues/369
3014
+ [#370]: https://github.com/DataDog/dd-trace-rb/issues/370
3015
+ [#371]: https://github.com/DataDog/dd-trace-rb/issues/371
3016
+ [#374]: https://github.com/DataDog/dd-trace-rb/issues/374
3017
+ [#375]: https://github.com/DataDog/dd-trace-rb/issues/375
3018
+ [#377]: https://github.com/DataDog/dd-trace-rb/issues/377
3019
+ [#379]: https://github.com/DataDog/dd-trace-rb/issues/379
3020
+ [#380]: https://github.com/DataDog/dd-trace-rb/issues/380
3021
+ [#381]: https://github.com/DataDog/dd-trace-rb/issues/381
3022
+ [#383]: https://github.com/DataDog/dd-trace-rb/issues/383
3023
+ [#384]: https://github.com/DataDog/dd-trace-rb/issues/384
3024
+ [#389]: https://github.com/DataDog/dd-trace-rb/issues/389
3025
+ [#390]: https://github.com/DataDog/dd-trace-rb/issues/390
3026
+ [#391]: https://github.com/DataDog/dd-trace-rb/issues/391
3027
+ [#392]: https://github.com/DataDog/dd-trace-rb/issues/392
3028
+ [#393]: https://github.com/DataDog/dd-trace-rb/issues/393
3029
+ [#395]: https://github.com/DataDog/dd-trace-rb/issues/395
3030
+ [#396]: https://github.com/DataDog/dd-trace-rb/issues/396
3031
+ [#397]: https://github.com/DataDog/dd-trace-rb/issues/397
3032
+ [#400]: https://github.com/DataDog/dd-trace-rb/issues/400
3033
+ [#403]: https://github.com/DataDog/dd-trace-rb/issues/403
3034
+ [#407]: https://github.com/DataDog/dd-trace-rb/issues/407
3035
+ [#409]: https://github.com/DataDog/dd-trace-rb/issues/409
3036
+ [#410]: https://github.com/DataDog/dd-trace-rb/issues/410
3037
+ [#415]: https://github.com/DataDog/dd-trace-rb/issues/415
3038
+ [#418]: https://github.com/DataDog/dd-trace-rb/issues/418
3039
+ [#419]: https://github.com/DataDog/dd-trace-rb/issues/419
3040
+ [#420]: https://github.com/DataDog/dd-trace-rb/issues/420
3041
+ [#421]: https://github.com/DataDog/dd-trace-rb/issues/421
3042
+ [#422]: https://github.com/DataDog/dd-trace-rb/issues/422
3043
+ [#424]: https://github.com/DataDog/dd-trace-rb/issues/424
3044
+ [#426]: https://github.com/DataDog/dd-trace-rb/issues/426
3045
+ [#427]: https://github.com/DataDog/dd-trace-rb/issues/427
3046
+ [#430]: https://github.com/DataDog/dd-trace-rb/issues/430
3047
+ [#431]: https://github.com/DataDog/dd-trace-rb/issues/431
3048
+ [#439]: https://github.com/DataDog/dd-trace-rb/issues/439
3049
+ [#443]: https://github.com/DataDog/dd-trace-rb/issues/443
3050
+ [#444]: https://github.com/DataDog/dd-trace-rb/issues/444
3051
+ [#445]: https://github.com/DataDog/dd-trace-rb/issues/445
3052
+ [#446]: https://github.com/DataDog/dd-trace-rb/issues/446
3053
+ [#447]: https://github.com/DataDog/dd-trace-rb/issues/447
3054
+ [#450]: https://github.com/DataDog/dd-trace-rb/issues/450
3055
+ [#451]: https://github.com/DataDog/dd-trace-rb/issues/451
3056
+ [#452]: https://github.com/DataDog/dd-trace-rb/issues/452
3057
+ [#453]: https://github.com/DataDog/dd-trace-rb/issues/453
3058
+ [#458]: https://github.com/DataDog/dd-trace-rb/issues/458
3059
+ [#460]: https://github.com/DataDog/dd-trace-rb/issues/460
3060
+ [#463]: https://github.com/DataDog/dd-trace-rb/issues/463
3061
+ [#466]: https://github.com/DataDog/dd-trace-rb/issues/466
3062
+ [#474]: https://github.com/DataDog/dd-trace-rb/issues/474
3063
+ [#475]: https://github.com/DataDog/dd-trace-rb/issues/475
3064
+ [#476]: https://github.com/DataDog/dd-trace-rb/issues/476
3065
+ [#477]: https://github.com/DataDog/dd-trace-rb/issues/477
3066
+ [#478]: https://github.com/DataDog/dd-trace-rb/issues/478
3067
+ [#480]: https://github.com/DataDog/dd-trace-rb/issues/480
3068
+ [#481]: https://github.com/DataDog/dd-trace-rb/issues/481
3069
+ [#483]: https://github.com/DataDog/dd-trace-rb/issues/483
3070
+ [#486]: https://github.com/DataDog/dd-trace-rb/issues/486
3071
+ [#487]: https://github.com/DataDog/dd-trace-rb/issues/487
3072
+ [#488]: https://github.com/DataDog/dd-trace-rb/issues/488
3073
+ [#496]: https://github.com/DataDog/dd-trace-rb/issues/496
3074
+ [#497]: https://github.com/DataDog/dd-trace-rb/issues/497
3075
+ [#499]: https://github.com/DataDog/dd-trace-rb/issues/499
3076
+ [#502]: https://github.com/DataDog/dd-trace-rb/issues/502
3077
+ [#503]: https://github.com/DataDog/dd-trace-rb/issues/503
3078
+ [#508]: https://github.com/DataDog/dd-trace-rb/issues/508
3079
+ [#514]: https://github.com/DataDog/dd-trace-rb/issues/514
3080
+ [#515]: https://github.com/DataDog/dd-trace-rb/issues/515
3081
+ [#516]: https://github.com/DataDog/dd-trace-rb/issues/516
3082
+ [#517]: https://github.com/DataDog/dd-trace-rb/issues/517
3083
+ [#521]: https://github.com/DataDog/dd-trace-rb/issues/521
3084
+ [#525]: https://github.com/DataDog/dd-trace-rb/issues/525
3085
+ [#527]: https://github.com/DataDog/dd-trace-rb/issues/527
3086
+ [#529]: https://github.com/DataDog/dd-trace-rb/issues/529
3087
+ [#530]: https://github.com/DataDog/dd-trace-rb/issues/530
3088
+ [#533]: https://github.com/DataDog/dd-trace-rb/issues/533
3089
+ [#535]: https://github.com/DataDog/dd-trace-rb/issues/535
3090
+ [#538]: https://github.com/DataDog/dd-trace-rb/issues/538
3091
+ [#544]: https://github.com/DataDog/dd-trace-rb/issues/544
3092
+ [#552]: https://github.com/DataDog/dd-trace-rb/issues/552
3093
+ [#578]: https://github.com/DataDog/dd-trace-rb/issues/578
3094
+ [#580]: https://github.com/DataDog/dd-trace-rb/issues/580
3095
+ [#582]: https://github.com/DataDog/dd-trace-rb/issues/582
3096
+ [#583]: https://github.com/DataDog/dd-trace-rb/issues/583
3097
+ [#591]: https://github.com/DataDog/dd-trace-rb/issues/591
3098
+ [#593]: https://github.com/DataDog/dd-trace-rb/issues/593
3099
+ [#597]: https://github.com/DataDog/dd-trace-rb/issues/597
3100
+ [#598]: https://github.com/DataDog/dd-trace-rb/issues/598
3101
+ [#602]: https://github.com/DataDog/dd-trace-rb/issues/602
3102
+ [#605]: https://github.com/DataDog/dd-trace-rb/issues/605
3103
+ [#626]: https://github.com/DataDog/dd-trace-rb/issues/626
3104
+ [#628]: https://github.com/DataDog/dd-trace-rb/issues/628
3105
+ [#630]: https://github.com/DataDog/dd-trace-rb/issues/630
3106
+ [#631]: https://github.com/DataDog/dd-trace-rb/issues/631
3107
+ [#635]: https://github.com/DataDog/dd-trace-rb/issues/635
3108
+ [#636]: https://github.com/DataDog/dd-trace-rb/issues/636
3109
+ [#637]: https://github.com/DataDog/dd-trace-rb/issues/637
3110
+ [#639]: https://github.com/DataDog/dd-trace-rb/issues/639
3111
+ [#640]: https://github.com/DataDog/dd-trace-rb/issues/640
3112
+ [#641]: https://github.com/DataDog/dd-trace-rb/issues/641
3113
+ [#642]: https://github.com/DataDog/dd-trace-rb/issues/642
3114
+ [#648]: https://github.com/DataDog/dd-trace-rb/issues/648
3115
+ [#649]: https://github.com/DataDog/dd-trace-rb/issues/649
3116
+ [#650]: https://github.com/DataDog/dd-trace-rb/issues/650
3117
+ [#651]: https://github.com/DataDog/dd-trace-rb/issues/651
3118
+ [#654]: https://github.com/DataDog/dd-trace-rb/issues/654
3119
+ [#655]: https://github.com/DataDog/dd-trace-rb/issues/655
3120
+ [#656]: https://github.com/DataDog/dd-trace-rb/issues/656
3121
+ [#658]: https://github.com/DataDog/dd-trace-rb/issues/658
3122
+ [#660]: https://github.com/DataDog/dd-trace-rb/issues/660
3123
+ [#661]: https://github.com/DataDog/dd-trace-rb/issues/661
3124
+ [#662]: https://github.com/DataDog/dd-trace-rb/issues/662
3125
+ [#664]: https://github.com/DataDog/dd-trace-rb/issues/664
3126
+ [#665]: https://github.com/DataDog/dd-trace-rb/issues/665
3127
+ [#666]: https://github.com/DataDog/dd-trace-rb/issues/666
3128
+ [#671]: https://github.com/DataDog/dd-trace-rb/issues/671
3129
+ [#672]: https://github.com/DataDog/dd-trace-rb/issues/672
3130
+ [#673]: https://github.com/DataDog/dd-trace-rb/issues/673
3131
+ [#674]: https://github.com/DataDog/dd-trace-rb/issues/674
3132
+ [#675]: https://github.com/DataDog/dd-trace-rb/issues/675
3133
+ [#677]: https://github.com/DataDog/dd-trace-rb/issues/677
3134
+ [#681]: https://github.com/DataDog/dd-trace-rb/issues/681
3135
+ [#683]: https://github.com/DataDog/dd-trace-rb/issues/683
3136
+ [#686]: https://github.com/DataDog/dd-trace-rb/issues/686
3137
+ [#687]: https://github.com/DataDog/dd-trace-rb/issues/687
3138
+ [#693]: https://github.com/DataDog/dd-trace-rb/issues/693
3139
+ [#696]: https://github.com/DataDog/dd-trace-rb/issues/696
3140
+ [#697]: https://github.com/DataDog/dd-trace-rb/issues/697
3141
+ [#699]: https://github.com/DataDog/dd-trace-rb/issues/699
3142
+ [#700]: https://github.com/DataDog/dd-trace-rb/issues/700
3143
+ [#701]: https://github.com/DataDog/dd-trace-rb/issues/701
3144
+ [#702]: https://github.com/DataDog/dd-trace-rb/issues/702
3145
+ [#703]: https://github.com/DataDog/dd-trace-rb/issues/703
3146
+ [#704]: https://github.com/DataDog/dd-trace-rb/issues/704
3147
+ [#707]: https://github.com/DataDog/dd-trace-rb/issues/707
3148
+ [#709]: https://github.com/DataDog/dd-trace-rb/issues/709
3149
+ [#714]: https://github.com/DataDog/dd-trace-rb/issues/714
3150
+ [#715]: https://github.com/DataDog/dd-trace-rb/issues/715
3151
+ [#716]: https://github.com/DataDog/dd-trace-rb/issues/716
3152
+ [#719]: https://github.com/DataDog/dd-trace-rb/issues/719
3153
+ [#720]: https://github.com/DataDog/dd-trace-rb/issues/720
3154
+ [#721]: https://github.com/DataDog/dd-trace-rb/issues/721
3155
+ [#722]: https://github.com/DataDog/dd-trace-rb/issues/722
3156
+ [#724]: https://github.com/DataDog/dd-trace-rb/issues/724
3157
+ [#728]: https://github.com/DataDog/dd-trace-rb/issues/728
3158
+ [#729]: https://github.com/DataDog/dd-trace-rb/issues/729
3159
+ [#731]: https://github.com/DataDog/dd-trace-rb/issues/731
3160
+ [#738]: https://github.com/DataDog/dd-trace-rb/issues/738
3161
+ [#739]: https://github.com/DataDog/dd-trace-rb/issues/739
3162
+ [#742]: https://github.com/DataDog/dd-trace-rb/issues/742
3163
+ [#747]: https://github.com/DataDog/dd-trace-rb/issues/747
3164
+ [#748]: https://github.com/DataDog/dd-trace-rb/issues/748
3165
+ [#750]: https://github.com/DataDog/dd-trace-rb/issues/750
3166
+ [#751]: https://github.com/DataDog/dd-trace-rb/issues/751
3167
+ [#752]: https://github.com/DataDog/dd-trace-rb/issues/752
3168
+ [#753]: https://github.com/DataDog/dd-trace-rb/issues/753
3169
+ [#754]: https://github.com/DataDog/dd-trace-rb/issues/754
3170
+ [#756]: https://github.com/DataDog/dd-trace-rb/issues/756
3171
+ [#757]: https://github.com/DataDog/dd-trace-rb/issues/757
3172
+ [#760]: https://github.com/DataDog/dd-trace-rb/issues/760
3173
+ [#762]: https://github.com/DataDog/dd-trace-rb/issues/762
3174
+ [#765]: https://github.com/DataDog/dd-trace-rb/issues/765
3175
+ [#768]: https://github.com/DataDog/dd-trace-rb/issues/768
3176
+ [#770]: https://github.com/DataDog/dd-trace-rb/issues/770
3177
+ [#771]: https://github.com/DataDog/dd-trace-rb/issues/771
3178
+ [#775]: https://github.com/DataDog/dd-trace-rb/issues/775
3179
+ [#776]: https://github.com/DataDog/dd-trace-rb/issues/776
3180
+ [#778]: https://github.com/DataDog/dd-trace-rb/issues/778
3181
+ [#782]: https://github.com/DataDog/dd-trace-rb/issues/782
3182
+ [#784]: https://github.com/DataDog/dd-trace-rb/issues/784
3183
+ [#786]: https://github.com/DataDog/dd-trace-rb/issues/786
3184
+ [#789]: https://github.com/DataDog/dd-trace-rb/issues/789
3185
+ [#791]: https://github.com/DataDog/dd-trace-rb/issues/791
3186
+ [#795]: https://github.com/DataDog/dd-trace-rb/issues/795
3187
+ [#796]: https://github.com/DataDog/dd-trace-rb/issues/796
3188
+ [#798]: https://github.com/DataDog/dd-trace-rb/issues/798
3189
+ [#800]: https://github.com/DataDog/dd-trace-rb/issues/800
3190
+ [#802]: https://github.com/DataDog/dd-trace-rb/issues/802
3191
+ [#805]: https://github.com/DataDog/dd-trace-rb/issues/805
3192
+ [#811]: https://github.com/DataDog/dd-trace-rb/issues/811
3193
+ [#814]: https://github.com/DataDog/dd-trace-rb/issues/814
3194
+ [#815]: https://github.com/DataDog/dd-trace-rb/issues/815
3195
+ [#817]: https://github.com/DataDog/dd-trace-rb/issues/817
3196
+ [#818]: https://github.com/DataDog/dd-trace-rb/issues/818
3197
+ [#819]: https://github.com/DataDog/dd-trace-rb/issues/819
3198
+ [#821]: https://github.com/DataDog/dd-trace-rb/issues/821
3199
+ [#823]: https://github.com/DataDog/dd-trace-rb/issues/823
3200
+ [#824]: https://github.com/DataDog/dd-trace-rb/issues/824
3201
+ [#832]: https://github.com/DataDog/dd-trace-rb/issues/832
3202
+ [#838]: https://github.com/DataDog/dd-trace-rb/issues/838
3203
+ [#840]: https://github.com/DataDog/dd-trace-rb/issues/840
3204
+ [#841]: https://github.com/DataDog/dd-trace-rb/issues/841
3205
+ [#842]: https://github.com/DataDog/dd-trace-rb/issues/842
3206
+ [#843]: https://github.com/DataDog/dd-trace-rb/issues/843
3207
+ [#844]: https://github.com/DataDog/dd-trace-rb/issues/844
3208
+ [#845]: https://github.com/DataDog/dd-trace-rb/issues/845
3209
+ [#846]: https://github.com/DataDog/dd-trace-rb/issues/846
3210
+ [#847]: https://github.com/DataDog/dd-trace-rb/issues/847
3211
+ [#851]: https://github.com/DataDog/dd-trace-rb/issues/851
3212
+ [#853]: https://github.com/DataDog/dd-trace-rb/issues/853
3213
+ [#854]: https://github.com/DataDog/dd-trace-rb/issues/854
3214
+ [#855]: https://github.com/DataDog/dd-trace-rb/issues/855
3215
+ [#856]: https://github.com/DataDog/dd-trace-rb/issues/856
3216
+ [#859]: https://github.com/DataDog/dd-trace-rb/issues/859
3217
+ [#861]: https://github.com/DataDog/dd-trace-rb/issues/861
3218
+ [#865]: https://github.com/DataDog/dd-trace-rb/issues/865
3219
+ [#867]: https://github.com/DataDog/dd-trace-rb/issues/867
3220
+ [#868]: https://github.com/DataDog/dd-trace-rb/issues/868
3221
+ [#871]: https://github.com/DataDog/dd-trace-rb/issues/871
3222
+ [#872]: https://github.com/DataDog/dd-trace-rb/issues/872
3223
+ [#880]: https://github.com/DataDog/dd-trace-rb/issues/880
3224
+ [#881]: https://github.com/DataDog/dd-trace-rb/issues/881
3225
+ [#882]: https://github.com/DataDog/dd-trace-rb/issues/882
3226
+ [#883]: https://github.com/DataDog/dd-trace-rb/issues/883
3227
+ [#884]: https://github.com/DataDog/dd-trace-rb/issues/884
3228
+ [#885]: https://github.com/DataDog/dd-trace-rb/issues/885
3229
+ [#886]: https://github.com/DataDog/dd-trace-rb/issues/886
3230
+ [#888]: https://github.com/DataDog/dd-trace-rb/issues/888
3231
+ [#890]: https://github.com/DataDog/dd-trace-rb/issues/890
3232
+ [#891]: https://github.com/DataDog/dd-trace-rb/issues/891
3233
+ [#892]: https://github.com/DataDog/dd-trace-rb/issues/892
3234
+ [#893]: https://github.com/DataDog/dd-trace-rb/issues/893
3235
+ [#894]: https://github.com/DataDog/dd-trace-rb/issues/894
3236
+ [#895]: https://github.com/DataDog/dd-trace-rb/issues/895
3237
+ [#896]: https://github.com/DataDog/dd-trace-rb/issues/896
3238
+ [#898]: https://github.com/DataDog/dd-trace-rb/issues/898
3239
+ [#899]: https://github.com/DataDog/dd-trace-rb/issues/899
3240
+ [#900]: https://github.com/DataDog/dd-trace-rb/issues/900
3241
+ [#903]: https://github.com/DataDog/dd-trace-rb/issues/903
3242
+ [#904]: https://github.com/DataDog/dd-trace-rb/issues/904
3243
+ [#906]: https://github.com/DataDog/dd-trace-rb/issues/906
3244
+ [#907]: https://github.com/DataDog/dd-trace-rb/issues/907
3245
+ [#909]: https://github.com/DataDog/dd-trace-rb/issues/909
3246
+ [#910]: https://github.com/DataDog/dd-trace-rb/issues/910
3247
+ [#911]: https://github.com/DataDog/dd-trace-rb/issues/911
3248
+ [#912]: https://github.com/DataDog/dd-trace-rb/issues/912
3249
+ [#913]: https://github.com/DataDog/dd-trace-rb/issues/913
3250
+ [#914]: https://github.com/DataDog/dd-trace-rb/issues/914
3251
+ [#915]: https://github.com/DataDog/dd-trace-rb/issues/915
3252
+ [#917]: https://github.com/DataDog/dd-trace-rb/issues/917
3253
+ [#918]: https://github.com/DataDog/dd-trace-rb/issues/918
3254
+ [#919]: https://github.com/DataDog/dd-trace-rb/issues/919
3255
+ [#920]: https://github.com/DataDog/dd-trace-rb/issues/920
3256
+ [#921]: https://github.com/DataDog/dd-trace-rb/issues/921
3257
+ [#927]: https://github.com/DataDog/dd-trace-rb/issues/927
3258
+ [#928]: https://github.com/DataDog/dd-trace-rb/issues/928
3259
+ [#929]: https://github.com/DataDog/dd-trace-rb/issues/929
3260
+ [#930]: https://github.com/DataDog/dd-trace-rb/issues/930
3261
+ [#932]: https://github.com/DataDog/dd-trace-rb/issues/932
3262
+ [#933]: https://github.com/DataDog/dd-trace-rb/issues/933
3263
+ [#934]: https://github.com/DataDog/dd-trace-rb/issues/934
3264
+ [#935]: https://github.com/DataDog/dd-trace-rb/issues/935
3265
+ [#937]: https://github.com/DataDog/dd-trace-rb/issues/937
3266
+ [#938]: https://github.com/DataDog/dd-trace-rb/issues/938
3267
+ [#940]: https://github.com/DataDog/dd-trace-rb/issues/940
3268
+ [#942]: https://github.com/DataDog/dd-trace-rb/issues/942
3269
+ [#943]: https://github.com/DataDog/dd-trace-rb/issues/943
3270
+ [#944]: https://github.com/DataDog/dd-trace-rb/issues/944
3271
+ [#945]: https://github.com/DataDog/dd-trace-rb/issues/945
3272
+ [#947]: https://github.com/DataDog/dd-trace-rb/issues/947
3273
+ [#948]: https://github.com/DataDog/dd-trace-rb/issues/948
3274
+ [#949]: https://github.com/DataDog/dd-trace-rb/issues/949
3275
+ [#950]: https://github.com/DataDog/dd-trace-rb/issues/950
3276
+ [#951]: https://github.com/DataDog/dd-trace-rb/issues/951
3277
+ [#952]: https://github.com/DataDog/dd-trace-rb/issues/952
3278
+ [#953]: https://github.com/DataDog/dd-trace-rb/issues/953
3279
+ [#954]: https://github.com/DataDog/dd-trace-rb/issues/954
3280
+ [#955]: https://github.com/DataDog/dd-trace-rb/issues/955
3281
+ [#956]: https://github.com/DataDog/dd-trace-rb/issues/956
3282
+ [#957]: https://github.com/DataDog/dd-trace-rb/issues/957
3283
+ [#960]: https://github.com/DataDog/dd-trace-rb/issues/960
3284
+ [#961]: https://github.com/DataDog/dd-trace-rb/issues/961
3285
+ [#964]: https://github.com/DataDog/dd-trace-rb/issues/964
3286
+ [#965]: https://github.com/DataDog/dd-trace-rb/issues/965
3287
+ [#966]: https://github.com/DataDog/dd-trace-rb/issues/966
3288
+ [#967]: https://github.com/DataDog/dd-trace-rb/issues/967
3289
+ [#968]: https://github.com/DataDog/dd-trace-rb/issues/968
3290
+ [#969]: https://github.com/DataDog/dd-trace-rb/issues/969
3291
+ [#971]: https://github.com/DataDog/dd-trace-rb/issues/971
3292
+ [#972]: https://github.com/DataDog/dd-trace-rb/issues/972
3293
+ [#973]: https://github.com/DataDog/dd-trace-rb/issues/973
3294
+ [#974]: https://github.com/DataDog/dd-trace-rb/issues/974
3295
+ [#975]: https://github.com/DataDog/dd-trace-rb/issues/975
3296
+ [#977]: https://github.com/DataDog/dd-trace-rb/issues/977
3297
+ [#980]: https://github.com/DataDog/dd-trace-rb/issues/980
3298
+ [#981]: https://github.com/DataDog/dd-trace-rb/issues/981
3299
+ [#982]: https://github.com/DataDog/dd-trace-rb/issues/982
3300
+ [#983]: https://github.com/DataDog/dd-trace-rb/issues/983
3301
+ [#985]: https://github.com/DataDog/dd-trace-rb/issues/985
3302
+ [#986]: https://github.com/DataDog/dd-trace-rb/issues/986
3303
+ [#988]: https://github.com/DataDog/dd-trace-rb/issues/988
3304
+ [#989]: https://github.com/DataDog/dd-trace-rb/issues/989
3305
+ [#990]: https://github.com/DataDog/dd-trace-rb/issues/990
3306
+ [#991]: https://github.com/DataDog/dd-trace-rb/issues/991
3307
+ [#993]: https://github.com/DataDog/dd-trace-rb/issues/993
3308
+ [#995]: https://github.com/DataDog/dd-trace-rb/issues/995
3309
+ [#996]: https://github.com/DataDog/dd-trace-rb/issues/996
3310
+ [#997]: https://github.com/DataDog/dd-trace-rb/issues/997
3311
+ [#1000]: https://github.com/DataDog/dd-trace-rb/issues/1000
3312
+ [#1004]: https://github.com/DataDog/dd-trace-rb/issues/1004
3313
+ [#1005]: https://github.com/DataDog/dd-trace-rb/issues/1005
3314
+ [#1006]: https://github.com/DataDog/dd-trace-rb/issues/1006
3315
+ [#1008]: https://github.com/DataDog/dd-trace-rb/issues/1008
3316
+ [#1009]: https://github.com/DataDog/dd-trace-rb/issues/1009
3317
+ [#1010]: https://github.com/DataDog/dd-trace-rb/issues/1010
3318
+ [#1015]: https://github.com/DataDog/dd-trace-rb/issues/1015
3319
+ [#1021]: https://github.com/DataDog/dd-trace-rb/issues/1021
3320
+ [#1023]: https://github.com/DataDog/dd-trace-rb/issues/1023
3321
+ [#1027]: https://github.com/DataDog/dd-trace-rb/issues/1027
3322
+ [#1030]: https://github.com/DataDog/dd-trace-rb/issues/1030
3323
+ [#1031]: https://github.com/DataDog/dd-trace-rb/issues/1031
3324
+ [#1032]: https://github.com/DataDog/dd-trace-rb/issues/1032
3325
+ [#1033]: https://github.com/DataDog/dd-trace-rb/issues/1033
3326
+ [#1034]: https://github.com/DataDog/dd-trace-rb/issues/1034
3327
+ [#1035]: https://github.com/DataDog/dd-trace-rb/issues/1035
3328
+ [#1037]: https://github.com/DataDog/dd-trace-rb/issues/1037
3329
+ [#1041]: https://github.com/DataDog/dd-trace-rb/issues/1041
3330
+ [#1043]: https://github.com/DataDog/dd-trace-rb/issues/1043
3331
+ [#1045]: https://github.com/DataDog/dd-trace-rb/issues/1045
3332
+ [#1046]: https://github.com/DataDog/dd-trace-rb/issues/1046
3333
+ [#1047]: https://github.com/DataDog/dd-trace-rb/issues/1047
3334
+ [#1051]: https://github.com/DataDog/dd-trace-rb/issues/1051
3335
+ [#1054]: https://github.com/DataDog/dd-trace-rb/issues/1054
3336
+ [#1057]: https://github.com/DataDog/dd-trace-rb/issues/1057
3337
+ [#1062]: https://github.com/DataDog/dd-trace-rb/issues/1062
3338
+ [#1070]: https://github.com/DataDog/dd-trace-rb/issues/1070
3339
+ [#1071]: https://github.com/DataDog/dd-trace-rb/issues/1071
3340
+ [#1072]: https://github.com/DataDog/dd-trace-rb/issues/1072
3341
+ [#1073]: https://github.com/DataDog/dd-trace-rb/issues/1073
3342
+ [#1074]: https://github.com/DataDog/dd-trace-rb/issues/1074
3343
+ [#1075]: https://github.com/DataDog/dd-trace-rb/issues/1075
3344
+ [#1076]: https://github.com/DataDog/dd-trace-rb/issues/1076
3345
+ [#1079]: https://github.com/DataDog/dd-trace-rb/issues/1079
3346
+ [#1081]: https://github.com/DataDog/dd-trace-rb/issues/1081
3347
+ [#1082]: https://github.com/DataDog/dd-trace-rb/issues/1082
3348
+ [#1086]: https://github.com/DataDog/dd-trace-rb/issues/1086
3349
+ [#1089]: https://github.com/DataDog/dd-trace-rb/issues/1089
3350
+ [#1090]: https://github.com/DataDog/dd-trace-rb/issues/1090
3351
+ [#1091]: https://github.com/DataDog/dd-trace-rb/issues/1091
3352
+ [#1092]: https://github.com/DataDog/dd-trace-rb/issues/1092
3353
+ [#1099]: https://github.com/DataDog/dd-trace-rb/issues/1099
3354
+ [#1100]: https://github.com/DataDog/dd-trace-rb/issues/1100
3355
+ [#1103]: https://github.com/DataDog/dd-trace-rb/issues/1103
3356
+ [#1104]: https://github.com/DataDog/dd-trace-rb/issues/1104
3357
+ [#1105]: https://github.com/DataDog/dd-trace-rb/issues/1105
3358
+ [#1107]: https://github.com/DataDog/dd-trace-rb/issues/1107
3359
+ [#1109]: https://github.com/DataDog/dd-trace-rb/issues/1109
3360
+ [#1115]: https://github.com/DataDog/dd-trace-rb/issues/1115
3361
+ [#1116]: https://github.com/DataDog/dd-trace-rb/issues/1116
3362
+ [#1118]: https://github.com/DataDog/dd-trace-rb/issues/1118
3363
+ [#1119]: https://github.com/DataDog/dd-trace-rb/issues/1119
3364
+ [#1120]: https://github.com/DataDog/dd-trace-rb/issues/1120
3365
+ [#1121]: https://github.com/DataDog/dd-trace-rb/issues/1121
3366
+ [#1122]: https://github.com/DataDog/dd-trace-rb/issues/1122
3367
+ [#1124]: https://github.com/DataDog/dd-trace-rb/issues/1124
3368
+ [#1125]: https://github.com/DataDog/dd-trace-rb/issues/1125
3369
+ [#1126]: https://github.com/DataDog/dd-trace-rb/issues/1126
3370
+ [#1127]: https://github.com/DataDog/dd-trace-rb/issues/1127
3371
+ [#1128]: https://github.com/DataDog/dd-trace-rb/issues/1128
3372
+ [#1129]: https://github.com/DataDog/dd-trace-rb/issues/1129
3373
+ [#1131]: https://github.com/DataDog/dd-trace-rb/issues/1131
3374
+ [#1133]: https://github.com/DataDog/dd-trace-rb/issues/1133
3375
+ [#1134]: https://github.com/DataDog/dd-trace-rb/issues/1134
3376
+ [#1137]: https://github.com/DataDog/dd-trace-rb/issues/1137
3377
+ [#1138]: https://github.com/DataDog/dd-trace-rb/issues/1138
3378
+ [#1141]: https://github.com/DataDog/dd-trace-rb/issues/1141
3379
+ [#1145]: https://github.com/DataDog/dd-trace-rb/issues/1145
3380
+ [#1146]: https://github.com/DataDog/dd-trace-rb/issues/1146
3381
+ [#1148]: https://github.com/DataDog/dd-trace-rb/issues/1148
3382
+ [#1149]: https://github.com/DataDog/dd-trace-rb/issues/1149
3383
+ [#1150]: https://github.com/DataDog/dd-trace-rb/issues/1150
3384
+ [#1151]: https://github.com/DataDog/dd-trace-rb/issues/1151
3385
+ [#1152]: https://github.com/DataDog/dd-trace-rb/issues/1152
3386
+ [#1153]: https://github.com/DataDog/dd-trace-rb/issues/1153
3387
+ [#1154]: https://github.com/DataDog/dd-trace-rb/issues/1154
3388
+ [#1155]: https://github.com/DataDog/dd-trace-rb/issues/1155
3389
+ [#1156]: https://github.com/DataDog/dd-trace-rb/issues/1156
3390
+ [#1157]: https://github.com/DataDog/dd-trace-rb/issues/1157
3391
+ [#1158]: https://github.com/DataDog/dd-trace-rb/issues/1158
3392
+ [#1159]: https://github.com/DataDog/dd-trace-rb/issues/1159
3393
+ [#1160]: https://github.com/DataDog/dd-trace-rb/issues/1160
3394
+ [#1162]: https://github.com/DataDog/dd-trace-rb/issues/1162
3395
+ [#1163]: https://github.com/DataDog/dd-trace-rb/issues/1163
3396
+ [#1165]: https://github.com/DataDog/dd-trace-rb/issues/1165
3397
+ [#1172]: https://github.com/DataDog/dd-trace-rb/issues/1172
3398
+ [#1173]: https://github.com/DataDog/dd-trace-rb/issues/1173
3399
+ [#1176]: https://github.com/DataDog/dd-trace-rb/issues/1176
3400
+ [#1177]: https://github.com/DataDog/dd-trace-rb/issues/1177
3401
+ [#1178]: https://github.com/DataDog/dd-trace-rb/issues/1178
3402
+ [#1179]: https://github.com/DataDog/dd-trace-rb/issues/1179
3403
+ [#1180]: https://github.com/DataDog/dd-trace-rb/issues/1180
3404
+ [#1181]: https://github.com/DataDog/dd-trace-rb/issues/1181
3405
+ [#1182]: https://github.com/DataDog/dd-trace-rb/issues/1182
3406
+ [#1183]: https://github.com/DataDog/dd-trace-rb/issues/1183
3407
+ [#1184]: https://github.com/DataDog/dd-trace-rb/issues/1184
3408
+ [#1185]: https://github.com/DataDog/dd-trace-rb/issues/1185
3409
+ [#1186]: https://github.com/DataDog/dd-trace-rb/issues/1186
3410
+ [#1187]: https://github.com/DataDog/dd-trace-rb/issues/1187
3411
+ [#1188]: https://github.com/DataDog/dd-trace-rb/issues/1188
3412
+ [#1189]: https://github.com/DataDog/dd-trace-rb/issues/1189
3413
+ [#1195]: https://github.com/DataDog/dd-trace-rb/issues/1195
3414
+ [#1198]: https://github.com/DataDog/dd-trace-rb/issues/1198
3415
+ [#1199]: https://github.com/DataDog/dd-trace-rb/issues/1199
3416
+ [#1200]: https://github.com/DataDog/dd-trace-rb/issues/1200
3417
+ [#1203]: https://github.com/DataDog/dd-trace-rb/issues/1203
3418
+ [#1204]: https://github.com/DataDog/dd-trace-rb/issues/1204
3419
+ [#1210]: https://github.com/DataDog/dd-trace-rb/issues/1210
3420
+ [#1212]: https://github.com/DataDog/dd-trace-rb/issues/1212
3421
+ [#1213]: https://github.com/DataDog/dd-trace-rb/issues/1213
3422
+ [#1216]: https://github.com/DataDog/dd-trace-rb/issues/1216
3423
+ [#1217]: https://github.com/DataDog/dd-trace-rb/issues/1217
3424
+ [#1218]: https://github.com/DataDog/dd-trace-rb/issues/1218
3425
+ [#1220]: https://github.com/DataDog/dd-trace-rb/issues/1220
3426
+ [#1224]: https://github.com/DataDog/dd-trace-rb/issues/1224
3427
+ [#1225]: https://github.com/DataDog/dd-trace-rb/issues/1225
3428
+ [#1226]: https://github.com/DataDog/dd-trace-rb/issues/1226
3429
+ [#1227]: https://github.com/DataDog/dd-trace-rb/issues/1227
3430
+ [#1229]: https://github.com/DataDog/dd-trace-rb/issues/1229
3431
+ [#1232]: https://github.com/DataDog/dd-trace-rb/issues/1232
3432
+ [#1233]: https://github.com/DataDog/dd-trace-rb/issues/1233
3433
+ [#1234]: https://github.com/DataDog/dd-trace-rb/issues/1234
3434
+ [#1235]: https://github.com/DataDog/dd-trace-rb/issues/1235
3435
+ [#1236]: https://github.com/DataDog/dd-trace-rb/issues/1236
3436
+ [#1237]: https://github.com/DataDog/dd-trace-rb/issues/1237
3437
+ [#1238]: https://github.com/DataDog/dd-trace-rb/issues/1238
3438
+ [#1239]: https://github.com/DataDog/dd-trace-rb/issues/1239
3439
+ [#1243]: https://github.com/DataDog/dd-trace-rb/issues/1243
3440
+ [#1244]: https://github.com/DataDog/dd-trace-rb/issues/1244
3441
+ [#1248]: https://github.com/DataDog/dd-trace-rb/issues/1248
3442
+ [#1256]: https://github.com/DataDog/dd-trace-rb/issues/1256
3443
+ [#1257]: https://github.com/DataDog/dd-trace-rb/issues/1257
3444
+ [#1260]: https://github.com/DataDog/dd-trace-rb/issues/1260
3445
+ [#1262]: https://github.com/DataDog/dd-trace-rb/issues/1262
3446
+ [#1263]: https://github.com/DataDog/dd-trace-rb/issues/1263
3447
+ [#1264]: https://github.com/DataDog/dd-trace-rb/issues/1264
3448
+ [#1266]: https://github.com/DataDog/dd-trace-rb/issues/1266
3449
+ [#1267]: https://github.com/DataDog/dd-trace-rb/issues/1267
3450
+ [#1268]: https://github.com/DataDog/dd-trace-rb/issues/1268
3451
+ [#1269]: https://github.com/DataDog/dd-trace-rb/issues/1269
3452
+ [#1270]: https://github.com/DataDog/dd-trace-rb/issues/1270
3453
+ [#1272]: https://github.com/DataDog/dd-trace-rb/issues/1272
3454
+ [#1273]: https://github.com/DataDog/dd-trace-rb/issues/1273
3455
+ [#1275]: https://github.com/DataDog/dd-trace-rb/issues/1275
3456
+ [#1276]: https://github.com/DataDog/dd-trace-rb/issues/1276
3457
+ [#1277]: https://github.com/DataDog/dd-trace-rb/issues/1277
3458
+ [#1278]: https://github.com/DataDog/dd-trace-rb/issues/1278
3459
+ [#1279]: https://github.com/DataDog/dd-trace-rb/issues/1279
3460
+ [#1280]: https://github.com/DataDog/dd-trace-rb/issues/1280
3461
+ [#1281]: https://github.com/DataDog/dd-trace-rb/issues/1281
3462
+ [#1283]: https://github.com/DataDog/dd-trace-rb/issues/1283
3463
+ [#1284]: https://github.com/DataDog/dd-trace-rb/issues/1284
3464
+ [#1286]: https://github.com/DataDog/dd-trace-rb/issues/1286
3465
+ [#1287]: https://github.com/DataDog/dd-trace-rb/issues/1287
3466
+ [#1289]: https://github.com/DataDog/dd-trace-rb/issues/1289
3467
+ [#1291]: https://github.com/DataDog/dd-trace-rb/issues/1291
3468
+ [#1293]: https://github.com/DataDog/dd-trace-rb/issues/1293
3469
+ [#1295]: https://github.com/DataDog/dd-trace-rb/issues/1295
3470
+ [#1296]: https://github.com/DataDog/dd-trace-rb/issues/1296
3471
+ [#1297]: https://github.com/DataDog/dd-trace-rb/issues/1297
3472
+ [#1298]: https://github.com/DataDog/dd-trace-rb/issues/1298
3473
+ [#1299]: https://github.com/DataDog/dd-trace-rb/issues/1299
3474
+ [#1302]: https://github.com/DataDog/dd-trace-rb/issues/1302
3475
+ [#1303]: https://github.com/DataDog/dd-trace-rb/issues/1303
3476
+ [#1304]: https://github.com/DataDog/dd-trace-rb/issues/1304
3477
+ [#1305]: https://github.com/DataDog/dd-trace-rb/issues/1305
3478
+ [#1306]: https://github.com/DataDog/dd-trace-rb/issues/1306
3479
+ [#1307]: https://github.com/DataDog/dd-trace-rb/issues/1307
3480
+ [#1309]: https://github.com/DataDog/dd-trace-rb/issues/1309
3481
+ [#1311]: https://github.com/DataDog/dd-trace-rb/issues/1311
3482
+ [#1317]: https://github.com/DataDog/dd-trace-rb/issues/1317
3483
+ [#1318]: https://github.com/DataDog/dd-trace-rb/issues/1318
3484
+ [#1319]: https://github.com/DataDog/dd-trace-rb/issues/1319
3485
+ [#1320]: https://github.com/DataDog/dd-trace-rb/issues/1320
3486
+ [#1321]: https://github.com/DataDog/dd-trace-rb/issues/1321
3487
+ [#1323]: https://github.com/DataDog/dd-trace-rb/issues/1323
3488
+ [#1325]: https://github.com/DataDog/dd-trace-rb/issues/1325
3489
+ [#1326]: https://github.com/DataDog/dd-trace-rb/issues/1326
3490
+ [#1331]: https://github.com/DataDog/dd-trace-rb/issues/1331
3491
+ [#1332]: https://github.com/DataDog/dd-trace-rb/issues/1332
3492
+ [#1334]: https://github.com/DataDog/dd-trace-rb/issues/1334
3493
+ [#1336]: https://github.com/DataDog/dd-trace-rb/issues/1336
3494
+ [#1341]: https://github.com/DataDog/dd-trace-rb/issues/1341
3495
+ [#1342]: https://github.com/DataDog/dd-trace-rb/issues/1342
3496
+ [#1343]: https://github.com/DataDog/dd-trace-rb/issues/1343
3497
+ [#1346]: https://github.com/DataDog/dd-trace-rb/issues/1346
3498
+ [#1347]: https://github.com/DataDog/dd-trace-rb/issues/1347
3499
+ [#1350]: https://github.com/DataDog/dd-trace-rb/issues/1350
3500
+ [#1352]: https://github.com/DataDog/dd-trace-rb/issues/1352
3501
+ [#1353]: https://github.com/DataDog/dd-trace-rb/issues/1353
3502
+ [#1354]: https://github.com/DataDog/dd-trace-rb/issues/1354
3503
+ [#1357]: https://github.com/DataDog/dd-trace-rb/issues/1357
3504
+ [#1365]: https://github.com/DataDog/dd-trace-rb/issues/1365
3505
+ [#1366]: https://github.com/DataDog/dd-trace-rb/issues/1366
3506
+ [#1367]: https://github.com/DataDog/dd-trace-rb/issues/1367
3507
+ [#1368]: https://github.com/DataDog/dd-trace-rb/issues/1368
3508
+ [#1369]: https://github.com/DataDog/dd-trace-rb/issues/1369
3509
+ [#1370]: https://github.com/DataDog/dd-trace-rb/issues/1370
3510
+ [#1371]: https://github.com/DataDog/dd-trace-rb/issues/1371
3511
+ [#1374]: https://github.com/DataDog/dd-trace-rb/issues/1374
3512
+ [#1377]: https://github.com/DataDog/dd-trace-rb/issues/1377
3513
+ [#1378]: https://github.com/DataDog/dd-trace-rb/issues/1378
3514
+ [#1379]: https://github.com/DataDog/dd-trace-rb/issues/1379
3515
+ [#1380]: https://github.com/DataDog/dd-trace-rb/issues/1380
3516
+ [#1381]: https://github.com/DataDog/dd-trace-rb/issues/1381
3517
+ [#1393]: https://github.com/DataDog/dd-trace-rb/issues/1393
3518
+ [#1394]: https://github.com/DataDog/dd-trace-rb/issues/1394
3519
+ [#1396]: https://github.com/DataDog/dd-trace-rb/issues/1396
3520
+ [#1397]: https://github.com/DataDog/dd-trace-rb/issues/1397
3521
+ [#1398]: https://github.com/DataDog/dd-trace-rb/issues/1398
3522
+ [#1399]: https://github.com/DataDog/dd-trace-rb/issues/1399
3523
+ [#1400]: https://github.com/DataDog/dd-trace-rb/issues/1400
3524
+ [#1403]: https://github.com/DataDog/dd-trace-rb/issues/1403
3525
+ [#1406]: https://github.com/DataDog/dd-trace-rb/issues/1406
3526
+ [#1408]: https://github.com/DataDog/dd-trace-rb/issues/1408
3527
+ [#1409]: https://github.com/DataDog/dd-trace-rb/issues/1409
3528
+ [#1412]: https://github.com/DataDog/dd-trace-rb/issues/1412
3529
+ [#1414]: https://github.com/DataDog/dd-trace-rb/issues/1414
3530
+ [#1415]: https://github.com/DataDog/dd-trace-rb/issues/1415
3531
+ [#1416]: https://github.com/DataDog/dd-trace-rb/issues/1416
3532
+ [#1417]: https://github.com/DataDog/dd-trace-rb/issues/1417
3533
+ [#1418]: https://github.com/DataDog/dd-trace-rb/issues/1418
3534
+ [#1419]: https://github.com/DataDog/dd-trace-rb/issues/1419
3535
+ [#1420]: https://github.com/DataDog/dd-trace-rb/issues/1420
3536
+ [#1421]: https://github.com/DataDog/dd-trace-rb/issues/1421
3537
+ [#1422]: https://github.com/DataDog/dd-trace-rb/issues/1422
3538
+ [#1423]: https://github.com/DataDog/dd-trace-rb/issues/1423
3539
+ [#1426]: https://github.com/DataDog/dd-trace-rb/issues/1426
3540
+ [#1427]: https://github.com/DataDog/dd-trace-rb/issues/1427
3541
+ [#1428]: https://github.com/DataDog/dd-trace-rb/issues/1428
3542
+ [#1429]: https://github.com/DataDog/dd-trace-rb/issues/1429
3543
+ [#1430]: https://github.com/DataDog/dd-trace-rb/issues/1430
3544
+ [#1431]: https://github.com/DataDog/dd-trace-rb/issues/1431
3545
+ [#1432]: https://github.com/DataDog/dd-trace-rb/issues/1432
3546
+ [#1435]: https://github.com/DataDog/dd-trace-rb/issues/1435
3547
+ [#1441]: https://github.com/DataDog/dd-trace-rb/issues/1441
3548
+ [#1445]: https://github.com/DataDog/dd-trace-rb/issues/1445
3549
+ [#1447]: https://github.com/DataDog/dd-trace-rb/issues/1447
3550
+ [#1449]: https://github.com/DataDog/dd-trace-rb/issues/1449
3551
+ [#1453]: https://github.com/DataDog/dd-trace-rb/issues/1453
3552
+ [#1455]: https://github.com/DataDog/dd-trace-rb/issues/1455
3553
+ [#1456]: https://github.com/DataDog/dd-trace-rb/issues/1456
3554
+ [#1457]: https://github.com/DataDog/dd-trace-rb/issues/1457
3555
+ [#1461]: https://github.com/DataDog/dd-trace-rb/issues/1461
3556
+ [#1472]: https://github.com/DataDog/dd-trace-rb/issues/1472
3557
+ [#1473]: https://github.com/DataDog/dd-trace-rb/issues/1473
3558
+ [#1475]: https://github.com/DataDog/dd-trace-rb/issues/1475
3559
+ [#1480]: https://github.com/DataDog/dd-trace-rb/issues/1480
3560
+ [#1487]: https://github.com/DataDog/dd-trace-rb/issues/1487
3561
+ [#1489]: https://github.com/DataDog/dd-trace-rb/issues/1489
3562
+ [#1494]: https://github.com/DataDog/dd-trace-rb/issues/1494
3563
+ [#1495]: https://github.com/DataDog/dd-trace-rb/issues/1495
3564
+ [#1497]: https://github.com/DataDog/dd-trace-rb/issues/1497
3565
+ [#1500]: https://github.com/DataDog/dd-trace-rb/issues/1500
3566
+ [#1502]: https://github.com/DataDog/dd-trace-rb/issues/1502
3567
+ [#1503]: https://github.com/DataDog/dd-trace-rb/issues/1503
3568
+ [#1504]: https://github.com/DataDog/dd-trace-rb/issues/1504
3569
+ [#1506]: https://github.com/DataDog/dd-trace-rb/issues/1506
3570
+ [#1507]: https://github.com/DataDog/dd-trace-rb/issues/1507
3571
+ [#1509]: https://github.com/DataDog/dd-trace-rb/issues/1509
3572
+ [#1510]: https://github.com/DataDog/dd-trace-rb/issues/1510
3573
+ [#1511]: https://github.com/DataDog/dd-trace-rb/issues/1511
3574
+ [#1522]: https://github.com/DataDog/dd-trace-rb/issues/1522
3575
+ [#1523]: https://github.com/DataDog/dd-trace-rb/issues/1523
3576
+ [#1524]: https://github.com/DataDog/dd-trace-rb/issues/1524
3577
+ [#1529]: https://github.com/DataDog/dd-trace-rb/issues/1529
3578
+ [#1533]: https://github.com/DataDog/dd-trace-rb/issues/1533
3579
+ [#1534]: https://github.com/DataDog/dd-trace-rb/issues/1534
3580
+ [#1535]: https://github.com/DataDog/dd-trace-rb/issues/1535
3581
+ [#1537]: https://github.com/DataDog/dd-trace-rb/issues/1537
3582
+ [#1543]: https://github.com/DataDog/dd-trace-rb/issues/1543
3583
+ [#1544]: https://github.com/DataDog/dd-trace-rb/issues/1544
3584
+ [#1552]: https://github.com/DataDog/dd-trace-rb/issues/1552
3585
+ [#1555]: https://github.com/DataDog/dd-trace-rb/issues/1555
3586
+ [#1556]: https://github.com/DataDog/dd-trace-rb/issues/1556
3587
+ [#1557]: https://github.com/DataDog/dd-trace-rb/issues/1557
3588
+ [#1560]: https://github.com/DataDog/dd-trace-rb/issues/1560
3589
+ [#1561]: https://github.com/DataDog/dd-trace-rb/issues/1561
3590
+ [#1566]: https://github.com/DataDog/dd-trace-rb/issues/1566
3591
+ [#1570]: https://github.com/DataDog/dd-trace-rb/issues/1570
3592
+ [#1572]: https://github.com/DataDog/dd-trace-rb/issues/1572
3593
+ [#1576]: https://github.com/DataDog/dd-trace-rb/issues/1576
3594
+ [#1583]: https://github.com/DataDog/dd-trace-rb/issues/1583
3595
+ [#1584]: https://github.com/DataDog/dd-trace-rb/issues/1584
3596
+ [#1585]: https://github.com/DataDog/dd-trace-rb/issues/1585
3597
+ [#1586]: https://github.com/DataDog/dd-trace-rb/issues/1586
3598
+ [#1587]: https://github.com/DataDog/dd-trace-rb/issues/1587
3599
+ [#1590]: https://github.com/DataDog/dd-trace-rb/issues/1590
3600
+ [#1592]: https://github.com/DataDog/dd-trace-rb/issues/1592
3601
+ [#1594]: https://github.com/DataDog/dd-trace-rb/issues/1594
3602
+ [#1595]: https://github.com/DataDog/dd-trace-rb/issues/1595
3603
+ [#1601]: https://github.com/DataDog/dd-trace-rb/issues/1601
3604
+ [#1607]: https://github.com/DataDog/dd-trace-rb/issues/1607
3605
+ [#1622]: https://github.com/DataDog/dd-trace-rb/issues/1622
3606
+ [#1623]: https://github.com/DataDog/dd-trace-rb/issues/1623
3607
+ [#1626]: https://github.com/DataDog/dd-trace-rb/issues/1626
3608
+ [#1628]: https://github.com/DataDog/dd-trace-rb/issues/1628
3609
+ [#1629]: https://github.com/DataDog/dd-trace-rb/issues/1629
3610
+ [#1630]: https://github.com/DataDog/dd-trace-rb/issues/1630
3611
+ [#1632]: https://github.com/DataDog/dd-trace-rb/issues/1632
3612
+ [#1636]: https://github.com/DataDog/dd-trace-rb/issues/1636
3613
+ [#1639]: https://github.com/DataDog/dd-trace-rb/issues/1639
3614
+ [#1643]: https://github.com/DataDog/dd-trace-rb/issues/1643
3615
+ [#1644]: https://github.com/DataDog/dd-trace-rb/issues/1644
3616
+ [#1654]: https://github.com/DataDog/dd-trace-rb/issues/1654
3617
+ [#1661]: https://github.com/DataDog/dd-trace-rb/issues/1661
3618
+ [#1662]: https://github.com/DataDog/dd-trace-rb/issues/1662
3619
+ [#1668]: https://github.com/DataDog/dd-trace-rb/issues/1668
3620
+ [#1674]: https://github.com/DataDog/dd-trace-rb/issues/1674
3621
+ [#1680]: https://github.com/DataDog/dd-trace-rb/issues/1680
3622
+ [#1684]: https://github.com/DataDog/dd-trace-rb/issues/1684
3623
+ [#1685]: https://github.com/DataDog/dd-trace-rb/issues/1685
3624
+ [#1687]: https://github.com/DataDog/dd-trace-rb/issues/1687
3625
+ [#1688]: https://github.com/DataDog/dd-trace-rb/issues/1688
3626
+ [#1694]: https://github.com/DataDog/dd-trace-rb/issues/1694
3627
+ [#1695]: https://github.com/DataDog/dd-trace-rb/issues/1695
3628
+ [#1699]: https://github.com/DataDog/dd-trace-rb/issues/1699
3629
+ [#1700]: https://github.com/DataDog/dd-trace-rb/issues/1700
3630
+ [#1702]: https://github.com/DataDog/dd-trace-rb/issues/1702
3631
+ [#1703]: https://github.com/DataDog/dd-trace-rb/issues/1703
3632
+ [#1706]: https://github.com/DataDog/dd-trace-rb/issues/1706
3633
+ [#1709]: https://github.com/DataDog/dd-trace-rb/issues/1709
3634
+ [#1712]: https://github.com/DataDog/dd-trace-rb/issues/1712
3635
+ [#1713]: https://github.com/DataDog/dd-trace-rb/issues/1713
3636
+ [#1714]: https://github.com/DataDog/dd-trace-rb/issues/1714
3637
+ [#1715]: https://github.com/DataDog/dd-trace-rb/issues/1715
3638
+ [#1717]: https://github.com/DataDog/dd-trace-rb/issues/1717
3639
+ [#1718]: https://github.com/DataDog/dd-trace-rb/issues/1718
3640
+ [#1719]: https://github.com/DataDog/dd-trace-rb/issues/1719
3641
+ [#1720]: https://github.com/DataDog/dd-trace-rb/issues/1720
3642
+ [#1721]: https://github.com/DataDog/dd-trace-rb/issues/1721
3643
+ [#1735]: https://github.com/DataDog/dd-trace-rb/issues/1735
3644
+ [#1740]: https://github.com/DataDog/dd-trace-rb/issues/1740
3645
+ [#1743]: https://github.com/DataDog/dd-trace-rb/issues/1743
3646
+ [#1745]: https://github.com/DataDog/dd-trace-rb/issues/1745
3647
+ [#1761]: https://github.com/DataDog/dd-trace-rb/issues/1761
3648
+ [#1762]: https://github.com/DataDog/dd-trace-rb/issues/1762
3649
+ [#1763]: https://github.com/DataDog/dd-trace-rb/issues/1763
3650
+ [#1769]: https://github.com/DataDog/dd-trace-rb/issues/1769
3651
+ [#1770]: https://github.com/DataDog/dd-trace-rb/issues/1770
3652
+ [#1771]: https://github.com/DataDog/dd-trace-rb/issues/1771
3653
+ [#1774]: https://github.com/DataDog/dd-trace-rb/issues/1774
3654
+ [#1776]: https://github.com/DataDog/dd-trace-rb/issues/1776
3655
+ [#1798]: https://github.com/DataDog/dd-trace-rb/issues/1798
3656
+ [#1801]: https://github.com/DataDog/dd-trace-rb/issues/1801
3657
+ [#1807]: https://github.com/DataDog/dd-trace-rb/issues/1807
3658
+ [#1816]: https://github.com/DataDog/dd-trace-rb/issues/1816
3659
+ [#1820]: https://github.com/DataDog/dd-trace-rb/issues/1820
3660
+ [#1829]: https://github.com/DataDog/dd-trace-rb/issues/1829
3661
+ [#1911]: https://github.com/DataDog/dd-trace-rb/issues/1911
3662
+ [#1914]: https://github.com/DataDog/dd-trace-rb/issues/1914
3663
+ [#1917]: https://github.com/DataDog/dd-trace-rb/issues/1917
3664
+ [#1919]: https://github.com/DataDog/dd-trace-rb/issues/1919
3665
+ [#1922]: https://github.com/DataDog/dd-trace-rb/issues/1922
3666
+ [#1927]: https://github.com/DataDog/dd-trace-rb/issues/1927
3667
+ [#1930]: https://github.com/DataDog/dd-trace-rb/issues/1930
3668
+ [#1931]: https://github.com/DataDog/dd-trace-rb/issues/1931
3669
+ [#1932]: https://github.com/DataDog/dd-trace-rb/issues/1932
3670
+ [#1933]: https://github.com/DataDog/dd-trace-rb/issues/1933
3671
+ [#1937]: https://github.com/DataDog/dd-trace-rb/issues/1937
3672
+ [#1938]: https://github.com/DataDog/dd-trace-rb/issues/1938
3673
+ [#1939]: https://github.com/DataDog/dd-trace-rb/issues/1939
3674
+ [#1940]: https://github.com/DataDog/dd-trace-rb/issues/1940
3675
+ [#1942]: https://github.com/DataDog/dd-trace-rb/issues/1942
3676
+ [#1943]: https://github.com/DataDog/dd-trace-rb/issues/1943
3677
+ [#1945]: https://github.com/DataDog/dd-trace-rb/issues/1945
3678
+ [#1948]: https://github.com/DataDog/dd-trace-rb/issues/1948
3679
+ [#1955]: https://github.com/DataDog/dd-trace-rb/issues/1955
3680
+ [#1956]: https://github.com/DataDog/dd-trace-rb/issues/1956
3681
+ [#1958]: https://github.com/DataDog/dd-trace-rb/issues/1958
3682
+ [#1959]: https://github.com/DataDog/dd-trace-rb/issues/1959
3683
+ [#1961]: https://github.com/DataDog/dd-trace-rb/issues/1961
3684
+ [#1964]: https://github.com/DataDog/dd-trace-rb/issues/1964
3685
+ [#1965]: https://github.com/DataDog/dd-trace-rb/issues/1965
3686
+ [#1968]: https://github.com/DataDog/dd-trace-rb/issues/1968
3687
+ [#1970]: https://github.com/DataDog/dd-trace-rb/issues/1970
3688
+ [#1972]: https://github.com/DataDog/dd-trace-rb/issues/1972
3689
+ [#1973]: https://github.com/DataDog/dd-trace-rb/issues/1973
3690
+ [#1974]: https://github.com/DataDog/dd-trace-rb/issues/1974
3691
+ [#1975]: https://github.com/DataDog/dd-trace-rb/issues/1975
3692
+ [#1976]: https://github.com/DataDog/dd-trace-rb/issues/1976
3693
+ [#1980]: https://github.com/DataDog/dd-trace-rb/issues/1980
3694
+ [#1981]: https://github.com/DataDog/dd-trace-rb/issues/1981
3695
+ [#1982]: https://github.com/DataDog/dd-trace-rb/issues/1982
3696
+ [#1983]: https://github.com/DataDog/dd-trace-rb/issues/1983
3697
+ [#1984]: https://github.com/DataDog/dd-trace-rb/issues/1984
3698
+ [#1985]: https://github.com/DataDog/dd-trace-rb/issues/1985
3699
+ [#1989]: https://github.com/DataDog/dd-trace-rb/issues/1989
3700
+ [#1990]: https://github.com/DataDog/dd-trace-rb/issues/1990
3701
+ [#1991]: https://github.com/DataDog/dd-trace-rb/issues/1991
3702
+ [#1992]: https://github.com/DataDog/dd-trace-rb/issues/1992
3703
+ [#1998]: https://github.com/DataDog/dd-trace-rb/issues/1998
3704
+ [#2010]: https://github.com/DataDog/dd-trace-rb/issues/2010
3705
+ [#2011]: https://github.com/DataDog/dd-trace-rb/issues/2011
3706
+ [#2022]: https://github.com/DataDog/dd-trace-rb/issues/2022
3707
+ [#2027]: https://github.com/DataDog/dd-trace-rb/issues/2027
3708
+ [#2028]: https://github.com/DataDog/dd-trace-rb/issues/2028
3709
+ [#2054]: https://github.com/DataDog/dd-trace-rb/issues/2054
3710
+ [#2059]: https://github.com/DataDog/dd-trace-rb/issues/2059
3711
+ [#2061]: https://github.com/DataDog/dd-trace-rb/issues/2061
3712
+ [#2062]: https://github.com/DataDog/dd-trace-rb/issues/2062
3713
+ [#2066]: https://github.com/DataDog/dd-trace-rb/issues/2066
3714
+ [#2069]: https://github.com/DataDog/dd-trace-rb/issues/2069
3715
+ [#2070]: https://github.com/DataDog/dd-trace-rb/issues/2070
3716
+ [#2074]: https://github.com/DataDog/dd-trace-rb/issues/2074
3717
+ [#2076]: https://github.com/DataDog/dd-trace-rb/issues/2076
3718
+ [#2079]: https://github.com/DataDog/dd-trace-rb/issues/2079
3719
+ [#2082]: https://github.com/DataDog/dd-trace-rb/issues/2082
3720
+ [#2096]: https://github.com/DataDog/dd-trace-rb/issues/2096
3721
+ [#2097]: https://github.com/DataDog/dd-trace-rb/issues/2097
3722
+ [#2101]: https://github.com/DataDog/dd-trace-rb/issues/2101
3723
+ [#2110]: https://github.com/DataDog/dd-trace-rb/issues/2110
3724
+ [#2113]: https://github.com/DataDog/dd-trace-rb/issues/2113
3725
+ [#2118]: https://github.com/DataDog/dd-trace-rb/issues/2118
3726
+ [#2125]: https://github.com/DataDog/dd-trace-rb/issues/2125
3727
+ [#2128]: https://github.com/DataDog/dd-trace-rb/issues/2128
3728
+ [#2134]: https://github.com/DataDog/dd-trace-rb/issues/2134
3729
+ [#2138]: https://github.com/DataDog/dd-trace-rb/issues/2138
3730
+ [#2140]: https://github.com/DataDog/dd-trace-rb/issues/2140
3731
+ [#2150]: https://github.com/DataDog/dd-trace-rb/issues/2150
3732
+ [#2153]: https://github.com/DataDog/dd-trace-rb/issues/2153
3733
+ [#2158]: https://github.com/DataDog/dd-trace-rb/issues/2158
3734
+ [#2162]: https://github.com/DataDog/dd-trace-rb/issues/2162
3735
+ [#2163]: https://github.com/DataDog/dd-trace-rb/issues/2163
3736
+ [#2170]: https://github.com/DataDog/dd-trace-rb/issues/2170
3737
+ [#2173]: https://github.com/DataDog/dd-trace-rb/issues/2173
3738
+ [#2174]: https://github.com/DataDog/dd-trace-rb/issues/2174
3739
+ [#2180]: https://github.com/DataDog/dd-trace-rb/issues/2180
3740
+ [#2191]: https://github.com/DataDog/dd-trace-rb/issues/2191
3741
+ [#2200]: https://github.com/DataDog/dd-trace-rb/issues/2200
3742
+ [#2201]: https://github.com/DataDog/dd-trace-rb/issues/2201
3743
+ [#2217]: https://github.com/DataDog/dd-trace-rb/issues/2217
3744
+ [#2219]: https://github.com/DataDog/dd-trace-rb/issues/2219
3745
+ [#2229]: https://github.com/DataDog/dd-trace-rb/issues/2229
3746
+ [#2230]: https://github.com/DataDog/dd-trace-rb/issues/2230
3747
+ [#2248]: https://github.com/DataDog/dd-trace-rb/issues/2248
3748
+ [#2250]: https://github.com/DataDog/dd-trace-rb/issues/2250
3749
+ [#2252]: https://github.com/DataDog/dd-trace-rb/issues/2252
3750
+ [#2257]: https://github.com/DataDog/dd-trace-rb/issues/2257
3751
+ [#2258]: https://github.com/DataDog/dd-trace-rb/issues/2258
3752
+ [#2260]: https://github.com/DataDog/dd-trace-rb/issues/2260
3753
+ [#2265]: https://github.com/DataDog/dd-trace-rb/issues/2265
3754
+ [#2267]: https://github.com/DataDog/dd-trace-rb/issues/2267
3755
+ [#2276]: https://github.com/DataDog/dd-trace-rb/issues/2276
3756
+ [#2279]: https://github.com/DataDog/dd-trace-rb/issues/2279
3757
+ [#2283]: https://github.com/DataDog/dd-trace-rb/issues/2283
3758
+ [#2289]: https://github.com/DataDog/dd-trace-rb/issues/2289
3759
+ [#2292]: https://github.com/DataDog/dd-trace-rb/issues/2292
3760
+ [#2293]: https://github.com/DataDog/dd-trace-rb/issues/2293
3761
+ [#2296]: https://github.com/DataDog/dd-trace-rb/issues/2296
3762
+ [#2302]: https://github.com/DataDog/dd-trace-rb/issues/2302
3763
+ [#2306]: https://github.com/DataDog/dd-trace-rb/issues/2306
3764
+ [#2307]: https://github.com/DataDog/dd-trace-rb/issues/2307
3765
+ [#2310]: https://github.com/DataDog/dd-trace-rb/issues/2310
3766
+ [#2311]: https://github.com/DataDog/dd-trace-rb/issues/2311
3767
+ [#2313]: https://github.com/DataDog/dd-trace-rb/issues/2313
3768
+ [#2316]: https://github.com/DataDog/dd-trace-rb/issues/2316
3769
+ [#2317]: https://github.com/DataDog/dd-trace-rb/issues/2317
3770
+ [#2318]: https://github.com/DataDog/dd-trace-rb/issues/2318
3771
+ [#2319]: https://github.com/DataDog/dd-trace-rb/issues/2319
3772
+ [#2321]: https://github.com/DataDog/dd-trace-rb/issues/2321
3773
+ [#2324]: https://github.com/DataDog/dd-trace-rb/issues/2324
3774
+ [#2328]: https://github.com/DataDog/dd-trace-rb/issues/2328
3775
+ [#2330]: https://github.com/DataDog/dd-trace-rb/issues/2330
3776
+ [#2331]: https://github.com/DataDog/dd-trace-rb/issues/2331
3777
+ [#2335]: https://github.com/DataDog/dd-trace-rb/issues/2335
3778
+ [#2339]: https://github.com/DataDog/dd-trace-rb/issues/2339
3779
+ [#2352]: https://github.com/DataDog/dd-trace-rb/issues/2352
3780
+ [#2362]: https://github.com/DataDog/dd-trace-rb/issues/2362
3781
+ [#2363]: https://github.com/DataDog/dd-trace-rb/issues/2363
3782
+ [#2365]: https://github.com/DataDog/dd-trace-rb/issues/2365
3783
+ [#2367]: https://github.com/DataDog/dd-trace-rb/issues/2367
3784
+ [#2368]: https://github.com/DataDog/dd-trace-rb/issues/2368
3785
+ [#2378]: https://github.com/DataDog/dd-trace-rb/issues/2378
3786
+ [#2382]: https://github.com/DataDog/dd-trace-rb/issues/2382
3787
+ [#2390]: https://github.com/DataDog/dd-trace-rb/issues/2390
3788
+ [#2392]: https://github.com/DataDog/dd-trace-rb/issues/2392
3789
+ [#2393]: https://github.com/DataDog/dd-trace-rb/issues/2393
3790
+ [#2394]: https://github.com/DataDog/dd-trace-rb/issues/2394
3791
+ [#2413]: https://github.com/DataDog/dd-trace-rb/issues/2413
3792
+ [#2419]: https://github.com/DataDog/dd-trace-rb/issues/2419
3793
+ [#2420]: https://github.com/DataDog/dd-trace-rb/issues/2420
3794
+ [#2428]: https://github.com/DataDog/dd-trace-rb/issues/2428
3795
+ [#2435]: https://github.com/DataDog/dd-trace-rb/issues/2435
3796
+ [#2451]: https://github.com/DataDog/dd-trace-rb/issues/2451
3797
+ [#2453]: https://github.com/DataDog/dd-trace-rb/issues/2453
3798
+ [#2454]: https://github.com/DataDog/dd-trace-rb/issues/2454
3799
+ [#2455]: https://github.com/DataDog/dd-trace-rb/issues/2455
3800
+ [#2458]: https://github.com/DataDog/dd-trace-rb/issues/2458
3801
+ [#2459]: https://github.com/DataDog/dd-trace-rb/issues/2459
3802
+ [#2460]: https://github.com/DataDog/dd-trace-rb/issues/2460
3803
+ [#2461]: https://github.com/DataDog/dd-trace-rb/issues/2461
3804
+ [#2463]: https://github.com/DataDog/dd-trace-rb/issues/2463
3805
+ [#2464]: https://github.com/DataDog/dd-trace-rb/issues/2464
3806
+ [#2466]: https://github.com/DataDog/dd-trace-rb/issues/2466
3807
+ [#2469]: https://github.com/DataDog/dd-trace-rb/issues/2469
3808
+ [#2470]: https://github.com/DataDog/dd-trace-rb/issues/2470
3809
+ [#2473]: https://github.com/DataDog/dd-trace-rb/issues/2473
3810
+ [#2485]: https://github.com/DataDog/dd-trace-rb/issues/2485
3811
+ [#2489]: https://github.com/DataDog/dd-trace-rb/issues/2489
3812
+ [#2493]: https://github.com/DataDog/dd-trace-rb/issues/2493
3813
+ [#2496]: https://github.com/DataDog/dd-trace-rb/issues/2496
3814
+ [#2497]: https://github.com/DataDog/dd-trace-rb/issues/2497
3815
+ [#2501]: https://github.com/DataDog/dd-trace-rb/issues/2501
3816
+ [#2504]: https://github.com/DataDog/dd-trace-rb/issues/2504
3817
+ [#2512]: https://github.com/DataDog/dd-trace-rb/issues/2512
3818
+ [#2513]: https://github.com/DataDog/dd-trace-rb/issues/2513
3819
+ [#2522]: https://github.com/DataDog/dd-trace-rb/issues/2522
3820
+ [#2526]: https://github.com/DataDog/dd-trace-rb/issues/2526
3821
+ [#2530]: https://github.com/DataDog/dd-trace-rb/issues/2530
3822
+ [#2531]: https://github.com/DataDog/dd-trace-rb/issues/2531
3823
+ [#2541]: https://github.com/DataDog/dd-trace-rb/issues/2541
3824
+ [#2543]: https://github.com/DataDog/dd-trace-rb/issues/2543
3825
+ [#2557]: https://github.com/DataDog/dd-trace-rb/issues/2557
3826
+ [#2562]: https://github.com/DataDog/dd-trace-rb/issues/2562
3827
+ [#2572]: https://github.com/DataDog/dd-trace-rb/issues/2572
3828
+ [#2573]: https://github.com/DataDog/dd-trace-rb/issues/2573
3829
+ [#2576]: https://github.com/DataDog/dd-trace-rb/issues/2576
3830
+ [#2580]: https://github.com/DataDog/dd-trace-rb/issues/2580
3831
+ [#2586]: https://github.com/DataDog/dd-trace-rb/issues/2586
3832
+ [#2590]: https://github.com/DataDog/dd-trace-rb/issues/2590
3833
+ [#2591]: https://github.com/DataDog/dd-trace-rb/issues/2591
3834
+ [#2592]: https://github.com/DataDog/dd-trace-rb/issues/2592
3835
+ [#2594]: https://github.com/DataDog/dd-trace-rb/issues/2594
3836
+ [#2595]: https://github.com/DataDog/dd-trace-rb/issues/2595
3837
+ [#2598]: https://github.com/DataDog/dd-trace-rb/issues/2598
3838
+ [#2599]: https://github.com/DataDog/dd-trace-rb/issues/2599
3839
+ [#2600]: https://github.com/DataDog/dd-trace-rb/issues/2600
3840
+ [#2601]: https://github.com/DataDog/dd-trace-rb/issues/2601
3841
+ [#2605]: https://github.com/DataDog/dd-trace-rb/issues/2605
3842
+ [#2606]: https://github.com/DataDog/dd-trace-rb/issues/2606
3843
+ [#2607]: https://github.com/DataDog/dd-trace-rb/issues/2607
3844
+ [#2608]: https://github.com/DataDog/dd-trace-rb/issues/2608
3845
+ [#2612]: https://github.com/DataDog/dd-trace-rb/issues/2612
3846
+ [#2613]: https://github.com/DataDog/dd-trace-rb/issues/2613
3847
+ [#2614]: https://github.com/DataDog/dd-trace-rb/issues/2614
3848
+ [#2618]: https://github.com/DataDog/dd-trace-rb/issues/2618
3849
+ [#2619]: https://github.com/DataDog/dd-trace-rb/issues/2619
3850
+ [#2620]: https://github.com/DataDog/dd-trace-rb/issues/2620
3851
+ [#2634]: https://github.com/DataDog/dd-trace-rb/issues/2634
3852
+ [#2635]: https://github.com/DataDog/dd-trace-rb/issues/2635
3853
+ [#2642]: https://github.com/DataDog/dd-trace-rb/issues/2642
3854
+ [#2648]: https://github.com/DataDog/dd-trace-rb/issues/2648
3855
+ [#2649]: https://github.com/DataDog/dd-trace-rb/issues/2649
3856
+ [#2657]: https://github.com/DataDog/dd-trace-rb/issues/2657
3857
+ [#2659]: https://github.com/DataDog/dd-trace-rb/issues/2659
3858
+ [#2662]: https://github.com/DataDog/dd-trace-rb/issues/2662
3859
+ [#2663]: https://github.com/DataDog/dd-trace-rb/issues/2663
3860
+ [#2665]: https://github.com/DataDog/dd-trace-rb/issues/2665
3861
+ [#2668]: https://github.com/DataDog/dd-trace-rb/issues/2668
3862
+ [#2674]: https://github.com/DataDog/dd-trace-rb/issues/2674
3863
+ [#2678]: https://github.com/DataDog/dd-trace-rb/issues/2678
3864
+ [#2679]: https://github.com/DataDog/dd-trace-rb/issues/2679
3865
+ [#2686]: https://github.com/DataDog/dd-trace-rb/issues/2686
3866
+ [#2687]: https://github.com/DataDog/dd-trace-rb/issues/2687
3867
+ [#2688]: https://github.com/DataDog/dd-trace-rb/issues/2688
3868
+ [#2689]: https://github.com/DataDog/dd-trace-rb/issues/2689
3869
+ [#2690]: https://github.com/DataDog/dd-trace-rb/issues/2690
3870
+ [#2695]: https://github.com/DataDog/dd-trace-rb/issues/2695
3871
+ [#2696]: https://github.com/DataDog/dd-trace-rb/issues/2696
3872
+ [#2698]: https://github.com/DataDog/dd-trace-rb/issues/2698
3873
+ [#2701]: https://github.com/DataDog/dd-trace-rb/issues/2701
3874
+ [#2702]: https://github.com/DataDog/dd-trace-rb/issues/2702
3875
+ [#2704]: https://github.com/DataDog/dd-trace-rb/issues/2704
3876
+ [#2705]: https://github.com/DataDog/dd-trace-rb/issues/2705
3877
+ [#2710]: https://github.com/DataDog/dd-trace-rb/issues/2710
3878
+ [#2711]: https://github.com/DataDog/dd-trace-rb/issues/2711
3879
+ [#2720]: https://github.com/DataDog/dd-trace-rb/issues/2720
3880
+ [#2726]: https://github.com/DataDog/dd-trace-rb/issues/2726
3881
+ [#2727]: https://github.com/DataDog/dd-trace-rb/issues/2727
3882
+ [#2730]: https://github.com/DataDog/dd-trace-rb/issues/2730
3883
+ [#2731]: https://github.com/DataDog/dd-trace-rb/issues/2731
3884
+ [#2732]: https://github.com/DataDog/dd-trace-rb/issues/2732
3885
+ [#2733]: https://github.com/DataDog/dd-trace-rb/issues/2733
3886
+ [#2739]: https://github.com/DataDog/dd-trace-rb/issues/2739
3887
+ [#2741]: https://github.com/DataDog/dd-trace-rb/issues/2741
3888
+ [#2748]: https://github.com/DataDog/dd-trace-rb/issues/2748
3889
+ [#2756]: https://github.com/DataDog/dd-trace-rb/issues/2756
3890
+ [#2757]: https://github.com/DataDog/dd-trace-rb/issues/2757
3891
+ [#2760]: https://github.com/DataDog/dd-trace-rb/issues/2760
3892
+ [#2762]: https://github.com/DataDog/dd-trace-rb/issues/2762
3893
+ [#2765]: https://github.com/DataDog/dd-trace-rb/issues/2765
3894
+ [#2769]: https://github.com/DataDog/dd-trace-rb/issues/2769
3895
+ [#2770]: https://github.com/DataDog/dd-trace-rb/issues/2770
3896
+ [#2771]: https://github.com/DataDog/dd-trace-rb/issues/2771
3897
+ [#2773]: https://github.com/DataDog/dd-trace-rb/issues/2773
3898
+ [#2778]: https://github.com/DataDog/dd-trace-rb/issues/2778
3899
+ [#2788]: https://github.com/DataDog/dd-trace-rb/issues/2788
3900
+ [#2789]: https://github.com/DataDog/dd-trace-rb/issues/2789
3901
+ [#2794]: https://github.com/DataDog/dd-trace-rb/issues/2794
3902
+ [#2805]: https://github.com/DataDog/dd-trace-rb/issues/2805
3903
+ [#2806]: https://github.com/DataDog/dd-trace-rb/issues/2806
3904
+ [#2810]: https://github.com/DataDog/dd-trace-rb/issues/2810
3905
+ [#2814]: https://github.com/DataDog/dd-trace-rb/issues/2814
3906
+ [#2815]: https://github.com/DataDog/dd-trace-rb/issues/2815
3907
+ [#2822]: https://github.com/DataDog/dd-trace-rb/issues/2822
3908
+ [#2824]: https://github.com/DataDog/dd-trace-rb/issues/2824
3909
+ [#2826]: https://github.com/DataDog/dd-trace-rb/issues/2826
3910
+ [#2829]: https://github.com/DataDog/dd-trace-rb/issues/2829
3911
+ [#2836]: https://github.com/DataDog/dd-trace-rb/issues/2836
3912
+ [#2840]: https://github.com/DataDog/dd-trace-rb/issues/2840
3913
+ [#2848]: https://github.com/DataDog/dd-trace-rb/issues/2848
3914
+ [#2853]: https://github.com/DataDog/dd-trace-rb/issues/2853
3915
+ [#2854]: https://github.com/DataDog/dd-trace-rb/issues/2854
3916
+ [#2855]: https://github.com/DataDog/dd-trace-rb/issues/2855
3917
+ [#2856]: https://github.com/DataDog/dd-trace-rb/issues/2856
3918
+ [#2858]: https://github.com/DataDog/dd-trace-rb/issues/2858
3919
+ [#2860]: https://github.com/DataDog/dd-trace-rb/issues/2860
3920
+ [#2864]: https://github.com/DataDog/dd-trace-rb/issues/2864
3921
+ [#2866]: https://github.com/DataDog/dd-trace-rb/issues/2866
3922
+ [#2867]: https://github.com/DataDog/dd-trace-rb/issues/2867
3923
+ [#2869]: https://github.com/DataDog/dd-trace-rb/issues/2869
3924
+ [#2873]: https://github.com/DataDog/dd-trace-rb/issues/2873
3925
+ [#2874]: https://github.com/DataDog/dd-trace-rb/issues/2874
3926
+ [#2875]: https://github.com/DataDog/dd-trace-rb/issues/2875
3927
+ [#2877]: https://github.com/DataDog/dd-trace-rb/issues/2877
3928
+ [#2879]: https://github.com/DataDog/dd-trace-rb/issues/2879
3929
+ [#2882]: https://github.com/DataDog/dd-trace-rb/issues/2882
3930
+ [#2883]: https://github.com/DataDog/dd-trace-rb/issues/2883
3931
+ [#2890]: https://github.com/DataDog/dd-trace-rb/issues/2890
3932
+ [#2891]: https://github.com/DataDog/dd-trace-rb/issues/2891
3933
+ [#2895]: https://github.com/DataDog/dd-trace-rb/issues/2895
3934
+ [#2896]: https://github.com/DataDog/dd-trace-rb/issues/2896
3935
+ [#2898]: https://github.com/DataDog/dd-trace-rb/issues/2898
3936
+ [#2900]: https://github.com/DataDog/dd-trace-rb/issues/2900
3937
+ [#2903]: https://github.com/DataDog/dd-trace-rb/issues/2903
3938
+ [#2913]: https://github.com/DataDog/dd-trace-rb/issues/2913
3939
+ [#2915]: https://github.com/DataDog/dd-trace-rb/issues/2915
3940
+ [#2926]: https://github.com/DataDog/dd-trace-rb/issues/2926
3941
+ [#2928]: https://github.com/DataDog/dd-trace-rb/issues/2928
3942
+ [#2931]: https://github.com/DataDog/dd-trace-rb/issues/2931
3943
+ [#2932]: https://github.com/DataDog/dd-trace-rb/issues/2932
3944
+ [#2935]: https://github.com/DataDog/dd-trace-rb/issues/2935
3945
+ [#2939]: https://github.com/DataDog/dd-trace-rb/issues/2939
3946
+ [#2940]: https://github.com/DataDog/dd-trace-rb/issues/2940
3947
+ [#2941]: https://github.com/DataDog/dd-trace-rb/issues/2941
3948
+ [#2946]: https://github.com/DataDog/dd-trace-rb/issues/2946
3949
+ [#2948]: https://github.com/DataDog/dd-trace-rb/issues/2948
3950
+ [#2950]: https://github.com/DataDog/dd-trace-rb/issues/2950
3951
+ [#2952]: https://github.com/DataDog/dd-trace-rb/issues/2952
3952
+ [#2956]: https://github.com/DataDog/dd-trace-rb/issues/2956
3953
+ [#2957]: https://github.com/DataDog/dd-trace-rb/issues/2957
3954
+ [#2959]: https://github.com/DataDog/dd-trace-rb/issues/2959
3955
+ [#2960]: https://github.com/DataDog/dd-trace-rb/issues/2960
3956
+ [#2961]: https://github.com/DataDog/dd-trace-rb/issues/2961
3957
+ [#2962]: https://github.com/DataDog/dd-trace-rb/issues/2962
3958
+ [#2967]: https://github.com/DataDog/dd-trace-rb/issues/2967
3959
+ [#2968]: https://github.com/DataDog/dd-trace-rb/issues/2968
3960
+ [#2971]: https://github.com/DataDog/dd-trace-rb/issues/2971
3961
+ [#2972]: https://github.com/DataDog/dd-trace-rb/issues/2972
3962
+ [#2973]: https://github.com/DataDog/dd-trace-rb/issues/2973
3963
+ [#2974]: https://github.com/DataDog/dd-trace-rb/issues/2974
3964
+ [#2975]: https://github.com/DataDog/dd-trace-rb/issues/2975
3965
+ [#2977]: https://github.com/DataDog/dd-trace-rb/issues/2977
3966
+ [#2978]: https://github.com/DataDog/dd-trace-rb/issues/2978
3967
+ [#2982]: https://github.com/DataDog/dd-trace-rb/issues/2982
3968
+ [#2983]: https://github.com/DataDog/dd-trace-rb/issues/2983
3969
+ [#2988]: https://github.com/DataDog/dd-trace-rb/issues/2988
3970
+ [#2992]: https://github.com/DataDog/dd-trace-rb/issues/2992
3971
+ [#2993]: https://github.com/DataDog/dd-trace-rb/issues/2993
3972
+ [#2994]: https://github.com/DataDog/dd-trace-rb/issues/2994
3973
+ [#2999]: https://github.com/DataDog/dd-trace-rb/issues/2999
3974
+ [#3005]: https://github.com/DataDog/dd-trace-rb/issues/3005
3975
+ [#3007]: https://github.com/DataDog/dd-trace-rb/issues/3007
3976
+ [#3011]: https://github.com/DataDog/dd-trace-rb/issues/3011
3977
+ [#3018]: https://github.com/DataDog/dd-trace-rb/issues/3018
3978
+ [#3019]: https://github.com/DataDog/dd-trace-rb/issues/3019
3979
+ [#3020]: https://github.com/DataDog/dd-trace-rb/issues/3020
3980
+ [#3022]: https://github.com/DataDog/dd-trace-rb/issues/3022
3981
+ [#3025]: https://github.com/DataDog/dd-trace-rb/issues/3025
3982
+ [#3033]: https://github.com/DataDog/dd-trace-rb/issues/3033
3983
+ [#3037]: https://github.com/DataDog/dd-trace-rb/issues/3037
3984
+ [#3038]: https://github.com/DataDog/dd-trace-rb/issues/3038
3985
+ [#3039]: https://github.com/DataDog/dd-trace-rb/issues/3039
3986
+ [#3041]: https://github.com/DataDog/dd-trace-rb/issues/3041
3987
+ [#3045]: https://github.com/DataDog/dd-trace-rb/issues/3045
3988
+ [#3051]: https://github.com/DataDog/dd-trace-rb/issues/3051
3989
+ [#3054]: https://github.com/DataDog/dd-trace-rb/issues/3054
3990
+ [#3056]: https://github.com/DataDog/dd-trace-rb/issues/3056
3991
+ [#3057]: https://github.com/DataDog/dd-trace-rb/issues/3057
3992
+ [#3060]: https://github.com/DataDog/dd-trace-rb/issues/3060
3993
+ [#3061]: https://github.com/DataDog/dd-trace-rb/issues/3061
3994
+ [#3062]: https://github.com/DataDog/dd-trace-rb/issues/3062
3995
+ [#3065]: https://github.com/DataDog/dd-trace-rb/issues/3065
3996
+ [#3070]: https://github.com/DataDog/dd-trace-rb/issues/3070
3997
+ [#3074]: https://github.com/DataDog/dd-trace-rb/issues/3074
3998
+ [#3080]: https://github.com/DataDog/dd-trace-rb/issues/3080
3999
+ [#3085]: https://github.com/DataDog/dd-trace-rb/issues/3085
4000
+ [#3086]: https://github.com/DataDog/dd-trace-rb/issues/3086
4001
+ [#3087]: https://github.com/DataDog/dd-trace-rb/issues/3087
4002
+ [#3091]: https://github.com/DataDog/dd-trace-rb/issues/3091
4003
+ [#3095]: https://github.com/DataDog/dd-trace-rb/issues/3095
4004
+ [#3096]: https://github.com/DataDog/dd-trace-rb/issues/3096
4005
+ [#3099]: https://github.com/DataDog/dd-trace-rb/issues/3099
4006
+ [#3100]: https://github.com/DataDog/dd-trace-rb/issues/3100
4007
+ [#3102]: https://github.com/DataDog/dd-trace-rb/issues/3102
4008
+ [#3103]: https://github.com/DataDog/dd-trace-rb/issues/3103
4009
+ [#3104]: https://github.com/DataDog/dd-trace-rb/issues/3104
4010
+ [#3106]: https://github.com/DataDog/dd-trace-rb/issues/3106
4011
+ [#3107]: https://github.com/DataDog/dd-trace-rb/issues/3107
4012
+ [#3109]: https://github.com/DataDog/dd-trace-rb/issues/3109
4013
+ [#3127]: https://github.com/DataDog/dd-trace-rb/issues/3127
4014
+ [#3128]: https://github.com/DataDog/dd-trace-rb/issues/3128
4015
+ [#3131]: https://github.com/DataDog/dd-trace-rb/issues/3131
4016
+ [#3132]: https://github.com/DataDog/dd-trace-rb/issues/3132
4017
+ [#3139]: https://github.com/DataDog/dd-trace-rb/issues/3139
4018
+ [#3140]: https://github.com/DataDog/dd-trace-rb/issues/3140
4019
+ [#3145]: https://github.com/DataDog/dd-trace-rb/issues/3145
4020
+ [#3148]: https://github.com/DataDog/dd-trace-rb/issues/3148
4021
+ [#3150]: https://github.com/DataDog/dd-trace-rb/issues/3150
4022
+ [#3152]: https://github.com/DataDog/dd-trace-rb/issues/3152
4023
+ [#3153]: https://github.com/DataDog/dd-trace-rb/issues/3153
4024
+ [#3158]: https://github.com/DataDog/dd-trace-rb/issues/3158
4025
+ [#3162]: https://github.com/DataDog/dd-trace-rb/issues/3162
4026
+ [#3163]: https://github.com/DataDog/dd-trace-rb/issues/3163
4027
+ [#3166]: https://github.com/DataDog/dd-trace-rb/issues/3166
4028
+ [#3167]: https://github.com/DataDog/dd-trace-rb/issues/3167
4029
+ [#3169]: https://github.com/DataDog/dd-trace-rb/issues/3169
4030
+ [#3171]: https://github.com/DataDog/dd-trace-rb/issues/3171
4031
+ [#3172]: https://github.com/DataDog/dd-trace-rb/issues/3172
4032
+ [#3176]: https://github.com/DataDog/dd-trace-rb/issues/3176
4033
+ [#3177]: https://github.com/DataDog/dd-trace-rb/issues/3177
4034
+ [#3183]: https://github.com/DataDog/dd-trace-rb/issues/3183
4035
+ [#3186]: https://github.com/DataDog/dd-trace-rb/issues/3186
4036
+ [#3188]: https://github.com/DataDog/dd-trace-rb/issues/3188
4037
+ [#3189]: https://github.com/DataDog/dd-trace-rb/issues/3189
4038
+ [#3190]: https://github.com/DataDog/dd-trace-rb/issues/3190
4039
+ [#3197]: https://github.com/DataDog/dd-trace-rb/issues/3197
4040
+ [#3204]: https://github.com/DataDog/dd-trace-rb/issues/3204
4041
+ [#3206]: https://github.com/DataDog/dd-trace-rb/issues/3206
4042
+ [#3207]: https://github.com/DataDog/dd-trace-rb/issues/3207
4043
+ [#3223]: https://github.com/DataDog/dd-trace-rb/issues/3223
4044
+ [#3229]: https://github.com/DataDog/dd-trace-rb/issues/3229
4045
+ [#3234]: https://github.com/DataDog/dd-trace-rb/issues/3234
4046
+ [#3235]: https://github.com/DataDog/dd-trace-rb/issues/3235
4047
+ [#3240]: https://github.com/DataDog/dd-trace-rb/issues/3240
4048
+ [#3242]: https://github.com/DataDog/dd-trace-rb/issues/3242
4049
+ [#3248]: https://github.com/DataDog/dd-trace-rb/issues/3248
4050
+ [#3252]: https://github.com/DataDog/dd-trace-rb/issues/3252
4051
+ [#3255]: https://github.com/DataDog/dd-trace-rb/issues/3255
4052
+ [#3259]: https://github.com/DataDog/dd-trace-rb/issues/3259
4053
+ [#3262]: https://github.com/DataDog/dd-trace-rb/issues/3262
4054
+ [#3266]: https://github.com/DataDog/dd-trace-rb/issues/3266
4055
+ [#3267]: https://github.com/DataDog/dd-trace-rb/issues/3267
4056
+ [#3270]: https://github.com/DataDog/dd-trace-rb/issues/3270
4057
+ [#3271]: https://github.com/DataDog/dd-trace-rb/issues/3271
4058
+ [#3273]: https://github.com/DataDog/dd-trace-rb/issues/3273
4059
+ [#3274]: https://github.com/DataDog/dd-trace-rb/issues/3274
4060
+ [#3278]: https://github.com/DataDog/dd-trace-rb/issues/3278
4061
+ [#3279]: https://github.com/DataDog/dd-trace-rb/issues/3279
4062
+ [#3280]: https://github.com/DataDog/dd-trace-rb/issues/3280
4063
+ [#3281]: https://github.com/DataDog/dd-trace-rb/issues/3281
4064
+ [#3284]: https://github.com/DataDog/dd-trace-rb/issues/3284
4065
+ [#3286]: https://github.com/DataDog/dd-trace-rb/issues/3286
4066
+ [#3287]: https://github.com/DataDog/dd-trace-rb/issues/3287
4067
+ [#3289]: https://github.com/DataDog/dd-trace-rb/issues/3289
4068
+ [#3303]: https://github.com/DataDog/dd-trace-rb/issues/3303
4069
+ [#3307]: https://github.com/DataDog/dd-trace-rb/issues/3307
4070
+ [#3308]: https://github.com/DataDog/dd-trace-rb/issues/3308
4071
+ [#3310]: https://github.com/DataDog/dd-trace-rb/issues/3310
4072
+ [#3313]: https://github.com/DataDog/dd-trace-rb/issues/3313
4073
+ [#3315]: https://github.com/DataDog/dd-trace-rb/issues/3315
4074
+ [#3316]: https://github.com/DataDog/dd-trace-rb/issues/3316
4075
+ [#3317]: https://github.com/DataDog/dd-trace-rb/issues/3317
4076
+ [#3320]: https://github.com/DataDog/dd-trace-rb/issues/3320
4077
+ [#3328]: https://github.com/DataDog/dd-trace-rb/issues/3328
4078
+ [#3329]: https://github.com/DataDog/dd-trace-rb/issues/3329
4079
+ [#3333]: https://github.com/DataDog/dd-trace-rb/issues/3333
4080
+ [#3345]: https://github.com/DataDog/dd-trace-rb/issues/3345
4081
+ [#3349]: https://github.com/DataDog/dd-trace-rb/issues/3349
4082
+ [#3352]: https://github.com/DataDog/dd-trace-rb/issues/3352
4083
+ [#3354]: https://github.com/DataDog/dd-trace-rb/issues/3354
4084
+ [#3356]: https://github.com/DataDog/dd-trace-rb/issues/3356
4085
+ [#3357]: https://github.com/DataDog/dd-trace-rb/issues/3357
4086
+ [#3360]: https://github.com/DataDog/dd-trace-rb/issues/3360
4087
+ [#3361]: https://github.com/DataDog/dd-trace-rb/issues/3361
4088
+ [#3362]: https://github.com/DataDog/dd-trace-rb/issues/3362
4089
+ [#3365]: https://github.com/DataDog/dd-trace-rb/issues/3365
4090
+ [#3366]: https://github.com/DataDog/dd-trace-rb/issues/3366
4091
+ [#3373]: https://github.com/DataDog/dd-trace-rb/issues/3373
4092
+ [#3374]: https://github.com/DataDog/dd-trace-rb/issues/3374
4093
+ [#3386]: https://github.com/DataDog/dd-trace-rb/issues/3386
4094
+ [#3395]: https://github.com/DataDog/dd-trace-rb/issues/3395
4095
+ [#3400]: https://github.com/DataDog/dd-trace-rb/issues/3400
4096
+ [#3408]: https://github.com/DataDog/dd-trace-rb/issues/3408
4097
+ [#3420]: https://github.com/DataDog/dd-trace-rb/issues/3420
4098
+ [#3426]: https://github.com/DataDog/dd-trace-rb/issues/3426
4099
+ [#3427]: https://github.com/DataDog/dd-trace-rb/issues/3427
4100
+ [#3428]: https://github.com/DataDog/dd-trace-rb/issues/3428
4101
+ [#3431]: https://github.com/DataDog/dd-trace-rb/issues/3431
4102
+ [#3434]: https://github.com/DataDog/dd-trace-rb/issues/3434
4103
+ [#3438]: https://github.com/DataDog/dd-trace-rb/issues/3438
4104
+ [#3439]: https://github.com/DataDog/dd-trace-rb/issues/3439
4105
+ [#3440]: https://github.com/DataDog/dd-trace-rb/issues/3440
4106
+ [#3455]: https://github.com/DataDog/dd-trace-rb/issues/3455
4107
+ [#3463]: https://github.com/DataDog/dd-trace-rb/issues/3463
4108
+ [#3466]: https://github.com/DataDog/dd-trace-rb/issues/3466
4109
+ [#3468]: https://github.com/DataDog/dd-trace-rb/issues/3468
4110
+ [#3473]: https://github.com/DataDog/dd-trace-rb/issues/3473
4111
+ [#3491]: https://github.com/DataDog/dd-trace-rb/issues/3491
4112
+ [#3495]: https://github.com/DataDog/dd-trace-rb/issues/3495
4113
+ [#3501]: https://github.com/DataDog/dd-trace-rb/issues/3501
4114
+ [#3502]: https://github.com/DataDog/dd-trace-rb/issues/3502
4115
+ [#3503]: https://github.com/DataDog/dd-trace-rb/issues/3503
4116
+ [#3511]: https://github.com/DataDog/dd-trace-rb/issues/3511
4117
+ [#3518]: https://github.com/DataDog/dd-trace-rb/issues/3518
4118
+ [#3519]: https://github.com/DataDog/dd-trace-rb/issues/3519
4119
+ [#3520]: https://github.com/DataDog/dd-trace-rb/issues/3520
4120
+ [#3523]: https://github.com/DataDog/dd-trace-rb/issues/3523
4121
+ [#3528]: https://github.com/DataDog/dd-trace-rb/issues/3528
4122
+ [#3531]: https://github.com/DataDog/dd-trace-rb/issues/3531
4123
+ [#3535]: https://github.com/DataDog/dd-trace-rb/issues/3535
4124
+ [#3536]: https://github.com/DataDog/dd-trace-rb/issues/3536
4125
+ [#3539]: https://github.com/DataDog/dd-trace-rb/issues/3539
4126
+ [#3551]: https://github.com/DataDog/dd-trace-rb/issues/3551
4127
+ [#3558]: https://github.com/DataDog/dd-trace-rb/issues/3558
4128
+ [#3565]: https://github.com/DataDog/dd-trace-rb/issues/3565
4129
+ [#3573]: https://github.com/DataDog/dd-trace-rb/issues/3573
4130
+ [#3582]: https://github.com/DataDog/dd-trace-rb/issues/3582
4131
+ [#3585]: https://github.com/DataDog/dd-trace-rb/issues/3585
4132
+ [#3587]: https://github.com/DataDog/dd-trace-rb/issues/3587
4133
+ [#3618]: https://github.com/DataDog/dd-trace-rb/issues/3618
4134
+ [#3619]: https://github.com/DataDog/dd-trace-rb/issues/3619
4135
+ [#3623]: https://github.com/DataDog/dd-trace-rb/issues/3623
4136
+ [#3650]: https://github.com/DataDog/dd-trace-rb/issues/3650
4137
+ [@AdrianLC]: https://github.com/AdrianLC
4138
+ [@Azure7111]: https://github.com/Azure7111
4139
+ [@BabyGroot]: https://github.com/BabyGroot
4140
+ [@DocX]: https://github.com/DocX
4141
+ [@Drowze]: https://github.com/Drowze
4142
+ [@EpiFouloux]: https://github.com/EpiFouloux
4143
+ [@EvNomad]: https://github.com/EvNomad
4144
+ [@HeyNonster]: https://github.com/HeyNonster
4145
+ [@HoneyryderChuck]: https://github.com/HoneyryderChuck
4146
+ [@JamesHarker]: https://github.com/JamesHarker
4147
+ [@Jared-Prime]: https://github.com/Jared-Prime
4148
+ [@Joas1988]: https://github.com/Joas1988
4149
+ [@JustSnow]: https://github.com/JustSnow
4150
+ [@KJTsanaktsidis]: https://github.com/KJTsanaktsidis
4151
+ [@KieranP]: https://github.com/KieranP
4152
+ [@MMartyn]: https://github.com/MMartyn
4153
+ [@NobodysNightmare]: https://github.com/NobodysNightmare
4154
+ [@Redapted]: https://github.com/Redapted
4155
+ [@Sticksword]: https://github.com/Sticksword
4156
+ [@Supy]: https://github.com/Supy
4157
+ [@Yurokle]: https://github.com/Yurokle
4158
+ [@ZimbiX]: https://github.com/ZimbiX
4159
+ [@agirlnamedsophia]: https://github.com/agirlnamedsophia
4160
+ [@agrobbin]: https://github.com/agrobbin
4161
+ [@ahammel]: https://github.com/ahammel
4162
+ [@ahorner]: https://github.com/ahorner
4163
+ [@al-kudryavtsev]: https://github.com/al-kudryavtsev
4164
+ [@albertvaka]: https://github.com/albertvaka
4165
+ [@alksl]: https://github.com/alksl
4166
+ [@alloy]: https://github.com/alloy
4167
+ [@aurelian]: https://github.com/aurelian
4168
+ [@awendt]: https://github.com/awendt
4169
+ [@bartekbsh]: https://github.com/bartekbsh
4170
+ [@benhutton]: https://github.com/benhutton
4171
+ [@bensheldon]: https://github.com/bensheldon
4172
+ [@bheemreddy181]: https://github.com/bheemreddy181
4173
+ [@blaines]: https://github.com/blaines
4174
+ [@brafales]: https://github.com/brafales
4175
+ [@bravehager]: https://github.com/bravehager
4176
+ [@bzf]: https://github.com/bzf
4177
+ [@callumj]: https://github.com/callumj
4178
+ [@caramcc]: https://github.com/caramcc
4179
+ [@carlallen]: https://github.com/carlallen
4180
+ [@chychkan]: https://github.com/chychkan
4181
+ [@cjford]: https://github.com/cjford
4182
+ [@ck3g]: https://github.com/ck3g
4183
+ [@components]: https://github.com/components
4184
+ [@coneill-enhance]: https://github.com/coneill-enhance
4185
+ [@cswatt]: https://github.com/cswatt
4186
+ [@cwoodcox]: https://github.com/cwoodcox
4187
+ [@danhodge]: https://github.com/danhodge
4188
+ [@dasch]: https://github.com/dasch
4189
+ [@dim]: https://github.com/dim
4190
+ [@dirk]: https://github.com/dirk
4191
+ [@djmb]: https://github.com/djmb
4192
+ [@dorner]: https://github.com/dorner
4193
+ [@drcapulet]: https://github.com/drcapulet
4194
+ [@dudo]: https://github.com/dudo
4195
+ [@e1senh0rn]: https://github.com/e1senh0rn
4196
+ [@ecdemis123]: https://github.com/ecdemis123
4197
+ [@elliterate]: https://github.com/elliterate
4198
+ [@elyalvarado]: https://github.com/elyalvarado
4199
+ [@ericmustin]: https://github.com/ericmustin
4200
+ [@erict-square]: https://github.com/erict-square
4201
+ [@errriclee]: https://github.com/errriclee
4202
+ [@evan-waters]: https://github.com/evan-waters
4203
+ [@fledman]: https://github.com/fledman
4204
+ [@frsantos]: https://github.com/frsantos
4205
+ [@fteem]: https://github.com/fteem
4206
+ [@gaborszakacs]: https://github.com/gaborszakacs
4207
+ [@giancarlocosta]: https://github.com/giancarlocosta
4208
+ [@gingerlime]: https://github.com/gingerlime
4209
+ [@gkampjes]: https://github.com/gkampjes
4210
+ [@gottfrois]: https://github.com/gottfrois
4211
+ [@guizmaii]: https://github.com/guizmaii
4212
+ [@hatstand]: https://github.com/hatstand
4213
+ [@hawknewton]: https://github.com/hawknewton
4214
+ [@henrich-m]: https://github.com/henrich-m
4215
+ [@hs-bguven]: https://github.com/hs-bguven
4216
+ [@illdelph]: https://github.com/illdelph
4217
+ [@ioquatix]: https://github.com/ioquatix
4218
+ [@ixti]: https://github.com/ixti
4219
+ [@jamiehodge]: https://github.com/jamiehodge
4220
+ [@janz93]: https://github.com/janz93
4221
+ [@jeffjo]: https://github.com/jeffjo
4222
+ [@jennchenn]: https://github.com/jennchenn
4223
+ [@jfrancoist]: https://github.com/jfrancoist
4224
+ [@joeyAghion]: https://github.com/joeyAghion
4225
+ [@jpaulgs]: https://github.com/jpaulgs
4226
+ [@justinhoward]: https://github.com/justinhoward
4227
+ [@jvalanen]: https://github.com/jvalanen
4228
+ [@kelvin-acosta]: https://github.com/kelvin-acosta
4229
+ [@kexoth]: https://github.com/kexoth
4230
+ [@kissrobber]: https://github.com/kissrobber
4231
+ [@kitop]: https://github.com/kitop
4232
+ [@letiesperon]: https://github.com/letiesperon
4233
+ [@link04]: https://github.com/link04
4234
+ [@lloeki]: https://github.com/lloeki
4235
+ [@mantrala]: https://github.com/mantrala
4236
+ [@marcotc]: https://github.com/marcotc
4237
+ [@marocchino]: https://github.com/marocchino
4238
+ [@masato-hi]: https://github.com/masato-hi
4239
+ [@matchbookmac]: https://github.com/matchbookmac
4240
+ [@mberlanda]: https://github.com/mberlanda
4241
+ [@mdehoog]: https://github.com/mdehoog
4242
+ [@mdross95]: https://github.com/mdross95
4243
+ [@michaelkl]: https://github.com/michaelkl
4244
+ [@miketheman]: https://github.com/miketheman
4245
+ [@mriddle]: https://github.com/mriddle
4246
+ [@mscrivo]: https://github.com/mscrivo
4247
+ [@mstruve]: https://github.com/mstruve
4248
+ [@mustela]: https://github.com/mustela
4249
+ [@nic-lan]: https://github.com/nic-lan
4250
+ [@noma4i]: https://github.com/noma4i
4251
+ [@norbertnytko]: https://github.com/norbertnytko
4252
+ [@orekyuu]: https://github.com/orekyuu
4253
+ [@palin]: https://github.com/palin
4254
+ [@pj0tr]: https://github.com/pj0tr
4255
+ [@psycholein]: https://github.com/psycholein
4256
+ [@pzaich]: https://github.com/pzaich
4257
+ [@rahul342]: https://github.com/rahul342
4258
+ [@randy-girard]: https://github.com/randy-girard
4259
+ [@renchap]: https://github.com/renchap
4260
+ [@ricbartm]: https://github.com/ricbartm
4261
+ [@roccoblues]: https://github.com/roccoblues
4262
+ [@rqz13]: https://github.com/rqz13
4263
+ [@saturnflyer]: https://github.com/saturnflyer
4264
+ [@sco11morgan]: https://github.com/sco11morgan
4265
+ [@senny]: https://github.com/senny
4266
+ [@seuros]: https://github.com/seuros
4267
+ [@shayonj]: https://github.com/shayonj
4268
+ [@sinsoku]: https://github.com/sinsoku
4269
+ [@skcc321]: https://github.com/skcc321
4270
+ [@soulcutter]: https://github.com/soulcutter
4271
+ [@sponomarev]: https://github.com/sponomarev
4272
+ [@stefanahman]: https://github.com/stefanahman
4273
+ [@steveh]: https://github.com/steveh
4274
+ [@stormsilver]: https://github.com/stormsilver
4275
+ [@sullimander]: https://github.com/sullimander
4276
+ [@tjgrathwell]: https://github.com/tjgrathwell
4277
+ [@tjwp]: https://github.com/tjwp
4278
+ [@tomasv]: https://github.com/tomasv
4279
+ [@tomgi]: https://github.com/tomgi
4280
+ [@tonypinder]: https://github.com/tonypinder
4281
+ [@twe4ked]: https://github.com/twe4ked
4282
+ [@undergroundwebdesigns]: https://github.com/undergroundwebdesigns
4283
+ [@vramaiah]: https://github.com/vramaiah
4284
+ [@walterking]: https://github.com/walterking
4285
+ [@y-yagi]: https://github.com/y-yagi
4286
+ [@yujideveloper]: https://github.com/yujideveloper
4287
+ [@yukimurasawa]: https://github.com/yukimurasawa
4288
+ [@zachmccormick]: https://github.com/zachmccormick