ddtrace 1.12.1 → 1.23.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (509) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +613 -9
  3. data/LICENSE-3rdparty.csv +1 -1
  4. data/bin/ddprofrb +15 -0
  5. data/bin/ddtracerb +3 -1
  6. data/ext/{ddtrace_profiling_loader/ddtrace_profiling_loader.c → datadog_profiling_loader/datadog_profiling_loader.c} +2 -2
  7. data/ext/{ddtrace_profiling_loader → datadog_profiling_loader}/extconf.rb +3 -3
  8. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/NativeExtensionDesign.md +3 -5
  9. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/clock_id.h +0 -3
  10. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/clock_id_from_pthread.c +3 -22
  11. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/clock_id_noop.c +0 -1
  12. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_cpu_and_wall_time_worker.c +338 -108
  13. data/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.c +422 -0
  14. data/ext/datadog_profiling_native_extension/collectors_discrete_dynamic_sampler.h +101 -0
  15. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_dynamic_sampling_rate.c +22 -14
  16. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_dynamic_sampling_rate.h +4 -0
  17. data/ext/datadog_profiling_native_extension/collectors_gc_profiling_helper.c +156 -0
  18. data/ext/datadog_profiling_native_extension/collectors_gc_profiling_helper.h +5 -0
  19. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_idle_sampling_helper.c +3 -0
  20. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_stack.c +111 -118
  21. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_stack.h +11 -4
  22. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_thread_context.c +545 -144
  23. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_thread_context.h +3 -2
  24. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/extconf.rb +68 -17
  25. data/ext/datadog_profiling_native_extension/heap_recorder.c +1047 -0
  26. data/ext/datadog_profiling_native_extension/heap_recorder.h +166 -0
  27. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/helpers.h +6 -0
  28. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/http_transport.c +60 -32
  29. data/ext/datadog_profiling_native_extension/libdatadog_helpers.c +62 -0
  30. data/ext/datadog_profiling_native_extension/libdatadog_helpers.h +42 -0
  31. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/native_extension_helpers.rb +50 -4
  32. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/private_vm_api_access.c +155 -32
  33. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/private_vm_api_access.h +16 -0
  34. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/profiling.c +19 -3
  35. data/ext/datadog_profiling_native_extension/ruby_helpers.c +267 -0
  36. data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/ruby_helpers.h +33 -0
  37. data/ext/datadog_profiling_native_extension/stack_recorder.c +1040 -0
  38. data/ext/datadog_profiling_native_extension/stack_recorder.h +27 -0
  39. data/ext/datadog_profiling_native_extension/time_helpers.c +53 -0
  40. data/ext/datadog_profiling_native_extension/time_helpers.h +26 -0
  41. data/lib/datadog/appsec/assets/waf_rules/processors.json +92 -0
  42. data/lib/datadog/appsec/assets/waf_rules/recommended.json +698 -75
  43. data/lib/datadog/appsec/assets/waf_rules/scanners.json +114 -0
  44. data/lib/datadog/appsec/assets/waf_rules/strict.json +98 -8
  45. data/lib/datadog/appsec/assets.rb +8 -0
  46. data/lib/datadog/appsec/component.rb +21 -2
  47. data/lib/datadog/appsec/configuration/settings.rb +167 -189
  48. data/lib/datadog/appsec/configuration.rb +0 -79
  49. data/lib/datadog/appsec/contrib/auto_instrument.rb +2 -4
  50. data/lib/datadog/appsec/contrib/devise/event.rb +57 -0
  51. data/lib/datadog/appsec/contrib/devise/ext.rb +13 -0
  52. data/lib/datadog/appsec/contrib/devise/integration.rb +42 -0
  53. data/lib/datadog/appsec/contrib/devise/patcher/authenticatable_patch.rb +76 -0
  54. data/lib/datadog/appsec/contrib/devise/patcher/registration_controller_patch.rb +54 -0
  55. data/lib/datadog/appsec/contrib/devise/patcher.rb +45 -0
  56. data/lib/datadog/appsec/contrib/devise/resource.rb +35 -0
  57. data/lib/datadog/appsec/contrib/devise/tracking.rb +57 -0
  58. data/lib/datadog/appsec/contrib/rack/ext.rb +2 -1
  59. data/lib/datadog/appsec/contrib/rack/gateway/request.rb +6 -2
  60. data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +8 -6
  61. data/lib/datadog/appsec/contrib/rack/reactive/request.rb +3 -8
  62. data/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +3 -6
  63. data/lib/datadog/appsec/contrib/rack/reactive/response.rb +3 -6
  64. data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +3 -2
  65. data/lib/datadog/appsec/contrib/rack/request_middleware.rb +77 -27
  66. data/lib/datadog/appsec/contrib/rails/ext.rb +3 -2
  67. data/lib/datadog/appsec/contrib/rails/framework.rb +1 -3
  68. data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +3 -2
  69. data/lib/datadog/appsec/contrib/rails/patcher.rb +17 -11
  70. data/lib/datadog/appsec/contrib/rails/reactive/action.rb +3 -6
  71. data/lib/datadog/appsec/contrib/sinatra/ext.rb +2 -1
  72. data/lib/datadog/appsec/contrib/sinatra/framework.rb +1 -3
  73. data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +6 -4
  74. data/lib/datadog/appsec/contrib/sinatra/patcher.rb +13 -7
  75. data/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +3 -6
  76. data/lib/datadog/appsec/event.rb +106 -50
  77. data/lib/datadog/appsec/extensions.rb +1 -130
  78. data/lib/datadog/appsec/monitor/gateway/watcher.rb +3 -3
  79. data/lib/datadog/appsec/monitor/reactive/set_user.rb +3 -6
  80. data/lib/datadog/appsec/processor/actions.rb +49 -0
  81. data/lib/datadog/appsec/processor/rule_loader.rb +60 -0
  82. data/lib/datadog/appsec/processor/rule_merger.rb +22 -2
  83. data/lib/datadog/appsec/processor.rb +35 -7
  84. data/lib/datadog/appsec/rate_limiter.rb +1 -1
  85. data/lib/datadog/appsec/remote.rb +17 -11
  86. data/lib/datadog/appsec/response.rb +82 -4
  87. data/lib/datadog/appsec/sample_rate.rb +21 -0
  88. data/lib/datadog/appsec.rb +3 -4
  89. data/lib/datadog/auto_instrument.rb +3 -0
  90. data/lib/datadog/core/backport.rb +51 -0
  91. data/lib/datadog/core/configuration/agent_settings_resolver.rb +38 -29
  92. data/lib/datadog/core/configuration/base.rb +6 -16
  93. data/lib/datadog/core/configuration/components.rb +20 -7
  94. data/lib/datadog/core/configuration/ext.rb +28 -5
  95. data/lib/datadog/core/configuration/option.rb +271 -21
  96. data/lib/datadog/core/configuration/option_definition.rb +73 -32
  97. data/lib/datadog/core/configuration/options.rb +27 -15
  98. data/lib/datadog/core/configuration/settings.rb +398 -119
  99. data/lib/datadog/core/configuration.rb +24 -4
  100. data/lib/datadog/core/diagnostics/environment_logger.rb +132 -235
  101. data/lib/datadog/core/environment/class_count.rb +6 -6
  102. data/lib/datadog/core/environment/execution.rb +103 -0
  103. data/lib/datadog/core/environment/ext.rb +13 -11
  104. data/lib/datadog/core/environment/git.rb +25 -0
  105. data/lib/datadog/core/environment/identity.rb +18 -48
  106. data/lib/datadog/core/environment/platform.rb +7 -1
  107. data/lib/datadog/core/environment/variable_helpers.rb +0 -69
  108. data/lib/datadog/core/environment/yjit.rb +58 -0
  109. data/lib/datadog/core/error.rb +1 -0
  110. data/lib/datadog/core/git/ext.rb +6 -23
  111. data/lib/datadog/core/logging/ext.rb +3 -1
  112. data/lib/datadog/core/metrics/ext.rb +7 -5
  113. data/lib/datadog/core/remote/client/capabilities.rb +7 -2
  114. data/lib/datadog/core/remote/client.rb +3 -0
  115. data/lib/datadog/core/remote/component.rb +52 -48
  116. data/lib/datadog/core/remote/configuration/content.rb +28 -1
  117. data/lib/datadog/core/remote/configuration/repository.rb +3 -1
  118. data/lib/datadog/core/remote/ext.rb +2 -1
  119. data/lib/datadog/core/remote/negotiation.rb +20 -7
  120. data/lib/datadog/core/remote/tie/tracing.rb +39 -0
  121. data/lib/datadog/core/remote/tie.rb +27 -0
  122. data/lib/datadog/core/remote/transport/config.rb +60 -0
  123. data/lib/datadog/core/remote/transport/http/api/instance.rb +39 -0
  124. data/lib/datadog/core/remote/transport/http/api/spec.rb +21 -0
  125. data/lib/datadog/core/remote/transport/http/api.rb +58 -0
  126. data/lib/datadog/core/remote/transport/http/builder.rb +219 -0
  127. data/lib/datadog/core/remote/transport/http/client.rb +48 -0
  128. data/lib/datadog/core/remote/transport/http/config.rb +280 -0
  129. data/lib/datadog/core/remote/transport/http/negotiation.rb +146 -0
  130. data/lib/datadog/core/remote/transport/http.rb +179 -0
  131. data/lib/datadog/core/{transport → remote/transport}/negotiation.rb +25 -23
  132. data/lib/datadog/core/remote/worker.rb +11 -5
  133. data/lib/datadog/core/runtime/ext.rb +22 -12
  134. data/lib/datadog/core/runtime/metrics.rb +43 -0
  135. data/lib/datadog/core/telemetry/client.rb +28 -10
  136. data/lib/datadog/core/telemetry/emitter.rb +9 -11
  137. data/lib/datadog/core/telemetry/event.rb +250 -44
  138. data/lib/datadog/core/telemetry/ext.rb +8 -1
  139. data/lib/datadog/core/telemetry/heartbeat.rb +3 -7
  140. data/lib/datadog/core/telemetry/http/ext.rb +13 -8
  141. data/lib/datadog/core/telemetry/http/response.rb +4 -0
  142. data/lib/datadog/core/telemetry/http/transport.rb +10 -3
  143. data/lib/datadog/core/telemetry/request.rb +59 -0
  144. data/lib/datadog/core/transport/ext.rb +49 -0
  145. data/lib/datadog/core/transport/http/adapters/net.rb +168 -0
  146. data/lib/datadog/core/transport/http/adapters/registry.rb +29 -0
  147. data/lib/datadog/core/transport/http/adapters/test.rb +89 -0
  148. data/lib/datadog/core/transport/http/adapters/unix_socket.rb +83 -0
  149. data/lib/datadog/core/transport/http/api/endpoint.rb +31 -0
  150. data/lib/datadog/core/transport/http/api/fallbacks.rb +26 -0
  151. data/lib/datadog/core/transport/http/api/map.rb +18 -0
  152. data/lib/datadog/core/transport/http/env.rb +62 -0
  153. data/lib/datadog/core/transport/http/response.rb +60 -0
  154. data/lib/datadog/core/transport/parcel.rb +22 -0
  155. data/lib/datadog/core/transport/request.rb +17 -0
  156. data/lib/datadog/core/transport/response.rb +64 -0
  157. data/lib/datadog/core/utils/duration.rb +52 -0
  158. data/lib/datadog/core/utils/hash.rb +47 -0
  159. data/lib/datadog/core/utils/network.rb +1 -1
  160. data/lib/datadog/core/utils/safe_dup.rb +27 -20
  161. data/lib/datadog/core/utils/url.rb +25 -0
  162. data/lib/datadog/core/utils.rb +1 -1
  163. data/lib/datadog/core/workers/async.rb +3 -2
  164. data/lib/datadog/core/workers/polling.rb +2 -2
  165. data/lib/datadog/kit/appsec/events.rb +139 -89
  166. data/lib/datadog/kit/enable_core_dumps.rb +5 -6
  167. data/lib/datadog/kit/identity.rb +80 -65
  168. data/lib/datadog/opentelemetry/api/context.rb +10 -3
  169. data/lib/datadog/opentelemetry/sdk/propagator.rb +5 -3
  170. data/lib/datadog/opentelemetry/sdk/span_processor.rb +48 -5
  171. data/lib/datadog/opentelemetry/sdk/trace/span.rb +167 -0
  172. data/lib/datadog/opentelemetry/trace.rb +58 -0
  173. data/lib/datadog/opentelemetry.rb +4 -0
  174. data/lib/datadog/opentracer/text_map_propagator.rb +2 -1
  175. data/lib/datadog/opentracer.rb +9 -0
  176. data/lib/datadog/profiling/collectors/code_provenance.rb +10 -4
  177. data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +43 -20
  178. data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +3 -1
  179. data/lib/datadog/profiling/collectors/info.rb +101 -0
  180. data/lib/datadog/profiling/collectors/thread_context.rb +17 -2
  181. data/lib/datadog/profiling/component.rb +248 -97
  182. data/lib/datadog/profiling/exporter.rb +26 -5
  183. data/lib/datadog/profiling/ext.rb +2 -12
  184. data/lib/datadog/profiling/flush.rb +10 -5
  185. data/lib/datadog/profiling/http_transport.rb +23 -6
  186. data/lib/datadog/profiling/load_native_extension.rb +25 -6
  187. data/lib/datadog/profiling/native_extension.rb +1 -22
  188. data/lib/datadog/profiling/profiler.rb +36 -13
  189. data/lib/datadog/profiling/scheduler.rb +20 -15
  190. data/lib/datadog/profiling/stack_recorder.rb +19 -4
  191. data/lib/datadog/profiling/tag_builder.rb +5 -0
  192. data/lib/datadog/profiling/tasks/exec.rb +3 -3
  193. data/lib/datadog/profiling/tasks/help.rb +3 -3
  194. data/lib/datadog/profiling.rb +28 -79
  195. data/lib/datadog/tracing/component.rb +70 -11
  196. data/lib/datadog/tracing/configuration/agent_settings_resolver.rb +13 -0
  197. data/lib/datadog/tracing/configuration/dynamic/option.rb +71 -0
  198. data/lib/datadog/tracing/configuration/dynamic.rb +64 -0
  199. data/lib/datadog/tracing/configuration/ext.rb +40 -33
  200. data/lib/datadog/tracing/configuration/http.rb +74 -0
  201. data/lib/datadog/tracing/configuration/settings.rb +136 -99
  202. data/lib/datadog/tracing/contrib/action_cable/configuration/settings.rb +10 -6
  203. data/lib/datadog/tracing/contrib/action_cable/ext.rb +21 -18
  204. data/lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb +10 -6
  205. data/lib/datadog/tracing/contrib/action_mailer/events/deliver.rb +1 -1
  206. data/lib/datadog/tracing/contrib/action_mailer/ext.rb +21 -18
  207. data/lib/datadog/tracing/contrib/action_pack/configuration/settings.rb +10 -7
  208. data/lib/datadog/tracing/contrib/action_pack/ext.rb +11 -8
  209. data/lib/datadog/tracing/contrib/action_view/configuration/settings.rb +10 -6
  210. data/lib/datadog/tracing/contrib/action_view/ext.rb +13 -10
  211. data/lib/datadog/tracing/contrib/active_job/configuration/settings.rb +14 -7
  212. data/lib/datadog/tracing/contrib/active_job/ext.rb +26 -23
  213. data/lib/datadog/tracing/contrib/active_job/log_injection.rb +1 -1
  214. data/lib/datadog/tracing/contrib/active_job/patcher.rb +1 -1
  215. data/lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb +10 -6
  216. data/lib/datadog/tracing/contrib/active_model_serializers/ext.rb +13 -10
  217. data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +29 -15
  218. data/lib/datadog/tracing/contrib/active_record/configuration/settings.rb +10 -7
  219. data/lib/datadog/tracing/contrib/active_record/events/sql.rb +2 -6
  220. data/lib/datadog/tracing/contrib/active_record/ext.rb +18 -15
  221. data/lib/datadog/tracing/contrib/active_record/utils.rb +1 -1
  222. data/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +106 -202
  223. data/lib/datadog/tracing/contrib/active_support/cache/patcher.rb +3 -0
  224. data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +10 -7
  225. data/lib/datadog/tracing/contrib/active_support/ext.rb +19 -16
  226. data/lib/datadog/tracing/contrib/analytics.rb +0 -1
  227. data/lib/datadog/tracing/contrib/aws/configuration/settings.rb +15 -7
  228. data/lib/datadog/tracing/contrib/aws/ext.rb +38 -24
  229. data/lib/datadog/tracing/contrib/aws/instrumentation.rb +16 -5
  230. data/lib/datadog/tracing/contrib/concurrent_ruby/async_patch.rb +20 -0
  231. data/lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb +3 -2
  232. data/lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb +14 -14
  233. data/lib/datadog/tracing/contrib/concurrent_ruby/ext.rb +4 -2
  234. data/lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb +3 -10
  235. data/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +2 -1
  236. data/lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb +19 -2
  237. data/lib/datadog/tracing/contrib/concurrent_ruby/promises_future_patch.rb +22 -0
  238. data/lib/datadog/tracing/contrib/configurable.rb +1 -1
  239. data/lib/datadog/tracing/contrib/configuration/settings.rb +1 -1
  240. data/lib/datadog/tracing/contrib/dalli/configuration/settings.rb +21 -7
  241. data/lib/datadog/tracing/contrib/dalli/ext.rb +27 -11
  242. data/lib/datadog/tracing/contrib/dalli/instrumentation.rb +17 -8
  243. data/lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb +14 -7
  244. data/lib/datadog/tracing/contrib/delayed_job/ext.rb +17 -14
  245. data/lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb +15 -7
  246. data/lib/datadog/tracing/contrib/elasticsearch/ext.rb +22 -15
  247. data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +104 -99
  248. data/lib/datadog/tracing/contrib/ethon/configuration/settings.rb +17 -9
  249. data/lib/datadog/tracing/contrib/ethon/easy_patch.rb +48 -3
  250. data/lib/datadog/tracing/contrib/ethon/ext.rb +20 -11
  251. data/lib/datadog/tracing/contrib/ethon/multi_patch.rb +6 -3
  252. data/lib/datadog/tracing/contrib/excon/configuration/settings.rb +20 -10
  253. data/lib/datadog/tracing/contrib/excon/ext.rb +17 -8
  254. data/lib/datadog/tracing/contrib/excon/middleware.rb +25 -5
  255. data/lib/datadog/tracing/contrib/ext.rb +26 -1
  256. data/lib/datadog/tracing/contrib/extensions.rb +38 -2
  257. data/lib/datadog/tracing/contrib/faraday/configuration/settings.rb +27 -10
  258. data/lib/datadog/tracing/contrib/faraday/ext.rb +17 -8
  259. data/lib/datadog/tracing/contrib/faraday/middleware.rb +22 -6
  260. data/lib/datadog/tracing/contrib/grape/configuration/settings.rb +9 -6
  261. data/lib/datadog/tracing/contrib/grape/ext.rb +17 -14
  262. data/lib/datadog/tracing/contrib/graphql/configuration/settings.rb +9 -6
  263. data/lib/datadog/tracing/contrib/graphql/ext.rb +8 -5
  264. data/lib/datadog/tracing/contrib/grpc/configuration/settings.rb +40 -9
  265. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +39 -20
  266. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +37 -18
  267. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb +0 -4
  268. data/lib/datadog/tracing/contrib/grpc/ext.rb +17 -13
  269. data/lib/datadog/tracing/contrib/grpc/formatting.rb +127 -0
  270. data/lib/datadog/tracing/contrib/hanami/configuration/settings.rb +3 -2
  271. data/lib/datadog/tracing/contrib/hanami/ext.rb +10 -8
  272. data/lib/datadog/tracing/contrib/http/circuit_breaker.rb +5 -8
  273. data/lib/datadog/tracing/contrib/http/configuration/settings.rb +34 -11
  274. data/lib/datadog/tracing/contrib/http/distributed/fetcher.rb +2 -2
  275. data/lib/datadog/tracing/contrib/http/ext.rb +17 -9
  276. data/lib/datadog/tracing/contrib/http/instrumentation.rb +27 -7
  277. data/lib/datadog/tracing/contrib/httpclient/configuration/settings.rb +34 -11
  278. data/lib/datadog/tracing/contrib/httpclient/ext.rb +18 -9
  279. data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +22 -5
  280. data/lib/datadog/tracing/contrib/httprb/configuration/settings.rb +34 -11
  281. data/lib/datadog/tracing/contrib/httprb/ext.rb +17 -9
  282. data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +22 -5
  283. data/lib/datadog/tracing/contrib/kafka/configuration/settings.rb +10 -6
  284. data/lib/datadog/tracing/contrib/kafka/ext.rb +43 -39
  285. data/lib/datadog/tracing/contrib/lograge/configuration/settings.rb +3 -2
  286. data/lib/datadog/tracing/contrib/lograge/ext.rb +3 -1
  287. data/lib/datadog/tracing/contrib/lograge/instrumentation.rb +2 -17
  288. data/lib/datadog/tracing/contrib/mongodb/configuration/settings.rb +15 -7
  289. data/lib/datadog/tracing/contrib/mongodb/ext.rb +21 -16
  290. data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +16 -5
  291. data/lib/datadog/tracing/contrib/mysql2/configuration/settings.rb +22 -14
  292. data/lib/datadog/tracing/contrib/mysql2/ext.rb +16 -10
  293. data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +22 -7
  294. data/lib/datadog/tracing/contrib/opensearch/configuration/settings.rb +53 -0
  295. data/lib/datadog/tracing/contrib/opensearch/ext.rb +38 -0
  296. data/lib/datadog/tracing/contrib/opensearch/integration.rb +44 -0
  297. data/lib/datadog/tracing/contrib/opensearch/patcher.rb +135 -0
  298. data/lib/datadog/tracing/contrib/opensearch/quantize.rb +81 -0
  299. data/lib/datadog/tracing/contrib/pg/configuration/settings.rb +23 -14
  300. data/lib/datadog/tracing/contrib/pg/ext.rb +23 -19
  301. data/lib/datadog/tracing/contrib/pg/instrumentation.rb +49 -9
  302. data/lib/datadog/tracing/contrib/presto/configuration/settings.rb +15 -7
  303. data/lib/datadog/tracing/contrib/presto/ext.rb +26 -20
  304. data/lib/datadog/tracing/contrib/presto/instrumentation.rb +14 -5
  305. data/lib/datadog/tracing/contrib/propagation/sql_comment/ext.rb +12 -10
  306. data/lib/datadog/tracing/contrib/propagation/sql_comment.rb +1 -1
  307. data/lib/datadog/tracing/contrib/qless/configuration/settings.rb +13 -8
  308. data/lib/datadog/tracing/contrib/qless/ext.rb +15 -12
  309. data/lib/datadog/tracing/contrib/que/configuration/settings.rb +22 -12
  310. data/lib/datadog/tracing/contrib/que/ext.rb +1 -0
  311. data/lib/datadog/tracing/contrib/racecar/configuration/settings.rb +10 -7
  312. data/lib/datadog/tracing/contrib/racecar/event.rb +5 -5
  313. data/lib/datadog/tracing/contrib/racecar/ext.rb +21 -18
  314. data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +17 -12
  315. data/lib/datadog/tracing/contrib/rack/ext.rb +19 -16
  316. data/lib/datadog/tracing/contrib/rack/header_collection.rb +3 -0
  317. data/lib/datadog/tracing/contrib/rack/header_tagging.rb +63 -0
  318. data/lib/datadog/tracing/contrib/rack/middlewares.rb +16 -50
  319. data/lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb +0 -2
  320. data/lib/datadog/tracing/contrib/rails/configuration/settings.rb +20 -15
  321. data/lib/datadog/tracing/contrib/rails/ext.rb +8 -5
  322. data/lib/datadog/tracing/contrib/rails/log_injection.rb +7 -10
  323. data/lib/datadog/tracing/contrib/rails/patcher.rb +10 -41
  324. data/lib/datadog/tracing/contrib/rails/railtie.rb +3 -3
  325. data/lib/datadog/tracing/contrib/rake/configuration/settings.rb +14 -10
  326. data/lib/datadog/tracing/contrib/rake/ext.rb +15 -12
  327. data/lib/datadog/tracing/contrib/redis/configuration/settings.rb +18 -9
  328. data/lib/datadog/tracing/contrib/redis/ext.rb +23 -15
  329. data/lib/datadog/tracing/contrib/redis/instrumentation.rb +5 -40
  330. data/lib/datadog/tracing/contrib/redis/patcher.rb +34 -21
  331. data/lib/datadog/tracing/contrib/redis/tags.rb +16 -7
  332. data/lib/datadog/tracing/contrib/redis/trace_middleware.rb +46 -33
  333. data/lib/datadog/tracing/contrib/resque/configuration/settings.rb +14 -7
  334. data/lib/datadog/tracing/contrib/resque/ext.rb +10 -7
  335. data/lib/datadog/tracing/contrib/rest_client/configuration/settings.rb +17 -9
  336. data/lib/datadog/tracing/contrib/rest_client/ext.rb +16 -8
  337. data/lib/datadog/tracing/contrib/rest_client/request_patch.rb +25 -5
  338. data/lib/datadog/tracing/contrib/roda/configuration/settings.rb +10 -6
  339. data/lib/datadog/tracing/contrib/roda/ext.rb +1 -0
  340. data/lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb +3 -2
  341. data/lib/datadog/tracing/contrib/semantic_logger/ext.rb +3 -1
  342. data/lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb +4 -20
  343. data/lib/datadog/tracing/contrib/sequel/configuration/settings.rb +10 -6
  344. data/lib/datadog/tracing/contrib/sequel/ext.rb +11 -8
  345. data/lib/datadog/tracing/contrib/sequel/utils.rb +7 -7
  346. data/lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb +15 -8
  347. data/lib/datadog/tracing/contrib/shoryuken/ext.rb +15 -12
  348. data/lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb +19 -11
  349. data/lib/datadog/tracing/contrib/sidekiq/ext.rb +33 -30
  350. data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +12 -9
  351. data/lib/datadog/tracing/contrib/sinatra/env.rb +0 -17
  352. data/lib/datadog/tracing/contrib/sinatra/ext.rb +22 -19
  353. data/lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb +3 -14
  354. data/lib/datadog/tracing/contrib/sneakers/configuration/settings.rb +15 -8
  355. data/lib/datadog/tracing/contrib/sneakers/ext.rb +2 -0
  356. data/lib/datadog/tracing/contrib/sneakers/tracer.rb +1 -1
  357. data/lib/datadog/tracing/contrib/span_attribute_schema.rb +74 -10
  358. data/lib/datadog/tracing/contrib/stripe/configuration/settings.rb +10 -6
  359. data/lib/datadog/tracing/contrib/stripe/ext.rb +1 -0
  360. data/lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb +10 -6
  361. data/lib/datadog/tracing/contrib/sucker_punch/ext.rb +16 -13
  362. data/lib/datadog/tracing/contrib/trilogy/configuration/settings.rb +58 -0
  363. data/lib/datadog/tracing/contrib/trilogy/ext.rb +27 -0
  364. data/lib/datadog/tracing/contrib/trilogy/instrumentation.rb +94 -0
  365. data/lib/datadog/tracing/contrib/trilogy/integration.rb +43 -0
  366. data/lib/datadog/{ci/contrib/cucumber → tracing/contrib/trilogy}/patcher.rb +10 -6
  367. data/lib/datadog/tracing/contrib/utils/database.rb +5 -3
  368. data/lib/datadog/tracing/contrib/utils/quantization/http.rb +11 -11
  369. data/lib/datadog/tracing/contrib.rb +2 -0
  370. data/lib/datadog/tracing/correlation.rb +29 -12
  371. data/lib/datadog/tracing/diagnostics/environment_logger.rb +165 -0
  372. data/lib/datadog/tracing/diagnostics/ext.rb +21 -19
  373. data/lib/datadog/tracing/distributed/b3_multi.rb +2 -2
  374. data/lib/datadog/tracing/distributed/b3_single.rb +1 -1
  375. data/lib/datadog/tracing/distributed/datadog.rb +0 -1
  376. data/lib/datadog/tracing/distributed/propagation.rb +35 -34
  377. data/lib/datadog/tracing/distributed/trace_context.rb +52 -17
  378. data/lib/datadog/tracing/metadata/ext.rb +9 -6
  379. data/lib/datadog/tracing/metadata/tagging.rb +3 -3
  380. data/lib/datadog/tracing/remote.rb +78 -0
  381. data/lib/datadog/tracing/sampling/matcher.rb +23 -3
  382. data/lib/datadog/tracing/sampling/rule.rb +7 -2
  383. data/lib/datadog/tracing/sampling/rule_sampler.rb +31 -0
  384. data/lib/datadog/tracing/span_operation.rb +3 -15
  385. data/lib/datadog/tracing/sync_writer.rb +3 -3
  386. data/lib/datadog/tracing/trace_digest.rb +31 -0
  387. data/lib/datadog/tracing/trace_operation.rb +17 -5
  388. data/lib/datadog/tracing/trace_segment.rb +5 -2
  389. data/lib/datadog/tracing/tracer.rb +12 -1
  390. data/lib/datadog/{core → tracing}/transport/http/api/instance.rb +1 -1
  391. data/lib/datadog/{core → tracing}/transport/http/api/spec.rb +1 -1
  392. data/lib/datadog/tracing/transport/http/api.rb +43 -0
  393. data/lib/datadog/{core → tracing}/transport/http/builder.rb +13 -68
  394. data/lib/datadog/tracing/transport/http/client.rb +57 -0
  395. data/lib/datadog/tracing/transport/http/statistics.rb +47 -0
  396. data/lib/datadog/tracing/transport/http/traces.rb +152 -0
  397. data/lib/datadog/tracing/transport/http.rb +125 -0
  398. data/lib/datadog/tracing/transport/io/client.rb +89 -0
  399. data/lib/datadog/tracing/transport/io/response.rb +27 -0
  400. data/lib/datadog/tracing/transport/io/traces.rb +101 -0
  401. data/lib/datadog/tracing/transport/io.rb +30 -0
  402. data/lib/datadog/tracing/transport/serializable_trace.rb +126 -0
  403. data/lib/datadog/tracing/transport/statistics.rb +77 -0
  404. data/lib/datadog/tracing/transport/trace_formatter.rb +240 -0
  405. data/lib/datadog/tracing/transport/traces.rb +224 -0
  406. data/lib/datadog/tracing/workers/trace_writer.rb +6 -4
  407. data/lib/datadog/tracing/workers.rb +4 -2
  408. data/lib/datadog/tracing/writer.rb +5 -2
  409. data/lib/datadog/tracing.rb +8 -2
  410. data/lib/ddtrace/transport/ext.rb +22 -14
  411. data/lib/ddtrace/version.rb +9 -12
  412. data/lib/ddtrace.rb +1 -1
  413. metadata +157 -139
  414. data/ext/ddtrace_profiling_native_extension/libdatadog_helpers.h +0 -25
  415. data/ext/ddtrace_profiling_native_extension/ruby_helpers.c +0 -110
  416. data/ext/ddtrace_profiling_native_extension/stack_recorder.c +0 -591
  417. data/ext/ddtrace_profiling_native_extension/stack_recorder.h +0 -14
  418. data/ext/ddtrace_profiling_native_extension/time_helpers.c +0 -17
  419. data/ext/ddtrace_profiling_native_extension/time_helpers.h +0 -10
  420. data/lib/datadog/ci/configuration/components.rb +0 -32
  421. data/lib/datadog/ci/configuration/settings.rb +0 -53
  422. data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +0 -33
  423. data/lib/datadog/ci/contrib/cucumber/ext.rb +0 -20
  424. data/lib/datadog/ci/contrib/cucumber/formatter.rb +0 -94
  425. data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +0 -28
  426. data/lib/datadog/ci/contrib/cucumber/integration.rb +0 -47
  427. data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +0 -33
  428. data/lib/datadog/ci/contrib/rspec/example.rb +0 -68
  429. data/lib/datadog/ci/contrib/rspec/ext.rb +0 -19
  430. data/lib/datadog/ci/contrib/rspec/integration.rb +0 -48
  431. data/lib/datadog/ci/contrib/rspec/patcher.rb +0 -27
  432. data/lib/datadog/ci/ext/app_types.rb +0 -9
  433. data/lib/datadog/ci/ext/environment.rb +0 -575
  434. data/lib/datadog/ci/ext/settings.rb +0 -10
  435. data/lib/datadog/ci/ext/test.rb +0 -35
  436. data/lib/datadog/ci/extensions.rb +0 -19
  437. data/lib/datadog/ci/flush.rb +0 -38
  438. data/lib/datadog/ci/test.rb +0 -81
  439. data/lib/datadog/ci.rb +0 -20
  440. data/lib/datadog/core/configuration/dependency_resolver.rb +0 -28
  441. data/lib/datadog/core/configuration/option_definition_set.rb +0 -22
  442. data/lib/datadog/core/configuration/option_set.rb +0 -10
  443. data/lib/datadog/core/telemetry/collector.rb +0 -231
  444. data/lib/datadog/core/telemetry/v1/app_event.rb +0 -52
  445. data/lib/datadog/core/telemetry/v1/application.rb +0 -92
  446. data/lib/datadog/core/telemetry/v1/configuration.rb +0 -25
  447. data/lib/datadog/core/telemetry/v1/dependency.rb +0 -43
  448. data/lib/datadog/core/telemetry/v1/host.rb +0 -59
  449. data/lib/datadog/core/telemetry/v1/integration.rb +0 -64
  450. data/lib/datadog/core/telemetry/v1/product.rb +0 -36
  451. data/lib/datadog/core/telemetry/v1/telemetry_request.rb +0 -106
  452. data/lib/datadog/core/transport/config.rb +0 -58
  453. data/lib/datadog/core/transport/http/api.rb +0 -57
  454. data/lib/datadog/core/transport/http/client.rb +0 -45
  455. data/lib/datadog/core/transport/http/config.rb +0 -268
  456. data/lib/datadog/core/transport/http/negotiation.rb +0 -144
  457. data/lib/datadog/core/transport/http.rb +0 -169
  458. data/lib/datadog/core/utils/object_set.rb +0 -43
  459. data/lib/datadog/core/utils/string_table.rb +0 -47
  460. data/lib/datadog/profiling/backtrace_location.rb +0 -34
  461. data/lib/datadog/profiling/buffer.rb +0 -43
  462. data/lib/datadog/profiling/collectors/old_stack.rb +0 -301
  463. data/lib/datadog/profiling/encoding/profile.rb +0 -41
  464. data/lib/datadog/profiling/event.rb +0 -15
  465. data/lib/datadog/profiling/events/stack.rb +0 -82
  466. data/lib/datadog/profiling/old_recorder.rb +0 -107
  467. data/lib/datadog/profiling/pprof/builder.rb +0 -125
  468. data/lib/datadog/profiling/pprof/converter.rb +0 -102
  469. data/lib/datadog/profiling/pprof/message_set.rb +0 -16
  470. data/lib/datadog/profiling/pprof/payload.rb +0 -20
  471. data/lib/datadog/profiling/pprof/pprof.proto +0 -212
  472. data/lib/datadog/profiling/pprof/pprof_pb.rb +0 -81
  473. data/lib/datadog/profiling/pprof/stack_sample.rb +0 -139
  474. data/lib/datadog/profiling/pprof/string_table.rb +0 -12
  475. data/lib/datadog/profiling/pprof/template.rb +0 -118
  476. data/lib/datadog/profiling/trace_identifiers/ddtrace.rb +0 -43
  477. data/lib/datadog/profiling/trace_identifiers/helper.rb +0 -45
  478. data/lib/datadog/tracing/contrib/sinatra/headers.rb +0 -35
  479. data/lib/ddtrace/transport/http/adapters/net.rb +0 -168
  480. data/lib/ddtrace/transport/http/adapters/registry.rb +0 -27
  481. data/lib/ddtrace/transport/http/adapters/test.rb +0 -85
  482. data/lib/ddtrace/transport/http/adapters/unix_socket.rb +0 -77
  483. data/lib/ddtrace/transport/http/api/endpoint.rb +0 -29
  484. data/lib/ddtrace/transport/http/api/fallbacks.rb +0 -24
  485. data/lib/ddtrace/transport/http/api/instance.rb +0 -35
  486. data/lib/ddtrace/transport/http/api/map.rb +0 -16
  487. data/lib/ddtrace/transport/http/api/spec.rb +0 -17
  488. data/lib/ddtrace/transport/http/api.rb +0 -39
  489. data/lib/ddtrace/transport/http/builder.rb +0 -176
  490. data/lib/ddtrace/transport/http/client.rb +0 -52
  491. data/lib/ddtrace/transport/http/env.rb +0 -58
  492. data/lib/ddtrace/transport/http/response.rb +0 -58
  493. data/lib/ddtrace/transport/http/statistics.rb +0 -43
  494. data/lib/ddtrace/transport/http/traces.rb +0 -144
  495. data/lib/ddtrace/transport/http.rb +0 -117
  496. data/lib/ddtrace/transport/io/client.rb +0 -85
  497. data/lib/ddtrace/transport/io/response.rb +0 -25
  498. data/lib/ddtrace/transport/io/traces.rb +0 -99
  499. data/lib/ddtrace/transport/io.rb +0 -28
  500. data/lib/ddtrace/transport/parcel.rb +0 -20
  501. data/lib/ddtrace/transport/request.rb +0 -15
  502. data/lib/ddtrace/transport/response.rb +0 -60
  503. data/lib/ddtrace/transport/serializable_trace.rb +0 -122
  504. data/lib/ddtrace/transport/statistics.rb +0 -75
  505. data/lib/ddtrace/transport/trace_formatter.rb +0 -198
  506. data/lib/ddtrace/transport/traces.rb +0 -216
  507. /data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/collectors_idle_sampling_helper.h +0 -0
  508. /data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/setup_signal_handler.c +0 -0
  509. /data/ext/{ddtrace_profiling_native_extension → datadog_profiling_native_extension}/setup_signal_handler.h +0 -0
@@ -1,591 +0,0 @@
1
- #include <ruby.h>
2
- #include <ruby/thread.h>
3
- #include <pthread.h>
4
- #include <errno.h>
5
- #include "helpers.h"
6
- #include "stack_recorder.h"
7
- #include "libdatadog_helpers.h"
8
- #include "ruby_helpers.h"
9
-
10
- // Used to wrap a ddog_prof_Profile in a Ruby object and expose Ruby-level serialization APIs
11
- // This file implements the native bits of the Datadog::Profiling::StackRecorder class
12
-
13
- // ---
14
- // ## Synchronization mechanism for safe parallel access design notes
15
- //
16
- // The state of the StackRecorder is managed using a set of locks to avoid concurrency issues.
17
- //
18
- // This is needed because the state is expected to be accessed, in parallel, by two different threads.
19
- //
20
- // 1. The thread that is taking a stack sample and that called `record_sample`, let's call it the **sampler thread**.
21
- // In the current implementation of the profiler, there can only exist one **sampler thread** at a time; if this
22
- // constraint changes, we should revise the design of the StackRecorder.
23
- //
24
- // 2. The thread that serializes and reports profiles, let's call it the **serializer thread**. We enforce that there
25
- // cannot be more than one thread attempting to serialize profiles at a time.
26
- //
27
- // If both the sampler and serializer threads are trying to access the same `ddog_prof_Profile` in parallel, we will
28
- // have a concurrency issue. Thus, the StackRecorder has an added mechanism to avoid this.
29
- //
30
- // As an additional constraint, the **sampler thread** has absolute priority and must never block while
31
- // recording a sample.
32
- //
33
- // ### The solution: Keep two profiles at the same time
34
- //
35
- // To solve for the constraints above, the StackRecorder keeps two `ddog_prof_Profile` profile instances inside itself.
36
- // They are called the `slot_one_profile` and `slot_two_profile`.
37
- //
38
- // Each profile is paired with its own mutex. `slot_one_profile` is protected by `slot_one_mutex` and `slot_two_profile`
39
- // is protected by `slot_two_mutex`.
40
- //
41
- // We additionally introduce the concept of **active** and **inactive** profile slots. At any point, the sampler thread
42
- // can probe the mutexes to discover which of the profiles corresponds to the active slot, and then records samples in it.
43
- // When the serializer thread is ready to serialize data, it flips the active and inactive slots; it reports the data
44
- // on the previously-active profile slot, and the sampler thread can continue to record in the previously-inactive
45
- // profile slot.
46
- //
47
- // Thus, the sampler and serializer threads never cross paths, avoiding concurrency issues. The sampler thread writes to
48
- // the active profile slot, and the serializer thread reads from the inactive profile slot.
49
- //
50
- // ### Locking protocol, high-level
51
- //
52
- // The active profile slot is the slot for which its corresponding mutex **is unlocked**. That is, if the sampler
53
- // thread can grab a lock for a profile slot, then that slot is the active one. (Here you see where the constraint
54
- // stated above that only one sampler thread can exist kicks in -- this part would need to be more complex if multiple
55
- // sampler threads were in play.)
56
- //
57
- // As a counterpart, the inactive profile slot mutex is **kept locked** until such time the serializer
58
- // thread is ready to work and decides to flip the slots.
59
- //
60
- // When a new StackRecorder is initialized, the `slot_one_mutex` is unlocked, and the `slot_two_mutex` is kept locked,
61
- // that is, a new instance always starts with slot one active.
62
- //
63
- // Additionally, an `active_slot` field is kept, containing a `1` or `2`; this is only kept for the serializer thread
64
- // to use as a simplification, as well as for testing and debugging; the **sampler thread must never use the `active_slot`
65
- // field**.
66
- //
67
- // ### Locking protocol, from the sampler thread side
68
- //
69
- // When the sampler thread wants to record a sample, it goes through the following steps to discover which is the
70
- // active profile slot:
71
- //
72
- // 1. `pthread_mutex_trylock(slot_one_mutex)`. If it succeeds to grab the lock, this means the active profile slot is
73
- // slot one. If it fails, we move to the next step.
74
- //
75
- // 2. `pthread_mutex_trylock(slot_two_mutex)`. If it succeeds to grab the lock, this means the active profile slot is
76
- // slot two. If it fails, we move to the next step.
77
- //
78
- // 3. What does it mean for the sampler thread to have observed both `slot_one_mutex` as well as `slot_two_mutex` as
79
- // being locked? There are two options:
80
- // a. The sampler thread got really unlucky. When it tried to grab the `slot_one_mutex`, the active profile slot was
81
- // the second one BUT then the serializer thread flipped the slots, and by the time the sampler thread probed the
82
- // `slot_two_mutex`, that one was taken. Since the serializer thread is expected only to work once a minute,
83
- // we retry steps 1. and 2. and should be able to find an active slot.
84
- // b. Something is incorrect in the StackRecorder state. In this situation, the sampler thread should give up on
85
- // sampling and enter an error state.
86
- //
87
- // Note that in the steps above, and because the sampler thread uses `trylock` to probe the mutexes, that the
88
- // sampler thread never blocks. It either is able to find an active profile slot in a bounded amount of steps or it
89
- // enters an error state.
90
- //
91
- // This guarantees that sampler performance is never constrained by serializer performance.
92
- //
93
- // ### Locking protocol, from the serializer thread side
94
- //
95
- // When the serializer thread wants to serialize a profile, it first flips the active and inactive profile slots.
96
- //
97
- // The flipping action is described below. Consider previously-inactive and previously-active as the state of the slots
98
- // before the flipping happens.
99
- //
100
- // The flipping steps are the following:
101
- //
102
- // 1. Release the mutex for the previously-inactive profile slot. That slot, as seen by the sampler thread, is now
103
- // active.
104
- //
105
- // 2. Grab the mutex for the previously-active profile slot. Note that this can lead to the serializer thread blocking,
106
- // if the sampler thread is holding this mutex. After the mutex is grabbed, the previously-active slot becomes inactive,
107
- // as seen by the sampler thread.
108
- //
109
- // 3. Update `active_slot`.
110
- //
111
- // After flipping the profile slots, the serializer thread is now free to serialize the inactive profile slot. The slot
112
- // is kept inactive until the next time the serializer thread wants to serialize data.
113
- //
114
- // Note there can be a brief period between steps 1 and 2 where the serializer thread holds no lock, which means that
115
- // the sampler thread can pick either slot. This is OK: if the sampler thread picks the previously-inactive slot, the
116
- // samples will be reported on the next serialization; if the sampler thread picks the previously-active slot, the
117
- // samples are still included in the current serialization. Either option is correct.
118
- //
119
- // ### Additional notes
120
- //
121
- // Q: Can the sampler thread and the serializer thread ever be the same thread? (E.g. sampling in interrupt handler)
122
- // A: No; the current profiler design requires that sampling happens only on the thread that is holding the Global VM
123
- // Lock (GVL). The serializer thread flipping occurs after the serializer thread releases the GVL, and thus the
124
- // serializer thread will not be able to host the sampling process.
125
- //
126
- // ---
127
-
128
- static VALUE ok_symbol = Qnil; // :ok in Ruby
129
- static VALUE error_symbol = Qnil; // :error in Ruby
130
-
131
- static VALUE stack_recorder_class = Qnil;
132
-
133
- // Note: Please DO NOT use `VALUE_STRING` anywhere else, instead use `DDOG_CHARSLICE_C`.
134
- // `VALUE_STRING` is only needed because older versions of gcc (4.9.2, used in our Ruby 2.2 CI test images)
135
- // tripped when compiling `enabled_value_types` using `-std=gnu99` due to the extra cast that is included in
136
- // `DDOG_CHARSLICE_C` with the following error:
137
- //
138
- // ```
139
- // compiling ../../../../ext/ddtrace_profiling_native_extension/stack_recorder.c
140
- // ../../../../ext/ddtrace_profiling_native_extension/stack_recorder.c:23:1: error: initializer element is not constant
141
- // static const ddog_prof_ValueType enabled_value_types[] = {CPU_TIME_VALUE, CPU_SAMPLES_VALUE, WALL_TIME_VALUE};
142
- // ^
143
- // ```
144
- #define VALUE_STRING(string) {.ptr = "" string, .len = sizeof(string) - 1}
145
-
146
- #define CPU_TIME_VALUE {.type_ = VALUE_STRING("cpu-time"), .unit = VALUE_STRING("nanoseconds")}
147
- #define CPU_TIME_VALUE_ID 0
148
- #define CPU_SAMPLES_VALUE {.type_ = VALUE_STRING("cpu-samples"), .unit = VALUE_STRING("count")}
149
- #define CPU_SAMPLES_VALUE_ID 1
150
- #define WALL_TIME_VALUE {.type_ = VALUE_STRING("wall-time"), .unit = VALUE_STRING("nanoseconds")}
151
- #define WALL_TIME_VALUE_ID 2
152
- #define ALLOC_SAMPLES_VALUE {.type_ = VALUE_STRING("alloc-samples"), .unit = VALUE_STRING("count")}
153
- #define ALLOC_SAMPLES_VALUE_ID 3
154
-
155
- static const ddog_prof_ValueType all_value_types[] = {CPU_TIME_VALUE, CPU_SAMPLES_VALUE, WALL_TIME_VALUE, ALLOC_SAMPLES_VALUE};
156
-
157
- // This array MUST be kept in sync with all_value_types above and is intended to act as a "hashmap" between VALUE_ID and the position it
158
- // occupies on the all_value_types array.
159
- // E.g. all_value_types_positions[CPU_TIME_VALUE_ID] => 0, means that CPU_TIME_VALUE was declared at position 0 of all_value_types.
160
- static const uint8_t all_value_types_positions[] = {CPU_TIME_VALUE_ID, CPU_SAMPLES_VALUE_ID, WALL_TIME_VALUE_ID, ALLOC_SAMPLES_VALUE_ID};
161
-
162
- #define ALL_VALUE_TYPES_COUNT (sizeof(all_value_types) / sizeof(ddog_prof_ValueType))
163
-
164
- // Contains native state for each instance
165
- struct stack_recorder_state {
166
- pthread_mutex_t slot_one_mutex;
167
- ddog_prof_Profile *slot_one_profile;
168
-
169
- pthread_mutex_t slot_two_mutex;
170
- ddog_prof_Profile *slot_two_profile;
171
-
172
- short active_slot; // MUST NEVER BE ACCESSED FROM record_sample; this is NOT for the sampler thread to use.
173
-
174
- uint8_t position_for[ALL_VALUE_TYPES_COUNT];
175
- uint8_t enabled_values_count;
176
- };
177
-
178
- // Used to return a pair of values from sampler_lock_active_profile()
179
- struct active_slot_pair {
180
- pthread_mutex_t *mutex;
181
- ddog_prof_Profile *profile;
182
- };
183
-
184
- struct call_serialize_without_gvl_arguments {
185
- // Set by caller
186
- struct stack_recorder_state *state;
187
- ddog_Timespec finish_timestamp;
188
-
189
- // Set by callee
190
- ddog_prof_Profile *profile;
191
- ddog_prof_Profile_SerializeResult result;
192
-
193
- // Set by both
194
- bool serialize_ran;
195
- };
196
-
197
- static VALUE _native_new(VALUE klass);
198
- static void initialize_slot_concurrency_control(struct stack_recorder_state *state);
199
- static void stack_recorder_typed_data_free(void *data);
200
- static VALUE _native_initialize(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE cpu_time_enabled, VALUE alloc_samples_enabled);
201
- static VALUE _native_serialize(VALUE self, VALUE recorder_instance);
202
- static VALUE ruby_time_from(ddog_Timespec ddprof_time);
203
- static void *call_serialize_without_gvl(void *call_args);
204
- static struct active_slot_pair sampler_lock_active_profile();
205
- static void sampler_unlock_active_profile(struct active_slot_pair active_slot);
206
- static ddog_prof_Profile *serializer_flip_active_and_inactive_slots(struct stack_recorder_state *state);
207
- static VALUE _native_active_slot(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance);
208
- static VALUE _native_is_slot_one_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance);
209
- static VALUE _native_is_slot_two_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance);
210
- static VALUE test_slot_mutex_state(VALUE recorder_instance, int slot);
211
- static ddog_Timespec time_now(void);
212
- static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE recorder_instance);
213
- static void serializer_set_start_timestamp_for_next_profile(struct stack_recorder_state *state, ddog_Timespec timestamp);
214
- static VALUE _native_record_endpoint(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE local_root_span_id, VALUE endpoint);
215
-
216
- void stack_recorder_init(VALUE profiling_module) {
217
- stack_recorder_class = rb_define_class_under(profiling_module, "StackRecorder", rb_cObject);
218
- // Hosts methods used for testing the native code using RSpec
219
- VALUE testing_module = rb_define_module_under(stack_recorder_class, "Testing");
220
-
221
- // Instances of the StackRecorder class are "TypedData" objects.
222
- // "TypedData" objects are special objects in the Ruby VM that can wrap C structs.
223
- // In this case, it wraps the stack_recorder_state.
224
- //
225
- // Because Ruby doesn't know how to initialize native-level structs, we MUST override the allocation function for objects
226
- // of this class so that we can manage this part. Not overriding or disabling the allocation function is a common
227
- // gotcha for "TypedData" objects that can very easily lead to VM crashes, see for instance
228
- // https://bugs.ruby-lang.org/issues/18007 for a discussion around this.
229
- rb_define_alloc_func(stack_recorder_class, _native_new);
230
-
231
- rb_define_singleton_method(stack_recorder_class, "_native_initialize", _native_initialize, 3);
232
- rb_define_singleton_method(stack_recorder_class, "_native_serialize", _native_serialize, 1);
233
- rb_define_singleton_method(stack_recorder_class, "_native_reset_after_fork", _native_reset_after_fork, 1);
234
- rb_define_singleton_method(testing_module, "_native_active_slot", _native_active_slot, 1);
235
- rb_define_singleton_method(testing_module, "_native_slot_one_mutex_locked?", _native_is_slot_one_mutex_locked, 1);
236
- rb_define_singleton_method(testing_module, "_native_slot_two_mutex_locked?", _native_is_slot_two_mutex_locked, 1);
237
- rb_define_singleton_method(testing_module, "_native_record_endpoint", _native_record_endpoint, 3);
238
-
239
- ok_symbol = ID2SYM(rb_intern_const("ok"));
240
- error_symbol = ID2SYM(rb_intern_const("error"));
241
- }
242
-
243
- // This structure is used to define a Ruby object that stores a pointer to a ddog_prof_Profile instance
244
- // See also https://github.com/ruby/ruby/blob/master/doc/extension.rdoc for how this works
245
- static const rb_data_type_t stack_recorder_typed_data = {
246
- .wrap_struct_name = "Datadog::Profiling::StackRecorder",
247
- .function = {
248
- .dfree = stack_recorder_typed_data_free,
249
- .dsize = NULL, // We don't track profile memory usage (although it'd be cool if we did!)
250
- // No need to provide dmark nor dcompact because we don't directly reference Ruby VALUEs from inside this object
251
- },
252
- .flags = RUBY_TYPED_FREE_IMMEDIATELY
253
- };
254
-
255
- static VALUE _native_new(VALUE klass) {
256
- struct stack_recorder_state *state = ruby_xcalloc(1, sizeof(struct stack_recorder_state));
257
-
258
- ddog_prof_Slice_ValueType sample_types = {.ptr = all_value_types, .len = ALL_VALUE_TYPES_COUNT};
259
-
260
- initialize_slot_concurrency_control(state);
261
- for (uint8_t i = 0; i < ALL_VALUE_TYPES_COUNT; i++) { state->position_for[i] = all_value_types_positions[i]; }
262
- state->enabled_values_count = ALL_VALUE_TYPES_COUNT;
263
-
264
- // Note: Don't raise exceptions after this point, since it'll lead to libdatadog memory leaking!
265
-
266
- state->slot_one_profile = ddog_prof_Profile_new(sample_types, NULL /* period is optional */, NULL /* start_time is optional */);
267
- state->slot_two_profile = ddog_prof_Profile_new(sample_types, NULL /* period is optional */, NULL /* start_time is optional */);
268
-
269
- return TypedData_Wrap_Struct(klass, &stack_recorder_typed_data, state);
270
- }
271
-
272
- static void initialize_slot_concurrency_control(struct stack_recorder_state *state) {
273
- state->slot_one_mutex = (pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER;
274
- state->slot_two_mutex = (pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER;
275
-
276
- // A newly-created StackRecorder starts with slot one being active for samples, so let's lock slot two
277
- ENFORCE_SUCCESS_GVL(pthread_mutex_lock(&state->slot_two_mutex));
278
-
279
- state->active_slot = 1;
280
- }
281
-
282
- static void stack_recorder_typed_data_free(void *state_ptr) {
283
- struct stack_recorder_state *state = (struct stack_recorder_state *) state_ptr;
284
-
285
- pthread_mutex_destroy(&state->slot_one_mutex);
286
- ddog_prof_Profile_drop(state->slot_one_profile);
287
-
288
- pthread_mutex_destroy(&state->slot_two_mutex);
289
- ddog_prof_Profile_drop(state->slot_two_profile);
290
-
291
- ruby_xfree(state);
292
- }
293
-
294
- static VALUE _native_initialize(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE cpu_time_enabled, VALUE alloc_samples_enabled) {
295
- ENFORCE_BOOLEAN(cpu_time_enabled);
296
- ENFORCE_BOOLEAN(alloc_samples_enabled);
297
-
298
- struct stack_recorder_state *state;
299
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
300
-
301
- if (cpu_time_enabled == Qtrue && alloc_samples_enabled == Qtrue) return Qtrue; // Nothing to do, this is the default
302
-
303
- // When some sample types are disabled, we need to reconfigure libdatadog to record less types,
304
- // as well as reconfigure the position_for array to push the disabled types to the end so they don't get recorded.
305
- // See record_sample for details on the use of position_for.
306
-
307
- state->enabled_values_count = ALL_VALUE_TYPES_COUNT - (cpu_time_enabled == Qtrue ? 0 : 1) - (alloc_samples_enabled == Qtrue? 0 : 1);
308
-
309
- ddog_prof_ValueType enabled_value_types[ALL_VALUE_TYPES_COUNT];
310
- uint8_t next_enabled_pos = 0;
311
- uint8_t next_disabled_pos = state->enabled_values_count;
312
-
313
- // CPU_SAMPLES_VALUE is always enabled
314
- enabled_value_types[next_enabled_pos] = (ddog_prof_ValueType) CPU_SAMPLES_VALUE;
315
- state->position_for[CPU_SAMPLES_VALUE_ID] = next_enabled_pos++;
316
-
317
- // WALL_TIME_VALUE is always enabled
318
- enabled_value_types[next_enabled_pos] = (ddog_prof_ValueType) WALL_TIME_VALUE;
319
- state->position_for[WALL_TIME_VALUE_ID] = next_enabled_pos++;
320
-
321
- if (cpu_time_enabled == Qtrue) {
322
- enabled_value_types[next_enabled_pos] = (ddog_prof_ValueType) CPU_TIME_VALUE;
323
- state->position_for[CPU_TIME_VALUE_ID] = next_enabled_pos++;
324
- } else {
325
- state->position_for[CPU_TIME_VALUE_ID] = next_disabled_pos++;
326
- }
327
-
328
- if (alloc_samples_enabled == Qtrue) {
329
- enabled_value_types[next_enabled_pos] = (ddog_prof_ValueType) ALLOC_SAMPLES_VALUE;
330
- state->position_for[ALLOC_SAMPLES_VALUE_ID] = next_enabled_pos++;
331
- } else {
332
- state->position_for[ALLOC_SAMPLES_VALUE_ID] = next_disabled_pos++;
333
- }
334
-
335
- ddog_prof_Slice_ValueType sample_types = {.ptr = enabled_value_types, .len = state->enabled_values_count};
336
-
337
- ddog_prof_Profile_drop(state->slot_one_profile);
338
- ddog_prof_Profile_drop(state->slot_two_profile);
339
-
340
- state->slot_one_profile = ddog_prof_Profile_new(sample_types, NULL /* period is optional */, NULL /* start_time is optional */);
341
- state->slot_two_profile = ddog_prof_Profile_new(sample_types, NULL /* period is optional */, NULL /* start_time is optional */);
342
-
343
- return Qtrue;
344
- }
345
-
346
- static VALUE _native_serialize(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) {
347
- struct stack_recorder_state *state;
348
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
349
-
350
- ddog_Timespec finish_timestamp = time_now();
351
- // Need to do this while still holding on to the Global VM Lock; see comments on method for why
352
- serializer_set_start_timestamp_for_next_profile(state, finish_timestamp);
353
-
354
- // We'll release the Global VM Lock while we're calling serialize, so that the Ruby VM can continue to work while this
355
- // is pending
356
- struct call_serialize_without_gvl_arguments args = {.state = state, .finish_timestamp = finish_timestamp, .serialize_ran = false};
357
-
358
- while (!args.serialize_ran) {
359
- // Give the Ruby VM an opportunity to process any pending interruptions (including raising exceptions).
360
- // Note that it's OK to do this BEFORE call_serialize_without_gvl runs BUT NOT AFTER because afterwards
361
- // there's heap-allocated memory that MUST be cleaned before raising any exception.
362
- //
363
- // Note that we run this in a loop because `rb_thread_call_without_gvl2` may return multiple times due to
364
- // pending interrupts until it actually runs our code.
365
- process_pending_interruptions(Qnil);
366
-
367
- // We use rb_thread_call_without_gvl2 here because unlike the regular _gvl variant, gvl2 does not process
368
- // interruptions and thus does not raise exceptions after running our code.
369
- rb_thread_call_without_gvl2(call_serialize_without_gvl, &args, NULL /* No interruption function needed in this case */, NULL /* Not needed */);
370
- }
371
-
372
- ddog_prof_Profile_SerializeResult serialized_profile = args.result;
373
-
374
- if (serialized_profile.tag == DDOG_PROF_PROFILE_SERIALIZE_RESULT_ERR) {
375
- return rb_ary_new_from_args(2, error_symbol, get_error_details_and_drop(&serialized_profile.err));
376
- }
377
-
378
- VALUE encoded_pprof = ruby_string_from_vec_u8(serialized_profile.ok.buffer);
379
-
380
- ddog_Timespec ddprof_start = serialized_profile.ok.start;
381
- ddog_Timespec ddprof_finish = serialized_profile.ok.end;
382
-
383
- ddog_prof_EncodedProfile_drop(&serialized_profile.ok);
384
-
385
- VALUE start = ruby_time_from(ddprof_start);
386
- VALUE finish = ruby_time_from(ddprof_finish);
387
-
388
- if (!ddog_prof_Profile_reset(args.profile, NULL /* start_time is optional */ )) {
389
- return rb_ary_new_from_args(2, error_symbol, rb_str_new_cstr("Failed to reset profile"));
390
- }
391
-
392
- return rb_ary_new_from_args(2, ok_symbol, rb_ary_new_from_args(3, start, finish, encoded_pprof));
393
- }
394
-
395
- static VALUE ruby_time_from(ddog_Timespec ddprof_time) {
396
- const int utc = INT_MAX - 1; // From Ruby sources
397
- struct timespec time = {.tv_sec = ddprof_time.seconds, .tv_nsec = ddprof_time.nanoseconds};
398
- return rb_time_timespec_new(&time, utc);
399
- }
400
-
401
- void record_sample(VALUE recorder_instance, ddog_prof_Slice_Location locations, sample_values values, ddog_prof_Slice_Label labels) {
402
- struct stack_recorder_state *state;
403
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
404
-
405
- struct active_slot_pair active_slot = sampler_lock_active_profile(state);
406
-
407
- // Note: We initialize this array to have ALL_VALUE_TYPES_COUNT but only tell libdatadog to use the first
408
- // state->enabled_values_count values. This simplifies handling disabled value types -- we still put them on the
409
- // array, but in _native_initialize we arrange so their position starts from state->enabled_values_count and thus
410
- // libdatadog doesn't touch them.
411
- int64_t metric_values[ALL_VALUE_TYPES_COUNT] = {0};
412
- uint8_t *position_for = state->position_for;
413
-
414
- metric_values[position_for[CPU_TIME_VALUE_ID]] = values.cpu_time_ns;
415
- metric_values[position_for[CPU_SAMPLES_VALUE_ID]] = values.cpu_samples;
416
- metric_values[position_for[WALL_TIME_VALUE_ID]] = values.wall_time_ns;
417
- metric_values[position_for[ALLOC_SAMPLES_VALUE_ID]] = values.alloc_samples;
418
-
419
- ddog_prof_Profile_AddResult result = ddog_prof_Profile_add(
420
- active_slot.profile,
421
- (ddog_prof_Sample) {
422
- .locations = locations,
423
- .values = (ddog_Slice_I64) {.ptr = metric_values, .len = state->enabled_values_count},
424
- .labels = labels
425
- }
426
- );
427
-
428
- sampler_unlock_active_profile(active_slot);
429
-
430
- if (result.tag == DDOG_PROF_PROFILE_ADD_RESULT_ERR) {
431
- rb_raise(rb_eArgError, "Failed to record sample: %"PRIsVALUE, get_error_details_and_drop(&result.err));
432
- }
433
- }
434
-
435
- void record_endpoint(VALUE recorder_instance, uint64_t local_root_span_id, ddog_CharSlice endpoint) {
436
- struct stack_recorder_state *state;
437
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
438
-
439
- struct active_slot_pair active_slot = sampler_lock_active_profile(state);
440
-
441
- ddog_prof_Profile_set_endpoint(active_slot.profile, local_root_span_id, endpoint);
442
-
443
- sampler_unlock_active_profile(active_slot);
444
- }
445
-
446
- static void *call_serialize_without_gvl(void *call_args) {
447
- struct call_serialize_without_gvl_arguments *args = (struct call_serialize_without_gvl_arguments *) call_args;
448
-
449
- args->profile = serializer_flip_active_and_inactive_slots(args->state);
450
- args->result = ddog_prof_Profile_serialize(args->profile, &args->finish_timestamp, NULL /* duration_nanos is optional */);
451
- args->serialize_ran = true;
452
-
453
- return NULL; // Unused
454
- }
455
-
456
- VALUE enforce_recorder_instance(VALUE object) {
457
- Check_TypedStruct(object, &stack_recorder_typed_data);
458
- return object;
459
- }
460
-
461
- static struct active_slot_pair sampler_lock_active_profile(struct stack_recorder_state *state) {
462
- int error;
463
-
464
- for (int attempts = 0; attempts < 2; attempts++) {
465
- error = pthread_mutex_trylock(&state->slot_one_mutex);
466
- if (error && error != EBUSY) ENFORCE_SUCCESS_GVL(error);
467
-
468
- // Slot one is active
469
- if (!error) return (struct active_slot_pair) {.mutex = &state->slot_one_mutex, .profile = state->slot_one_profile};
470
-
471
- // If we got here, slot one was not active, let's try slot two
472
-
473
- error = pthread_mutex_trylock(&state->slot_two_mutex);
474
- if (error && error != EBUSY) ENFORCE_SUCCESS_GVL(error);
475
-
476
- // Slot two is active
477
- if (!error) return (struct active_slot_pair) {.mutex = &state->slot_two_mutex, .profile = state->slot_two_profile};
478
- }
479
-
480
- // We already tried both multiple times, and we did not succeed. This is not expected to happen. Let's stop sampling.
481
- rb_raise(rb_eRuntimeError, "Failed to grab either mutex in sampler_lock_active_profile");
482
- }
483
-
484
- static void sampler_unlock_active_profile(struct active_slot_pair active_slot) {
485
- ENFORCE_SUCCESS_GVL(pthread_mutex_unlock(active_slot.mutex));
486
- }
487
-
488
- static ddog_prof_Profile *serializer_flip_active_and_inactive_slots(struct stack_recorder_state *state) {
489
- int previously_active_slot = state->active_slot;
490
-
491
- if (previously_active_slot != 1 && previously_active_slot != 2) {
492
- grab_gvl_and_raise(rb_eRuntimeError, "Unexpected active_slot state %d in serializer_flip_active_and_inactive_slots", previously_active_slot);
493
- }
494
-
495
- pthread_mutex_t *previously_active = (previously_active_slot == 1) ? &state->slot_one_mutex : &state->slot_two_mutex;
496
- pthread_mutex_t *previously_inactive = (previously_active_slot == 1) ? &state->slot_two_mutex : &state->slot_one_mutex;
497
-
498
- // Release the lock, thus making this slot active
499
- ENFORCE_SUCCESS_NO_GVL(pthread_mutex_unlock(previously_inactive));
500
-
501
- // Grab the lock, thus making this slot inactive
502
- ENFORCE_SUCCESS_NO_GVL(pthread_mutex_lock(previously_active));
503
-
504
- // Update active_slot
505
- state->active_slot = (previously_active_slot == 1) ? 2 : 1;
506
-
507
- // Return profile for previously active slot (now inactive)
508
- return (previously_active_slot == 1) ? state->slot_one_profile : state->slot_two_profile;
509
- }
510
-
511
- // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec.
512
- // It SHOULD NOT be used for other purposes.
513
- static VALUE _native_active_slot(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) {
514
- struct stack_recorder_state *state;
515
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
516
-
517
- return INT2NUM(state->active_slot);
518
- }
519
-
520
- // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec.
521
- // It SHOULD NOT be used for other purposes.
522
- static VALUE _native_is_slot_one_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { return test_slot_mutex_state(recorder_instance, 1); }
523
-
524
- // This method exists only to enable testing Datadog::Profiling::StackRecorder behavior using RSpec.
525
- // It SHOULD NOT be used for other purposes.
526
- static VALUE _native_is_slot_two_mutex_locked(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance) { return test_slot_mutex_state(recorder_instance, 2); }
527
-
528
- static VALUE test_slot_mutex_state(VALUE recorder_instance, int slot) {
529
- struct stack_recorder_state *state;
530
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
531
-
532
- pthread_mutex_t *slot_mutex = (slot == 1) ? &state->slot_one_mutex : &state->slot_two_mutex;
533
-
534
- // Like Heisenberg's uncertainty principle, we can't observe without affecting...
535
- int error = pthread_mutex_trylock(slot_mutex);
536
-
537
- if (error == 0) {
538
- // Mutex was unlocked
539
- ENFORCE_SUCCESS_GVL(pthread_mutex_unlock(slot_mutex));
540
- return Qfalse;
541
- } else if (error == EBUSY) {
542
- // Mutex was locked
543
- return Qtrue;
544
- } else {
545
- ENFORCE_SUCCESS_GVL(error);
546
- rb_raise(rb_eRuntimeError, "Failed to raise exception in test_slot_mutex_state; this should never happen");
547
- }
548
- }
549
-
550
- // Note that this is using CLOCK_REALTIME (e.g. actual time since unix epoch) and not the CLOCK_MONOTONIC as we use in
551
- // monotonic_wall_time_now_ns (used in other parts of the codebase)
552
- static ddog_Timespec time_now(void) {
553
- struct timespec current_time;
554
-
555
- if (clock_gettime(CLOCK_REALTIME, &current_time) != 0) ENFORCE_SUCCESS_GVL(errno);
556
-
557
- return (ddog_Timespec) {.seconds = current_time.tv_sec, .nanoseconds = (uint32_t) current_time.tv_nsec};
558
- }
559
-
560
- // After the Ruby VM forks, this method gets called in the child process to clean up any leftover state from the parent.
561
- //
562
- // Assumption: This method gets called BEFORE restarting profiling -- e.g. there are no components attempting to
563
- // trigger samples at the same time.
564
- static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE recorder_instance) {
565
- struct stack_recorder_state *state;
566
- TypedData_Get_Struct(recorder_instance, struct stack_recorder_state, &stack_recorder_typed_data, state);
567
-
568
- // In case the fork happened halfway through `serializer_flip_active_and_inactive_slots` execution and the
569
- // resulting state is inconsistent, we make sure to reset it back to the initial state.
570
- initialize_slot_concurrency_control(state);
571
-
572
- ddog_prof_Profile_reset(state->slot_one_profile, /* start_time: */ NULL);
573
- ddog_prof_Profile_reset(state->slot_two_profile, /* start_time: */ NULL);
574
-
575
- return Qtrue;
576
- }
577
-
578
- // Assumption 1: This method is called with the GVL being held, because `ddog_prof_Profile_reset` mutates the profile and should
579
- // not be interrupted part-way through by a VM fork.
580
- static void serializer_set_start_timestamp_for_next_profile(struct stack_recorder_state *state, ddog_Timespec timestamp) {
581
- // Before making this profile active, we reset it so that it uses the correct timestamp for its start
582
- ddog_prof_Profile *next_profile = (state->active_slot == 1) ? state->slot_two_profile : state->slot_one_profile;
583
-
584
- if (!ddog_prof_Profile_reset(next_profile, &timestamp)) rb_raise(rb_eRuntimeError, "Failed to reset profile");
585
- }
586
-
587
- static VALUE _native_record_endpoint(DDTRACE_UNUSED VALUE _self, VALUE recorder_instance, VALUE local_root_span_id, VALUE endpoint) {
588
- ENFORCE_TYPE(local_root_span_id, T_FIXNUM);
589
- record_endpoint(recorder_instance, NUM2ULL(local_root_span_id), char_slice_from_ruby_string(endpoint));
590
- return Qtrue;
591
- }
@@ -1,14 +0,0 @@
1
- #pragma once
2
-
3
- #include <datadog/profiling.h>
4
-
5
- typedef struct sample_values {
6
- int64_t cpu_time_ns;
7
- int64_t wall_time_ns;
8
- uint32_t cpu_samples;
9
- uint32_t alloc_samples;
10
- } sample_values;
11
-
12
- void record_sample(VALUE recorder_instance, ddog_prof_Slice_Location locations, sample_values values, ddog_prof_Slice_Label labels);
13
- void record_endpoint(VALUE recorder_instance, uint64_t local_root_span_id, ddog_CharSlice endpoint);
14
- VALUE enforce_recorder_instance(VALUE object);
@@ -1,17 +0,0 @@
1
- #include <errno.h>
2
- #include <time.h>
3
-
4
- #include "ruby_helpers.h"
5
- #include "time_helpers.h"
6
-
7
- // Safety: This function is assumed never to raise exceptions by callers when raise_on_failure == false
8
- long monotonic_wall_time_now_ns(bool raise_on_failure) {
9
- struct timespec current_monotonic;
10
-
11
- if (clock_gettime(CLOCK_MONOTONIC, &current_monotonic) != 0) {
12
- if (raise_on_failure) ENFORCE_SUCCESS_GVL(errno);
13
- return 0;
14
- }
15
-
16
- return current_monotonic.tv_nsec + SECONDS_AS_NS(current_monotonic.tv_sec);
17
- }
@@ -1,10 +0,0 @@
1
- #pragma once
2
-
3
- #define SECONDS_AS_NS(value) (value * 1000 * 1000 * 1000L)
4
- #define MILLIS_AS_NS(value) (value * 1000 * 1000L)
5
-
6
- #define RAISE_ON_FAILURE true
7
- #define DO_NOT_RAISE_ON_FAILURE false
8
-
9
- // Safety: This function is assumed never to raise exceptions by callers when raise_on_failure == false
10
- long monotonic_wall_time_now_ns(bool raise_on_failure);
@@ -1,32 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require_relative '../flush'
4
-
5
- module Datadog
6
- module CI
7
- module Configuration
8
- # Adds CI behavior to Datadog trace components
9
- module Components
10
- def initialize(settings)
11
- # Activate CI mode if enabled
12
- activate_ci!(settings) if settings.ci.enabled
13
-
14
- # Initialize normally
15
- super
16
- end
17
-
18
- def activate_ci!(settings)
19
- # Activate underlying tracing test mode
20
- settings.tracing.test_mode.enabled = true
21
-
22
- # Choose user defined TraceFlush or default to CI TraceFlush
23
- settings.tracing.test_mode.trace_flush = settings.ci.trace_flush \
24
- || CI::Flush::Finished.new
25
-
26
- # Pass through any other options
27
- settings.tracing.test_mode.writer_options = settings.ci.writer_options
28
- end
29
- end
30
- end
31
- end
32
- end