ddtrace 1.0.0 → 1.10.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +529 -2
- data/LICENSE-3rdparty.csv +7 -2
- data/README.md +10 -5
- data/ext/ddtrace_profiling_loader/ddtrace_profiling_loader.c +134 -0
- data/ext/ddtrace_profiling_loader/extconf.rb +72 -0
- data/ext/ddtrace_profiling_native_extension/NativeExtensionDesign.md +79 -9
- data/ext/ddtrace_profiling_native_extension/clock_id.h +22 -1
- data/ext/ddtrace_profiling_native_extension/clock_id_from_pthread.c +33 -10
- data/ext/ddtrace_profiling_native_extension/clock_id_noop.c +11 -2
- data/ext/ddtrace_profiling_native_extension/collectors_cpu_and_wall_time_worker.c +821 -0
- data/ext/ddtrace_profiling_native_extension/collectors_dynamic_sampling_rate.c +142 -0
- data/ext/ddtrace_profiling_native_extension/collectors_dynamic_sampling_rate.h +14 -0
- data/ext/ddtrace_profiling_native_extension/collectors_idle_sampling_helper.c +241 -0
- data/ext/ddtrace_profiling_native_extension/collectors_idle_sampling_helper.h +3 -0
- data/ext/ddtrace_profiling_native_extension/collectors_stack.c +379 -0
- data/ext/ddtrace_profiling_native_extension/collectors_stack.h +20 -0
- data/ext/ddtrace_profiling_native_extension/collectors_thread_context.c +978 -0
- data/ext/ddtrace_profiling_native_extension/collectors_thread_context.h +14 -0
- data/ext/ddtrace_profiling_native_extension/extconf.rb +147 -116
- data/ext/ddtrace_profiling_native_extension/helpers.h +17 -0
- data/ext/ddtrace_profiling_native_extension/http_transport.c +347 -0
- data/ext/ddtrace_profiling_native_extension/libdatadog_helpers.h +25 -0
- data/ext/ddtrace_profiling_native_extension/native_extension_helpers.rb +319 -0
- data/ext/ddtrace_profiling_native_extension/private_vm_api_access.c +706 -9
- data/ext/ddtrace_profiling_native_extension/private_vm_api_access.h +42 -0
- data/ext/ddtrace_profiling_native_extension/profiling.c +230 -3
- data/ext/ddtrace_profiling_native_extension/ruby_helpers.c +110 -0
- data/ext/ddtrace_profiling_native_extension/ruby_helpers.h +89 -0
- data/ext/ddtrace_profiling_native_extension/setup_signal_handler.c +115 -0
- data/ext/ddtrace_profiling_native_extension/setup_signal_handler.h +11 -0
- data/ext/ddtrace_profiling_native_extension/stack_recorder.c +591 -0
- data/ext/ddtrace_profiling_native_extension/stack_recorder.h +14 -0
- data/ext/ddtrace_profiling_native_extension/time_helpers.c +17 -0
- data/ext/ddtrace_profiling_native_extension/time_helpers.h +10 -0
- data/lib/datadog/appsec/assets/blocked.html +98 -3
- data/lib/datadog/appsec/assets/blocked.json +1 -0
- data/lib/datadog/appsec/assets/blocked.text +5 -0
- data/lib/datadog/appsec/assets/waf_rules/recommended.json +1722 -636
- data/lib/datadog/appsec/assets/waf_rules/strict.json +366 -74
- data/lib/datadog/appsec/assets.rb +2 -4
- data/lib/datadog/appsec/autoload.rb +5 -10
- data/lib/datadog/appsec/component.rb +41 -0
- data/lib/datadog/appsec/configuration/settings.rb +61 -20
- data/lib/datadog/appsec/configuration.rb +20 -4
- data/lib/datadog/appsec/contrib/auto_instrument.rb +0 -4
- data/lib/datadog/appsec/contrib/configuration/settings.rb +1 -3
- data/lib/datadog/appsec/contrib/integration.rb +0 -2
- data/lib/datadog/appsec/contrib/patcher.rb +0 -2
- data/lib/datadog/appsec/contrib/rack/configuration/settings.rb +2 -4
- data/lib/datadog/appsec/contrib/rack/ext.rb +0 -2
- data/lib/datadog/appsec/contrib/rack/gateway/request.rb +97 -0
- data/lib/datadog/appsec/contrib/rack/gateway/response.rb +30 -0
- data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +137 -87
- data/lib/datadog/appsec/contrib/rack/integration.rb +5 -6
- data/lib/datadog/appsec/contrib/rack/patcher.rb +4 -5
- data/lib/datadog/appsec/contrib/rack/reactive/request.rb +31 -38
- data/lib/datadog/appsec/contrib/rack/reactive/request_body.rb +63 -0
- data/lib/datadog/appsec/contrib/rack/reactive/response.rb +21 -22
- data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +43 -0
- data/lib/datadog/appsec/contrib/rack/request_middleware.rb +117 -21
- data/lib/datadog/appsec/contrib/rails/configuration/settings.rb +2 -4
- data/lib/datadog/appsec/contrib/rails/ext.rb +0 -2
- data/lib/datadog/appsec/contrib/rails/framework.rb +0 -2
- data/lib/datadog/appsec/contrib/rails/gateway/request.rb +67 -0
- data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +86 -0
- data/lib/datadog/appsec/contrib/rails/integration.rb +5 -7
- data/lib/datadog/appsec/contrib/rails/patcher.rb +44 -10
- data/lib/datadog/appsec/contrib/rails/reactive/action.rb +69 -0
- data/lib/datadog/appsec/contrib/rails/request.rb +34 -0
- data/lib/datadog/appsec/contrib/rails/request_middleware.rb +0 -2
- data/lib/datadog/appsec/contrib/sinatra/configuration/settings.rb +2 -4
- data/lib/datadog/appsec/contrib/sinatra/ext.rb +1 -2
- data/lib/datadog/appsec/contrib/sinatra/framework.rb +0 -2
- data/lib/datadog/appsec/contrib/sinatra/gateway/request.rb +17 -0
- data/lib/datadog/appsec/contrib/sinatra/gateway/route_params.rb +23 -0
- data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +131 -0
- data/lib/datadog/appsec/contrib/sinatra/integration.rb +4 -6
- data/lib/datadog/appsec/contrib/sinatra/patcher.rb +94 -12
- data/lib/datadog/appsec/contrib/sinatra/reactive/routed.rb +64 -0
- data/lib/datadog/appsec/contrib/sinatra/request_middleware.rb +0 -2
- data/lib/datadog/appsec/event.rb +33 -26
- data/lib/datadog/appsec/ext.rb +9 -0
- data/lib/datadog/appsec/extensions.rb +51 -26
- data/lib/datadog/appsec/instrumentation/gateway/argument.rb +24 -0
- data/lib/datadog/appsec/instrumentation/gateway.rb +26 -6
- data/lib/datadog/appsec/instrumentation.rb +9 -0
- data/lib/datadog/appsec/monitor/gateway/watcher.rb +86 -0
- data/lib/datadog/appsec/monitor/reactive/set_user.rb +61 -0
- data/lib/datadog/appsec/monitor.rb +11 -0
- data/lib/datadog/appsec/processor.rb +143 -21
- data/lib/datadog/appsec/rate_limiter.rb +5 -2
- data/lib/datadog/appsec/reactive/address_hash.rb +6 -2
- data/lib/datadog/appsec/reactive/engine.rb +12 -9
- data/lib/datadog/appsec/reactive/operation.rb +22 -6
- data/lib/datadog/appsec/reactive/subscriber.rb +2 -1
- data/lib/datadog/appsec/response.rb +61 -0
- data/lib/datadog/appsec/utils/http/media_range.rb +199 -0
- data/lib/datadog/appsec/utils/http/media_type.rb +85 -0
- data/lib/datadog/appsec/utils/http.rb +9 -0
- data/lib/datadog/appsec/utils.rb +7 -0
- data/lib/datadog/appsec.rb +25 -7
- data/lib/datadog/ci/configuration/components.rb +1 -3
- data/lib/datadog/ci/configuration/settings.rb +1 -3
- data/lib/datadog/ci/contrib/cucumber/configuration/settings.rb +2 -4
- data/lib/datadog/ci/contrib/cucumber/ext.rb +0 -2
- data/lib/datadog/ci/contrib/cucumber/formatter.rb +5 -7
- data/lib/datadog/ci/contrib/cucumber/instrumentation.rb +1 -3
- data/lib/datadog/ci/contrib/cucumber/integration.rb +4 -6
- data/lib/datadog/ci/contrib/cucumber/patcher.rb +2 -4
- data/lib/datadog/ci/contrib/rspec/configuration/settings.rb +2 -4
- data/lib/datadog/ci/contrib/rspec/example.rb +5 -7
- data/lib/datadog/ci/contrib/rspec/ext.rb +0 -2
- data/lib/datadog/ci/contrib/rspec/integration.rb +4 -6
- data/lib/datadog/ci/contrib/rspec/patcher.rb +2 -4
- data/lib/datadog/ci/ext/app_types.rb +0 -2
- data/lib/datadog/ci/ext/environment.rb +98 -48
- data/lib/datadog/ci/ext/settings.rb +0 -2
- data/lib/datadog/ci/ext/test.rb +0 -2
- data/lib/datadog/ci/extensions.rb +4 -6
- data/lib/datadog/ci/flush.rb +2 -4
- data/lib/datadog/ci/test.rb +3 -5
- data/lib/datadog/ci.rb +6 -8
- data/lib/datadog/core/buffer/cruby.rb +1 -3
- data/lib/datadog/core/buffer/random.rb +0 -2
- data/lib/datadog/core/buffer/thread_safe.rb +1 -3
- data/lib/datadog/core/chunker.rb +0 -2
- data/lib/datadog/core/configuration/agent_settings_resolver.rb +9 -29
- data/lib/datadog/core/configuration/base.rb +14 -4
- data/lib/datadog/core/configuration/components.rb +31 -266
- data/lib/datadog/core/configuration/dependency_resolver.rb +0 -2
- data/lib/datadog/core/configuration/ext.rb +24 -0
- data/lib/datadog/core/configuration/option.rb +0 -2
- data/lib/datadog/core/configuration/option_definition.rb +12 -5
- data/lib/datadog/core/configuration/option_definition_set.rb +1 -3
- data/lib/datadog/core/configuration/option_set.rb +0 -2
- data/lib/datadog/core/configuration/options.rb +3 -5
- data/lib/datadog/core/configuration/settings.rb +92 -255
- data/lib/datadog/core/configuration.rb +16 -15
- data/lib/datadog/core/diagnostics/environment_logger.rb +10 -7
- data/lib/datadog/core/diagnostics/health.rb +4 -24
- data/lib/datadog/core/encoding.rb +0 -4
- data/lib/datadog/core/environment/cgroup.rb +4 -6
- data/lib/datadog/core/environment/class_count.rb +0 -2
- data/lib/datadog/core/environment/container.rb +3 -6
- data/lib/datadog/core/environment/ext.rb +1 -3
- data/lib/datadog/core/environment/gc.rb +0 -2
- data/lib/datadog/core/environment/identity.rb +2 -4
- data/lib/datadog/core/environment/platform.rb +38 -0
- data/lib/datadog/core/environment/socket.rb +1 -3
- data/lib/datadog/core/environment/thread_count.rb +0 -2
- data/lib/datadog/core/environment/variable_helpers.rb +83 -13
- data/lib/datadog/core/environment/vm_cache.rb +17 -2
- data/lib/datadog/core/error.rb +1 -3
- data/lib/datadog/core/extensions.rb +1 -3
- data/lib/datadog/core/git/ext.rb +0 -2
- data/lib/datadog/core/header_collection.rb +41 -0
- data/lib/datadog/core/logger.rb +0 -2
- data/lib/datadog/core/logging/ext.rb +11 -0
- data/lib/datadog/core/metrics/client.rb +25 -16
- data/lib/datadog/core/metrics/ext.rb +0 -4
- data/lib/datadog/core/metrics/helpers.rb +0 -2
- data/lib/datadog/core/metrics/logging.rb +0 -2
- data/lib/datadog/core/metrics/metric.rb +0 -2
- data/lib/datadog/core/metrics/options.rb +3 -5
- data/lib/datadog/core/pin.rb +0 -2
- data/lib/datadog/core/runtime/ext.rb +3 -3
- data/lib/datadog/core/runtime/metrics.rb +28 -14
- data/lib/datadog/core/telemetry/client.rb +77 -0
- data/lib/datadog/core/telemetry/collector.rb +231 -0
- data/lib/datadog/core/telemetry/emitter.rb +46 -0
- data/lib/datadog/core/telemetry/event.rb +67 -0
- data/lib/datadog/core/telemetry/ext.rb +9 -0
- data/lib/datadog/core/telemetry/heartbeat.rb +35 -0
- data/lib/datadog/core/telemetry/http/adapters/net.rb +111 -0
- data/lib/datadog/core/telemetry/http/env.rb +18 -0
- data/lib/datadog/core/telemetry/http/ext.rb +20 -0
- data/lib/datadog/core/telemetry/http/response.rb +64 -0
- data/lib/datadog/core/telemetry/http/transport.rb +51 -0
- data/lib/datadog/core/telemetry/v1/app_event.rb +50 -0
- data/lib/datadog/core/telemetry/v1/application.rb +86 -0
- data/lib/datadog/core/telemetry/v1/configuration.rb +25 -0
- data/lib/datadog/core/telemetry/v1/dependency.rb +36 -0
- data/lib/datadog/core/telemetry/v1/host.rb +51 -0
- data/lib/datadog/core/telemetry/v1/integration.rb +58 -0
- data/lib/datadog/core/telemetry/v1/product.rb +28 -0
- data/lib/datadog/core/telemetry/v1/telemetry_request.rb +100 -0
- data/lib/datadog/core/utils/compression.rb +5 -3
- data/lib/datadog/core/utils/forking.rb +0 -2
- data/lib/datadog/core/utils/network.rb +140 -0
- data/lib/datadog/core/utils/object_set.rb +1 -3
- data/lib/datadog/core/utils/only_once.rb +0 -2
- data/lib/datadog/core/utils/safe_dup.rb +0 -2
- data/lib/datadog/core/utils/sequence.rb +5 -2
- data/lib/datadog/core/utils/string_table.rb +1 -3
- data/lib/datadog/core/utils/time.rb +3 -7
- data/lib/datadog/core/utils.rb +1 -24
- data/lib/datadog/core/vendor/ipaddr.rb +78 -0
- data/lib/datadog/core/vendor/multipart-post/multipart/post/composite_read_io.rb +0 -2
- data/lib/datadog/core/vendor/multipart-post/multipart/post/multipartable.rb +2 -4
- data/lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb +0 -2
- data/lib/datadog/core/vendor/multipart-post/multipart/post/version.rb +0 -2
- data/lib/datadog/core/vendor/multipart-post/multipart/post.rb +0 -2
- data/lib/datadog/core/vendor/multipart-post/multipart.rb +0 -2
- data/lib/datadog/core/vendor/multipart-post/net/http/post/multipart.rb +3 -5
- data/lib/datadog/core/worker.rb +0 -2
- data/lib/datadog/core/workers/async.rb +4 -6
- data/lib/datadog/core/workers/interval_loop.rb +0 -2
- data/lib/datadog/core/workers/polling.rb +2 -4
- data/lib/datadog/core/workers/queue.rb +0 -2
- data/lib/datadog/core/workers/runtime_metrics.rb +4 -9
- data/lib/datadog/core.rb +27 -56
- data/lib/datadog/kit/appsec/events.rb +74 -0
- data/lib/datadog/kit/enable_core_dumps.rb +50 -0
- data/lib/datadog/kit/identity.rb +70 -0
- data/lib/datadog/kit.rb +9 -0
- data/lib/datadog/opentelemetry/api/context.rb +186 -0
- data/lib/datadog/opentelemetry/api/trace/span.rb +14 -0
- data/lib/datadog/opentelemetry/sdk/configurator.rb +37 -0
- data/lib/datadog/opentelemetry/sdk/id_generator.rb +26 -0
- data/lib/datadog/opentelemetry/sdk/propagator.rb +90 -0
- data/lib/datadog/opentelemetry/sdk/span_processor.rb +91 -0
- data/lib/datadog/opentelemetry.rb +47 -0
- data/lib/datadog/opentracer/binary_propagator.rb +0 -2
- data/lib/datadog/opentracer/carrier.rb +0 -2
- data/lib/datadog/opentracer/distributed_headers.rb +7 -11
- data/lib/datadog/opentracer/global_tracer.rb +0 -2
- data/lib/datadog/opentracer/propagator.rb +0 -2
- data/lib/datadog/opentracer/rack_propagator.rb +10 -11
- data/lib/datadog/opentracer/scope.rb +0 -2
- data/lib/datadog/opentracer/scope_manager.rb +0 -2
- data/lib/datadog/opentracer/span.rb +1 -3
- data/lib/datadog/opentracer/span_context.rb +0 -2
- data/lib/datadog/opentracer/span_context_factory.rb +0 -2
- data/lib/datadog/opentracer/text_map_propagator.rb +13 -14
- data/lib/datadog/opentracer/thread_local_scope.rb +0 -2
- data/lib/datadog/opentracer/thread_local_scope_manager.rb +24 -3
- data/lib/datadog/opentracer/tracer.rb +23 -25
- data/lib/datadog/opentracer.rb +16 -18
- data/lib/datadog/profiling/backtrace_location.rb +0 -2
- data/lib/datadog/profiling/buffer.rb +3 -5
- data/lib/datadog/profiling/collectors/code_provenance.rb +1 -2
- data/lib/datadog/profiling/collectors/cpu_and_wall_time_worker.rb +96 -0
- data/lib/datadog/profiling/collectors/dynamic_sampling_rate.rb +12 -0
- data/lib/datadog/profiling/collectors/idle_sampling_helper.rb +66 -0
- data/lib/datadog/profiling/collectors/old_stack.rb +301 -0
- data/lib/datadog/profiling/collectors/stack.rb +3 -289
- data/lib/datadog/profiling/collectors/thread_context.rb +46 -0
- data/lib/datadog/profiling/component.rb +161 -0
- data/lib/datadog/profiling/encoding/profile.rb +8 -15
- data/lib/datadog/profiling/event.rb +0 -2
- data/lib/datadog/profiling/events/stack.rb +1 -3
- data/lib/datadog/profiling/exporter.rb +69 -11
- data/lib/datadog/profiling/ext/forking.rb +41 -44
- data/lib/datadog/profiling/ext.rb +4 -18
- data/lib/datadog/profiling/flush.rb +25 -58
- data/lib/datadog/profiling/http_transport.rb +130 -0
- data/lib/datadog/profiling/load_native_extension.rb +20 -0
- data/lib/datadog/profiling/native_extension.rb +0 -2
- data/lib/datadog/profiling/old_recorder.rb +107 -0
- data/lib/datadog/profiling/pprof/builder.rb +4 -6
- data/lib/datadog/profiling/pprof/converter.rb +1 -3
- data/lib/datadog/profiling/pprof/message_set.rb +1 -3
- data/lib/datadog/profiling/pprof/payload.rb +0 -2
- data/lib/datadog/profiling/pprof/pprof_pb.rb +0 -2
- data/lib/datadog/profiling/pprof/stack_sample.rb +4 -6
- data/lib/datadog/profiling/pprof/string_table.rb +1 -3
- data/lib/datadog/profiling/pprof/template.rb +5 -7
- data/lib/datadog/profiling/preload.rb +1 -3
- data/lib/datadog/profiling/profiler.rb +7 -2
- data/lib/datadog/profiling/scheduler.rb +29 -52
- data/lib/datadog/profiling/stack_recorder.rb +74 -0
- data/lib/datadog/profiling/tag_builder.rb +51 -0
- data/lib/datadog/profiling/tasks/exec.rb +2 -4
- data/lib/datadog/profiling/tasks/help.rb +0 -2
- data/lib/datadog/profiling/tasks/setup.rb +8 -15
- data/lib/datadog/profiling/trace_identifiers/ddtrace.rb +2 -4
- data/lib/datadog/profiling/trace_identifiers/helper.rb +1 -3
- data/lib/datadog/profiling.rb +92 -50
- data/lib/datadog/tracing/analytics.rb +1 -3
- data/lib/datadog/tracing/buffer.rb +14 -12
- data/lib/datadog/tracing/client_ip.rb +61 -0
- data/lib/datadog/tracing/component.rb +176 -0
- data/lib/datadog/tracing/configuration/ext.rb +49 -6
- data/lib/datadog/tracing/configuration/settings.rb +451 -0
- data/lib/datadog/tracing/context.rb +1 -3
- data/lib/datadog/tracing/context_provider.rb +18 -4
- data/lib/datadog/tracing/contrib/action_cable/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/action_cable/event.rb +4 -7
- data/lib/datadog/tracing/contrib/action_cable/events/broadcast.rb +4 -6
- data/lib/datadog/tracing/contrib/action_cable/events/perform_action.rb +3 -5
- data/lib/datadog/tracing/contrib/action_cable/events/transmit.rb +4 -6
- data/lib/datadog/tracing/contrib/action_cable/events.rb +4 -6
- data/lib/datadog/tracing/contrib/action_cable/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/action_cable/instrumentation.rb +3 -6
- data/lib/datadog/tracing/contrib/action_cable/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/action_cable/patcher.rb +4 -6
- data/lib/datadog/tracing/contrib/action_mailer/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/action_mailer/event.rb +3 -5
- data/lib/datadog/tracing/contrib/action_mailer/events/deliver.rb +3 -5
- data/lib/datadog/tracing/contrib/action_mailer/events/process.rb +3 -5
- data/lib/datadog/tracing/contrib/action_mailer/events.rb +2 -4
- data/lib/datadog/tracing/contrib/action_mailer/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/action_mailer/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/action_mailer/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +10 -8
- data/lib/datadog/tracing/contrib/action_pack/action_controller/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/action_pack/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/action_pack/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/action_pack/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/action_pack/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/action_pack/utils.rb +1 -3
- data/lib/datadog/tracing/contrib/action_view/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/action_view/event.rb +1 -3
- data/lib/datadog/tracing/contrib/action_view/events/render_partial.rb +5 -7
- data/lib/datadog/tracing/contrib/action_view/events/render_template.rb +5 -7
- data/lib/datadog/tracing/contrib/action_view/events.rb +2 -4
- data/lib/datadog/tracing/contrib/action_view/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/action_view/instrumentation/partial_renderer.rb +2 -4
- data/lib/datadog/tracing/contrib/action_view/instrumentation/template_renderer.rb +2 -4
- data/lib/datadog/tracing/contrib/action_view/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/action_view/patcher.rb +7 -10
- data/lib/datadog/tracing/contrib/action_view/utils.rb +1 -3
- data/lib/datadog/tracing/contrib/active_job/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/active_job/event.rb +3 -5
- data/lib/datadog/tracing/contrib/active_job/events/discard.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events/enqueue.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_at.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events/enqueue_retry.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events/perform.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events/retry_stopped.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/events.rb +6 -8
- data/lib/datadog/tracing/contrib/active_job/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/active_job/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/active_job/log_injection.rb +0 -4
- data/lib/datadog/tracing/contrib/active_job/patcher.rb +4 -6
- data/lib/datadog/tracing/contrib/active_model_serializers/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/active_model_serializers/event.rb +4 -7
- data/lib/datadog/tracing/contrib/active_model_serializers/events/render.rb +3 -5
- data/lib/datadog/tracing/contrib/active_model_serializers/events/serialize.rb +2 -4
- data/lib/datadog/tracing/contrib/active_model_serializers/events.rb +2 -4
- data/lib/datadog/tracing/contrib/active_model_serializers/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/active_model_serializers/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/active_model_serializers/patcher.rb +3 -6
- data/lib/datadog/tracing/contrib/active_record/configuration/makara_resolver.rb +0 -2
- data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +4 -6
- data/lib/datadog/tracing/contrib/active_record/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/active_record/event.rb +1 -3
- data/lib/datadog/tracing/contrib/active_record/events/instantiation.rb +4 -6
- data/lib/datadog/tracing/contrib/active_record/events/sql.rb +6 -8
- data/lib/datadog/tracing/contrib/active_record/events.rb +2 -4
- data/lib/datadog/tracing/contrib/active_record/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/active_record/integration.rb +6 -8
- data/lib/datadog/tracing/contrib/active_record/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/active_record/utils.rb +3 -5
- data/lib/datadog/tracing/contrib/active_record/vendor/connection_specification.rb +1 -3
- data/lib/datadog/tracing/contrib/active_support/cache/instrumentation.rb +19 -11
- data/lib/datadog/tracing/contrib/active_support/cache/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/active_support/cache/redis.rb +1 -3
- data/lib/datadog/tracing/contrib/active_support/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/active_support/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/active_support/integration.rb +5 -7
- data/lib/datadog/tracing/contrib/active_support/notifications/event.rb +1 -3
- data/lib/datadog/tracing/contrib/active_support/notifications/subscriber.rb +1 -3
- data/lib/datadog/tracing/contrib/active_support/notifications/subscription.rb +4 -4
- data/lib/datadog/tracing/contrib/active_support/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/analytics.rb +1 -3
- data/lib/datadog/tracing/contrib/auto_instrument.rb +4 -6
- data/lib/datadog/tracing/contrib/aws/configuration/settings.rb +6 -5
- data/lib/datadog/tracing/contrib/aws/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/aws/instrumentation.rb +5 -6
- data/lib/datadog/tracing/contrib/aws/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/aws/parsed_context.rb +0 -2
- data/lib/datadog/tracing/contrib/aws/patcher.rb +5 -7
- data/lib/datadog/tracing/contrib/aws/services.rb +0 -4
- data/lib/datadog/tracing/contrib/concurrent_ruby/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/concurrent_ruby/context_composite_executor_service.rb +10 -5
- data/lib/datadog/tracing/contrib/concurrent_ruby/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/concurrent_ruby/future_patch.rb +1 -3
- data/lib/datadog/tracing/contrib/concurrent_ruby/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/concurrent_ruby/patcher.rb +2 -5
- data/lib/datadog/tracing/contrib/configurable.rb +2 -4
- data/lib/datadog/tracing/contrib/configuration/resolver.rb +0 -2
- data/lib/datadog/tracing/contrib/configuration/resolvers/pattern_resolver.rb +1 -3
- data/lib/datadog/tracing/contrib/configuration/settings.rb +2 -6
- data/lib/datadog/tracing/contrib/dalli/configuration/settings.rb +6 -5
- data/lib/datadog/tracing/contrib/dalli/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/dalli/instrumentation.rb +10 -7
- data/lib/datadog/tracing/contrib/dalli/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/dalli/patcher.rb +3 -6
- data/lib/datadog/tracing/contrib/dalli/quantize.rb +1 -3
- data/lib/datadog/tracing/contrib/delayed_job/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/delayed_job/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/delayed_job/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/delayed_job/patcher.rb +8 -5
- data/lib/datadog/tracing/contrib/delayed_job/plugin.rb +11 -6
- data/lib/datadog/tracing/contrib/delayed_job/server_internal_tracer/worker.rb +32 -0
- data/lib/datadog/tracing/contrib/elasticsearch/configuration/settings.rb +7 -5
- data/lib/datadog/tracing/contrib/elasticsearch/ext.rb +3 -2
- data/lib/datadog/tracing/contrib/elasticsearch/integration.rb +12 -8
- data/lib/datadog/tracing/contrib/elasticsearch/patcher.rb +48 -11
- data/lib/datadog/tracing/contrib/elasticsearch/quantize.rb +1 -5
- data/lib/datadog/tracing/contrib/ethon/configuration/settings.rb +8 -5
- data/lib/datadog/tracing/contrib/ethon/easy_patch.rb +6 -9
- data/lib/datadog/tracing/contrib/ethon/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/ethon/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/ethon/multi_patch.rb +5 -6
- data/lib/datadog/tracing/contrib/ethon/patcher.rb +3 -7
- data/lib/datadog/tracing/contrib/excon/configuration/settings.rb +7 -5
- data/lib/datadog/tracing/contrib/excon/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/excon/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/excon/middleware.rb +8 -9
- data/lib/datadog/tracing/contrib/excon/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/ext.rb +30 -0
- data/lib/datadog/tracing/contrib/extensions.rb +5 -7
- data/lib/datadog/tracing/contrib/faraday/configuration/settings.rb +7 -5
- data/lib/datadog/tracing/contrib/faraday/connection.rb +0 -2
- data/lib/datadog/tracing/contrib/faraday/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/faraday/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/faraday/middleware.rb +8 -10
- data/lib/datadog/tracing/contrib/faraday/patcher.rb +5 -8
- data/lib/datadog/tracing/contrib/faraday/rack_builder.rb +0 -2
- data/lib/datadog/tracing/contrib/grape/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/grape/endpoint.rb +4 -9
- data/lib/datadog/tracing/contrib/grape/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/grape/instrumentation.rb +0 -2
- data/lib/datadog/tracing/contrib/grape/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/grape/patcher.rb +4 -7
- data/lib/datadog/tracing/contrib/graphql/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/graphql/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/graphql/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/graphql/patcher.rb +2 -6
- data/lib/datadog/tracing/contrib/grpc/configuration/settings.rb +10 -6
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +20 -7
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +17 -19
- data/lib/datadog/tracing/contrib/grpc/datadog_interceptor.rb +7 -6
- data/lib/datadog/tracing/contrib/grpc/distributed/fetcher.rb +26 -0
- data/lib/datadog/tracing/contrib/grpc/distributed/propagation.rb +42 -0
- data/lib/datadog/tracing/contrib/grpc/ext.rb +4 -2
- data/lib/datadog/tracing/contrib/grpc/integration.rb +11 -6
- data/lib/datadog/tracing/contrib/grpc/intercept_with_datadog.rb +0 -2
- data/lib/datadog/tracing/contrib/grpc/patcher.rb +3 -9
- data/lib/datadog/tracing/contrib/hanami/action_tracer.rb +45 -0
- data/lib/datadog/tracing/contrib/hanami/configuration/settings.rb +20 -0
- data/lib/datadog/tracing/contrib/hanami/ext.rb +22 -0
- data/lib/datadog/tracing/contrib/hanami/integration.rb +42 -0
- data/lib/datadog/tracing/contrib/hanami/patcher.rb +31 -0
- data/lib/datadog/tracing/contrib/hanami/plugin.rb +21 -0
- data/lib/datadog/tracing/contrib/hanami/renderer_policy_tracing.rb +39 -0
- data/lib/datadog/tracing/contrib/hanami/router_tracing.rb +42 -0
- data/lib/datadog/tracing/contrib/http/circuit_breaker.rb +1 -4
- data/lib/datadog/tracing/contrib/http/configuration/settings.rb +13 -5
- data/lib/datadog/tracing/contrib/http/distributed/fetcher.rb +38 -0
- data/lib/datadog/tracing/contrib/http/distributed/propagation.rb +37 -0
- data/lib/datadog/tracing/contrib/http/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/http/instrumentation.rb +8 -12
- data/lib/datadog/tracing/contrib/http/integration.rb +6 -8
- data/lib/datadog/tracing/contrib/http/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/http_annotation_helper.rb +0 -2
- data/lib/datadog/tracing/contrib/httpclient/configuration/settings.rb +13 -5
- data/lib/datadog/tracing/contrib/httpclient/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/httpclient/instrumentation.rb +9 -11
- data/lib/datadog/tracing/contrib/httpclient/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/httpclient/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/httprb/configuration/settings.rb +13 -5
- data/lib/datadog/tracing/contrib/httprb/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/httprb/instrumentation.rb +9 -11
- data/lib/datadog/tracing/contrib/httprb/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/httprb/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/kafka/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/kafka/consumer_event.rb +1 -2
- data/lib/datadog/tracing/contrib/kafka/consumer_group_event.rb +0 -2
- data/lib/datadog/tracing/contrib/kafka/event.rb +4 -5
- data/lib/datadog/tracing/contrib/kafka/events/connection/request.rb +2 -4
- data/lib/datadog/tracing/contrib/kafka/events/consumer/process_batch.rb +3 -5
- data/lib/datadog/tracing/contrib/kafka/events/consumer/process_message.rb +3 -5
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/heartbeat.rb +4 -6
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/join_group.rb +4 -6
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/leave_group.rb +4 -6
- data/lib/datadog/tracing/contrib/kafka/events/consumer_group/sync_group.rb +4 -6
- data/lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb +3 -4
- data/lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb +3 -4
- data/lib/datadog/tracing/contrib/kafka/events.rb +9 -11
- data/lib/datadog/tracing/contrib/kafka/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/kafka/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/kafka/patcher.rb +3 -6
- data/lib/datadog/tracing/contrib/lograge/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/lograge/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/lograge/instrumentation.rb +2 -4
- data/lib/datadog/tracing/contrib/lograge/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/lograge/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/mongodb/configuration/settings.rb +7 -5
- data/lib/datadog/tracing/contrib/mongodb/ext.rb +8 -2
- data/lib/datadog/tracing/contrib/mongodb/instrumentation.rb +3 -5
- data/lib/datadog/tracing/contrib/mongodb/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/mongodb/parsers.rb +1 -3
- data/lib/datadog/tracing/contrib/mongodb/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/mongodb/subscribers.rb +10 -6
- data/lib/datadog/tracing/contrib/mysql2/configuration/settings.rb +17 -4
- data/lib/datadog/tracing/contrib/mysql2/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/mysql2/instrumentation.rb +20 -7
- data/lib/datadog/tracing/contrib/mysql2/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/mysql2/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/patchable.rb +0 -2
- data/lib/datadog/tracing/contrib/patcher.rb +16 -6
- data/lib/datadog/tracing/contrib/pg/configuration/settings.rb +48 -0
- data/lib/datadog/tracing/contrib/pg/ext.rb +31 -0
- data/lib/datadog/tracing/contrib/pg/instrumentation.rb +166 -0
- data/lib/datadog/tracing/contrib/pg/integration.rb +41 -0
- data/lib/datadog/tracing/contrib/pg/patcher.rb +29 -0
- data/lib/datadog/tracing/contrib/presto/configuration/settings.rb +6 -5
- data/lib/datadog/tracing/contrib/presto/ext.rb +2 -2
- data/lib/datadog/tracing/contrib/presto/instrumentation.rb +5 -5
- data/lib/datadog/tracing/contrib/presto/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/presto/patcher.rb +4 -6
- data/lib/datadog/tracing/contrib/propagation/sql_comment/comment.rb +41 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment/ext.rb +31 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment/mode.rb +26 -0
- data/lib/datadog/tracing/contrib/propagation/sql_comment.rb +45 -0
- data/lib/datadog/tracing/contrib/qless/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/qless/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/qless/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/qless/patcher.rb +1 -6
- data/lib/datadog/tracing/contrib/qless/qless_job.rb +5 -5
- data/lib/datadog/tracing/contrib/qless/tracer_cleaner.rb +0 -4
- data/lib/datadog/tracing/contrib/que/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/que/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/que/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/que/patcher.rb +1 -4
- data/lib/datadog/tracing/contrib/que/tracer.rb +5 -3
- data/lib/datadog/tracing/contrib/racecar/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/racecar/event.rb +5 -7
- data/lib/datadog/tracing/contrib/racecar/events/batch.rb +6 -5
- data/lib/datadog/tracing/contrib/racecar/events/consume.rb +2 -4
- data/lib/datadog/tracing/contrib/racecar/events/message.rb +6 -5
- data/lib/datadog/tracing/contrib/racecar/events.rb +3 -5
- data/lib/datadog/tracing/contrib/racecar/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/racecar/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/racecar/patcher.rb +3 -6
- data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/rack/ext.rb +5 -2
- data/lib/datadog/tracing/contrib/rack/header_collection.rb +35 -0
- data/lib/datadog/tracing/contrib/rack/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/rack/middlewares.rb +170 -78
- data/lib/datadog/tracing/contrib/rack/patcher.rb +12 -4
- data/lib/datadog/tracing/contrib/rack/request_queue.rb +0 -2
- data/lib/datadog/tracing/contrib/rails/auto_instrument_railtie.rb +1 -3
- data/lib/datadog/tracing/contrib/rails/configuration/settings.rb +4 -3
- data/lib/datadog/tracing/contrib/rails/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/rails/framework.rb +18 -24
- data/lib/datadog/tracing/contrib/rails/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/rails/log_injection.rb +3 -20
- data/lib/datadog/tracing/contrib/rails/middlewares.rb +1 -4
- data/lib/datadog/tracing/contrib/rails/patcher.rb +7 -10
- data/lib/datadog/tracing/contrib/rails/railtie.rb +3 -5
- data/lib/datadog/tracing/contrib/rails/utils.rb +1 -3
- data/lib/datadog/tracing/contrib/rake/configuration/settings.rb +16 -3
- data/lib/datadog/tracing/contrib/rake/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/rake/instrumentation.rb +14 -11
- data/lib/datadog/tracing/contrib/rake/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/rake/patcher.rb +3 -7
- data/lib/datadog/tracing/contrib/redis/configuration/resolver.rb +1 -3
- data/lib/datadog/tracing/contrib/redis/configuration/settings.rb +6 -5
- data/lib/datadog/tracing/contrib/redis/ext.rb +3 -2
- data/lib/datadog/tracing/contrib/redis/instrumentation.rb +36 -28
- data/lib/datadog/tracing/contrib/redis/integration.rb +37 -6
- data/lib/datadog/tracing/contrib/redis/patcher.rb +56 -15
- data/lib/datadog/tracing/contrib/redis/quantize.rb +11 -10
- data/lib/datadog/tracing/contrib/redis/tags.rb +12 -12
- data/lib/datadog/tracing/contrib/redis/trace_middleware.rb +70 -0
- data/lib/datadog/tracing/contrib/redis/vendor/resolver.rb +0 -2
- data/lib/datadog/tracing/contrib/registerable.rb +0 -2
- data/lib/datadog/tracing/contrib/registry.rb +0 -2
- data/lib/datadog/tracing/contrib/resque/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/resque/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/resque/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/resque/patcher.rb +2 -5
- data/lib/datadog/tracing/contrib/resque/resque_job.rb +7 -6
- data/lib/datadog/tracing/contrib/rest_client/configuration/settings.rb +9 -5
- data/lib/datadog/tracing/contrib/rest_client/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/rest_client/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/rest_client/patcher.rb +2 -6
- data/lib/datadog/tracing/contrib/rest_client/request_patch.rb +7 -8
- data/lib/datadog/tracing/contrib/semantic_logger/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/semantic_logger/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/semantic_logger/instrumentation.rb +2 -4
- data/lib/datadog/tracing/contrib/semantic_logger/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/semantic_logger/patcher.rb +2 -4
- data/lib/datadog/tracing/contrib/sequel/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/sequel/database.rb +4 -7
- data/lib/datadog/tracing/contrib/sequel/dataset.rb +4 -7
- data/lib/datadog/tracing/contrib/sequel/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/sequel/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/sequel/patcher.rb +3 -5
- data/lib/datadog/tracing/contrib/sequel/utils.rb +2 -4
- data/lib/datadog/tracing/contrib/shoryuken/configuration/settings.rb +3 -5
- data/lib/datadog/tracing/contrib/shoryuken/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/shoryuken/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/shoryuken/patcher.rb +1 -3
- data/lib/datadog/tracing/contrib/shoryuken/tracer.rb +5 -3
- data/lib/datadog/tracing/contrib/sidekiq/client_tracer.rb +11 -7
- data/lib/datadog/tracing/contrib/sidekiq/configuration/settings.rb +4 -5
- data/lib/datadog/tracing/contrib/sidekiq/ext.rb +6 -2
- data/lib/datadog/tracing/contrib/sidekiq/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/sidekiq/patcher.rb +14 -9
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/heartbeat.rb +23 -3
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/job_fetch.rb +2 -2
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/{scheduled_push.rb → redis_info.rb} +7 -8
- data/lib/datadog/tracing/contrib/sidekiq/server_internal_tracer/scheduled_poller.rb +55 -0
- data/lib/datadog/tracing/contrib/sidekiq/server_tracer.rb +31 -8
- data/lib/datadog/tracing/contrib/sidekiq/tracing.rb +2 -4
- data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/sinatra/env.rb +14 -27
- data/lib/datadog/tracing/contrib/sinatra/ext.rb +7 -5
- data/lib/datadog/tracing/contrib/sinatra/framework.rb +11 -4
- data/lib/datadog/tracing/contrib/sinatra/headers.rb +1 -3
- data/lib/datadog/tracing/contrib/sinatra/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/sinatra/patcher.rb +6 -10
- data/lib/datadog/tracing/contrib/sinatra/tracer.rb +15 -90
- data/lib/datadog/tracing/contrib/sinatra/tracer_middleware.rb +20 -18
- data/lib/datadog/tracing/contrib/sneakers/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/sneakers/ext.rb +1 -2
- data/lib/datadog/tracing/contrib/sneakers/integration.rb +4 -6
- data/lib/datadog/tracing/contrib/sneakers/patcher.rb +2 -5
- data/lib/datadog/tracing/contrib/sneakers/tracer.rb +7 -5
- data/lib/datadog/tracing/contrib/status_code_matcher.rb +2 -4
- data/lib/datadog/tracing/contrib/stripe/configuration/settings.rb +33 -0
- data/lib/datadog/tracing/contrib/stripe/ext.rb +26 -0
- data/lib/datadog/tracing/contrib/stripe/integration.rb +43 -0
- data/lib/datadog/tracing/contrib/stripe/patcher.rb +28 -0
- data/lib/datadog/tracing/contrib/stripe/request.rb +67 -0
- data/lib/datadog/tracing/contrib/sucker_punch/configuration/settings.rb +2 -4
- data/lib/datadog/tracing/contrib/sucker_punch/exception_handler.rb +0 -2
- data/lib/datadog/tracing/contrib/sucker_punch/ext.rb +0 -2
- data/lib/datadog/tracing/contrib/sucker_punch/instrumentation.rb +3 -6
- data/lib/datadog/tracing/contrib/sucker_punch/integration.rb +3 -5
- data/lib/datadog/tracing/contrib/sucker_punch/patcher.rb +4 -9
- data/lib/datadog/tracing/contrib/utils/database.rb +0 -2
- data/lib/datadog/tracing/contrib/utils/quantization/hash.rb +0 -2
- data/lib/datadog/tracing/contrib/utils/quantization/http.rb +92 -14
- data/lib/datadog/tracing/contrib.rb +50 -49
- data/lib/datadog/tracing/correlation.rb +16 -4
- data/lib/datadog/{core → tracing}/diagnostics/ext.rb +1 -8
- data/lib/datadog/tracing/diagnostics/health.rb +38 -0
- data/lib/datadog/tracing/distributed/b3_multi.rb +72 -0
- data/lib/datadog/tracing/distributed/b3_single.rb +68 -0
- data/lib/datadog/tracing/distributed/datadog.rb +200 -0
- data/lib/datadog/tracing/distributed/datadog_tags_codec.rb +84 -0
- data/lib/datadog/tracing/distributed/fetcher.rb +21 -0
- data/lib/datadog/tracing/distributed/headers/ext.rb +19 -16
- data/lib/datadog/tracing/distributed/helpers.rb +34 -13
- data/lib/datadog/tracing/distributed/none.rb +18 -0
- data/lib/datadog/tracing/distributed/propagation.rb +126 -0
- data/lib/datadog/tracing/distributed/trace_context.rb +373 -0
- data/lib/datadog/tracing/event.rb +3 -4
- data/lib/datadog/tracing/flush.rb +57 -37
- data/lib/datadog/tracing/metadata/analytics.rb +2 -4
- data/lib/datadog/tracing/metadata/errors.rb +2 -4
- data/lib/datadog/tracing/metadata/ext.rb +34 -3
- data/lib/datadog/tracing/metadata/tagging.rb +23 -4
- data/lib/datadog/tracing/metadata.rb +3 -5
- data/lib/datadog/tracing/pipeline/span_filter.rb +10 -8
- data/lib/datadog/tracing/pipeline/span_processor.rb +0 -2
- data/lib/datadog/tracing/pipeline.rb +3 -5
- data/lib/datadog/tracing/propagation/http.rb +3 -100
- data/lib/datadog/tracing/runtime/metrics.rb +1 -3
- data/lib/datadog/tracing/sampling/all_sampler.rb +1 -3
- data/lib/datadog/tracing/sampling/ext.rb +30 -1
- data/lib/datadog/tracing/sampling/matcher.rb +0 -2
- data/lib/datadog/tracing/sampling/priority_sampler.rb +64 -14
- data/lib/datadog/tracing/sampling/rate_by_key_sampler.rb +10 -13
- data/lib/datadog/tracing/sampling/rate_by_service_sampler.rb +32 -10
- data/lib/datadog/tracing/sampling/rate_limiter.rb +4 -3
- data/lib/datadog/tracing/sampling/rate_sampler.rb +27 -12
- data/lib/datadog/tracing/sampling/rule.rb +15 -11
- data/lib/datadog/tracing/sampling/rule_sampler.rb +11 -14
- data/lib/datadog/tracing/sampling/sampler.rb +0 -2
- data/lib/datadog/tracing/sampling/span/ext.rb +25 -0
- data/lib/datadog/tracing/sampling/span/matcher.rb +89 -0
- data/lib/datadog/tracing/sampling/span/rule.rb +82 -0
- data/lib/datadog/tracing/sampling/span/rule_parser.rb +104 -0
- data/lib/datadog/tracing/sampling/span/sampler.rb +75 -0
- data/lib/datadog/tracing/span.rb +24 -22
- data/lib/datadog/tracing/span_operation.rb +15 -18
- data/lib/datadog/tracing/sync_writer.rb +5 -7
- data/lib/datadog/tracing/trace_digest.rb +88 -4
- data/lib/datadog/tracing/trace_operation.rb +60 -18
- data/lib/datadog/tracing/trace_segment.rb +20 -10
- data/lib/datadog/tracing/tracer.rb +49 -23
- data/lib/datadog/tracing/utils.rb +81 -0
- data/lib/datadog/tracing/workers/trace_writer.rb +9 -11
- data/lib/datadog/tracing/workers.rb +3 -5
- data/lib/datadog/tracing/writer.rb +12 -7
- data/lib/datadog/tracing.rb +8 -10
- data/lib/ddtrace/auto_instrument.rb +9 -4
- data/lib/ddtrace/auto_instrument_base.rb +0 -2
- data/lib/ddtrace/profiling/preload.rb +0 -2
- data/lib/ddtrace/transport/ext.rb +7 -3
- data/lib/ddtrace/transport/http/adapters/net.rb +3 -4
- data/lib/ddtrace/transport/http/adapters/registry.rb +0 -2
- data/lib/ddtrace/transport/http/adapters/test.rb +1 -3
- data/lib/ddtrace/transport/http/adapters/unix_socket.rb +2 -4
- data/lib/ddtrace/transport/http/api/endpoint.rb +0 -2
- data/lib/ddtrace/transport/http/api/fallbacks.rb +0 -2
- data/lib/ddtrace/transport/http/api/instance.rb +0 -2
- data/lib/ddtrace/transport/http/api/map.rb +1 -3
- data/lib/ddtrace/transport/http/api/spec.rb +0 -2
- data/lib/ddtrace/transport/http/api.rb +4 -6
- data/lib/ddtrace/transport/http/builder.rb +5 -7
- data/lib/ddtrace/transport/http/client.rb +4 -5
- data/lib/ddtrace/transport/http/env.rb +0 -2
- data/lib/ddtrace/transport/http/response.rb +35 -7
- data/lib/ddtrace/transport/http/statistics.rb +1 -3
- data/lib/ddtrace/transport/http/traces.rb +6 -8
- data/lib/ddtrace/transport/http.rb +11 -12
- data/lib/ddtrace/transport/io/client.rb +5 -5
- data/lib/ddtrace/transport/io/response.rb +1 -3
- data/lib/ddtrace/transport/io/traces.rb +3 -7
- data/lib/ddtrace/transport/io.rb +3 -5
- data/lib/ddtrace/transport/parcel.rb +0 -4
- data/lib/ddtrace/transport/request.rb +0 -2
- data/lib/ddtrace/transport/response.rb +0 -2
- data/lib/ddtrace/transport/serializable_trace.rb +9 -5
- data/lib/ddtrace/transport/statistics.rb +2 -4
- data/lib/ddtrace/transport/trace_formatter.rb +21 -12
- data/lib/ddtrace/transport/traces.rb +9 -9
- data/lib/ddtrace/version.rb +2 -4
- data/lib/ddtrace.rb +6 -9
- metadata +176 -47
- data/.editorconfig +0 -22
- data/.gitignore +0 -70
- data/CONTRIBUTING.md +0 -81
- data/ddtrace.gemspec +0 -59
- data/docs/0.x-trace.png +0 -0
- data/docs/1.0-trace.png +0 -0
- data/docs/AutoInstrumentation.md +0 -36
- data/docs/Deprecation.md +0 -8
- data/docs/DevelopmentGuide.md +0 -259
- data/docs/GettingStarted.md +0 -2671
- data/docs/ProfilingDevelopment.md +0 -110
- data/docs/PublicApi.md +0 -14
- data/docs/UpgradeGuide.md +0 -736
- data/lib/datadog/appsec/assets/waf_rules/risky.json +0 -1499
- data/lib/datadog/appsec/contrib/rack/request.rb +0 -52
- data/lib/datadog/appsec/contrib/rack/response.rb +0 -24
- data/lib/datadog/profiling/recorder.rb +0 -117
- data/lib/datadog/profiling/transport/client.rb +0 -16
- data/lib/datadog/profiling/transport/http/api/endpoint.rb +0 -107
- data/lib/datadog/profiling/transport/http/api/instance.rb +0 -38
- data/lib/datadog/profiling/transport/http/api/spec.rb +0 -42
- data/lib/datadog/profiling/transport/http/api.rb +0 -45
- data/lib/datadog/profiling/transport/http/builder.rb +0 -30
- data/lib/datadog/profiling/transport/http/client.rb +0 -35
- data/lib/datadog/profiling/transport/http/response.rb +0 -23
- data/lib/datadog/profiling/transport/http.rb +0 -112
- data/lib/datadog/profiling/transport/io/client.rb +0 -29
- data/lib/datadog/profiling/transport/io/response.rb +0 -18
- data/lib/datadog/profiling/transport/io.rb +0 -32
- data/lib/datadog/profiling/transport/parcel.rb +0 -19
- data/lib/datadog/profiling/transport/request.rb +0 -17
- data/lib/datadog/profiling/transport/response.rb +0 -10
- data/lib/datadog/tracing/distributed/headers/b3.rb +0 -55
- data/lib/datadog/tracing/distributed/headers/b3_single.rb +0 -67
- data/lib/datadog/tracing/distributed/headers/datadog.rb +0 -52
- data/lib/datadog/tracing/distributed/parser.rb +0 -70
- data/lib/datadog/tracing/propagation/grpc.rb +0 -88
@@ -0,0 +1,978 @@
|
|
1
|
+
#include <ruby.h>
|
2
|
+
|
3
|
+
#include "collectors_thread_context.h"
|
4
|
+
#include "clock_id.h"
|
5
|
+
#include "collectors_stack.h"
|
6
|
+
#include "helpers.h"
|
7
|
+
#include "libdatadog_helpers.h"
|
8
|
+
#include "private_vm_api_access.h"
|
9
|
+
#include "stack_recorder.h"
|
10
|
+
#include "time_helpers.h"
|
11
|
+
|
12
|
+
// Used to trigger sampling of threads, based on external "events", such as:
|
13
|
+
// * periodic timer for cpu-time and wall-time
|
14
|
+
// * VM garbage collection events
|
15
|
+
// * VM object allocation events
|
16
|
+
//
|
17
|
+
// This file implements the native bits of the Datadog::Profiling::Collectors::ThreadContext class
|
18
|
+
//
|
19
|
+
// Triggering of this component (e.g. watching for the above "events") is implemented by Collectors::CpuAndWallTimeWorker.
|
20
|
+
|
21
|
+
// ---
|
22
|
+
// ## Tracking of cpu-time and wall-time spent during garbage collection
|
23
|
+
//
|
24
|
+
// This feature works by having a special state that a thread can be in: doing garbage collection. This state is
|
25
|
+
// tracked inside the thread's `per_thread_context.gc_tracking` data, and three functions, listed below. The functions
|
26
|
+
// will get called by the `Collectors::CpuAndWallTimeWorker` at very specific times in the VM lifetime.
|
27
|
+
//
|
28
|
+
// * `thread_context_collector_on_gc_start`: Called at the very beginning of the garbage collection process.
|
29
|
+
// The internal VM `during_gc` flag is set to `true`, but Ruby has not done any work yet.
|
30
|
+
// * `thread_context_collector_on_gc_finish`: Called at the very end of the garbage collection process.
|
31
|
+
// The internal VM `during_gc` flag is still set to `true`, but all the work has been done.
|
32
|
+
// * `thread_context_collector_sample_after_gc`: Called shortly after the garbage collection process.
|
33
|
+
// The internal VM `during_gc` flag is set to `false`.
|
34
|
+
//
|
35
|
+
// Inside this component, here's what happens inside those three functions:
|
36
|
+
//
|
37
|
+
// When `thread_context_collector_on_gc_start` gets called, the current cpu and wall-time get recorded to the thread
|
38
|
+
// context: `cpu_time_at_gc_start_ns` and `wall_time_at_gc_start_ns`.
|
39
|
+
//
|
40
|
+
// While these fields are set, regular samples (if any) do not account for any time that passes after these two
|
41
|
+
// timestamps.
|
42
|
+
//
|
43
|
+
// (Regular samples can still account for the time between the previous sample and the start of GC.)
|
44
|
+
//
|
45
|
+
// When `thread_context_collector_on_gc_finish` gets called, the current cpu and wall-time again get recorded to the
|
46
|
+
// thread context: `cpu_time_at_gc_finish_ns` and `wall_time_at_gc_finish_ns`.
|
47
|
+
//
|
48
|
+
// Finally, when `thread_context_collector_sample_after_gc` gets called, the following happens:
|
49
|
+
//
|
50
|
+
// 1. A sample gets taken, using the special `SAMPLE_IN_GC` sample type, which produces a stack with a placeholder
|
51
|
+
// `Garbage Collection` frame as the latest frame. This sample gets assigned the cpu-time and wall-time period that was
|
52
|
+
// recorded between calls to `on_gc_start` and `on_gc_finish`.
|
53
|
+
//
|
54
|
+
// 2. The thread is no longer marked as being in gc (all gc tracking fields get reset back to `INVALID_TIME`).
|
55
|
+
//
|
56
|
+
// 3. The `cpu_time_at_previous_sample_ns` and `wall_time_at_previous_sample_ns` get updated with the elapsed time in
|
57
|
+
// GC, so that all time is accounted for -- e.g. the next sample will not get "blamed" by time spent in GC.
|
58
|
+
//
|
59
|
+
// In an earlier attempt at implementing this functionality (https://github.com/DataDog/dd-trace-rb/pull/2308), we
|
60
|
+
// discovered that we needed to factor the sampling work away from `thread_context_collector_on_gc_finish` and into a
|
61
|
+
// separate `thread_context_collector_sample_after_gc` because (as documented in more detail below),
|
62
|
+
// `sample_after_gc` could trigger memory allocation in rare occasions (usually exceptions), which is actually not
|
63
|
+
// allowed to happen during Ruby's garbage collection start/finish hooks.
|
64
|
+
// ---
|
65
|
+
|
66
|
+
#define INVALID_TIME -1
|
67
|
+
#define THREAD_ID_LIMIT_CHARS 44 // Why 44? "#{2**64} (#{2**64})".size + 1 for \0
|
68
|
+
#define IS_WALL_TIME true
|
69
|
+
#define IS_NOT_WALL_TIME false
|
70
|
+
#define MISSING_TRACER_CONTEXT_KEY 0
|
71
|
+
|
72
|
+
static ID at_active_span_id; // id of :@active_span in Ruby
|
73
|
+
static ID at_active_trace_id; // id of :@active_trace in Ruby
|
74
|
+
static ID at_id_id; // id of :@id in Ruby
|
75
|
+
static ID at_resource_id; // id of :@resource in Ruby
|
76
|
+
static ID at_root_span_id; // id of :@root_span in Ruby
|
77
|
+
static ID at_type_id; // id of :@type in Ruby
|
78
|
+
|
79
|
+
// Contains state for a single ThreadContext instance
|
80
|
+
struct thread_context_collector_state {
|
81
|
+
// Note: Places in this file that usually need to be changed when this struct is changed are tagged with
|
82
|
+
// "Update this when modifying state struct"
|
83
|
+
|
84
|
+
// Required by Datadog::Profiling::Collectors::Stack as a scratch buffer during sampling
|
85
|
+
sampling_buffer *sampling_buffer;
|
86
|
+
// Hashmap <Thread Object, struct per_thread_context>
|
87
|
+
st_table *hash_map_per_thread_context;
|
88
|
+
// Datadog::Profiling::StackRecorder instance
|
89
|
+
VALUE recorder_instance;
|
90
|
+
// If the tracer is available and enabled, this will be the fiber-local symbol for accessing its running context,
|
91
|
+
// to enable code hotspots and endpoint aggregation.
|
92
|
+
// When not available, this is set to MISSING_TRACER_CONTEXT_KEY.
|
93
|
+
ID tracer_context_key;
|
94
|
+
// Track how many regular samples we've taken. Does not include garbage collection samples.
|
95
|
+
// Currently **outside** of stats struct because we also use it to decide when to clean the contexts, and thus this
|
96
|
+
// is not (just) a stat.
|
97
|
+
unsigned int sample_count;
|
98
|
+
// Reusable array to get list of threads
|
99
|
+
VALUE thread_list_buffer;
|
100
|
+
|
101
|
+
struct stats {
|
102
|
+
// Track how many garbage collection samples we've taken.
|
103
|
+
unsigned int gc_samples;
|
104
|
+
// See thread_context_collector_on_gc_start for details
|
105
|
+
unsigned int gc_samples_missed_due_to_missing_context;
|
106
|
+
} stats;
|
107
|
+
};
|
108
|
+
|
109
|
+
// Tracks per-thread state
|
110
|
+
struct per_thread_context {
|
111
|
+
char thread_id[THREAD_ID_LIMIT_CHARS];
|
112
|
+
ddog_CharSlice thread_id_char_slice;
|
113
|
+
thread_cpu_time_id thread_cpu_time_id;
|
114
|
+
long cpu_time_at_previous_sample_ns; // Can be INVALID_TIME until initialized or if getting it fails for another reason
|
115
|
+
long wall_time_at_previous_sample_ns; // Can be INVALID_TIME until initialized
|
116
|
+
|
117
|
+
struct {
|
118
|
+
// Both of these fields are set by on_gc_start and kept until sample_after_gc is called.
|
119
|
+
// Outside of this window, they will be INVALID_TIME.
|
120
|
+
long cpu_time_at_start_ns;
|
121
|
+
long wall_time_at_start_ns;
|
122
|
+
|
123
|
+
// Both of these fields are set by on_gc_finish and kept until sample_after_gc is called.
|
124
|
+
// Outside of this window, they will be INVALID_TIME.
|
125
|
+
long cpu_time_at_finish_ns;
|
126
|
+
long wall_time_at_finish_ns;
|
127
|
+
} gc_tracking;
|
128
|
+
};
|
129
|
+
|
130
|
+
// Used to correlate profiles with traces
|
131
|
+
struct trace_identifiers {
|
132
|
+
bool valid;
|
133
|
+
uint64_t local_root_span_id;
|
134
|
+
uint64_t span_id;
|
135
|
+
VALUE trace_endpoint;
|
136
|
+
};
|
137
|
+
|
138
|
+
static void thread_context_collector_typed_data_mark(void *state_ptr);
|
139
|
+
static void thread_context_collector_typed_data_free(void *state_ptr);
|
140
|
+
static int hash_map_per_thread_context_mark(st_data_t key_thread, st_data_t _value, st_data_t _argument);
|
141
|
+
static int hash_map_per_thread_context_free_values(st_data_t _thread, st_data_t value_per_thread_context, st_data_t _argument);
|
142
|
+
static VALUE _native_new(VALUE klass);
|
143
|
+
static VALUE _native_initialize(VALUE self, VALUE collector_instance, VALUE recorder_instance, VALUE max_frames, VALUE tracer_context_key);
|
144
|
+
static VALUE _native_sample(VALUE self, VALUE collector_instance, VALUE profiler_overhead_stack_thread);
|
145
|
+
static VALUE _native_on_gc_start(VALUE self, VALUE collector_instance);
|
146
|
+
static VALUE _native_on_gc_finish(VALUE self, VALUE collector_instance);
|
147
|
+
static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance);
|
148
|
+
void update_metrics_and_sample(
|
149
|
+
struct thread_context_collector_state *state,
|
150
|
+
VALUE thread_being_sampled,
|
151
|
+
VALUE profiler_overhead_stack_thread,
|
152
|
+
struct per_thread_context *thread_context,
|
153
|
+
long current_cpu_time_ns,
|
154
|
+
long current_monotonic_wall_time_ns
|
155
|
+
);
|
156
|
+
static void trigger_sample_for_thread(
|
157
|
+
struct thread_context_collector_state *state,
|
158
|
+
VALUE thread,
|
159
|
+
VALUE stack_from_thread,
|
160
|
+
struct per_thread_context *thread_context,
|
161
|
+
sample_values values,
|
162
|
+
sample_type type
|
163
|
+
);
|
164
|
+
static VALUE _native_thread_list(VALUE self);
|
165
|
+
static struct per_thread_context *get_or_create_context_for(VALUE thread, struct thread_context_collector_state *state);
|
166
|
+
static struct per_thread_context *get_context_for(VALUE thread, struct thread_context_collector_state *state);
|
167
|
+
static void initialize_context(VALUE thread, struct per_thread_context *thread_context);
|
168
|
+
static VALUE _native_inspect(VALUE self, VALUE collector_instance);
|
169
|
+
static VALUE per_thread_context_st_table_as_ruby_hash(struct thread_context_collector_state *state);
|
170
|
+
static int per_thread_context_as_ruby_hash(st_data_t key_thread, st_data_t value_context, st_data_t result_hash);
|
171
|
+
static VALUE stats_as_ruby_hash(struct thread_context_collector_state *state);
|
172
|
+
static void remove_context_for_dead_threads(struct thread_context_collector_state *state);
|
173
|
+
static int remove_if_dead_thread(st_data_t key_thread, st_data_t value_context, st_data_t _argument);
|
174
|
+
static VALUE _native_per_thread_context(VALUE self, VALUE collector_instance);
|
175
|
+
static long update_time_since_previous_sample(long *time_at_previous_sample_ns, long current_time_ns, long gc_start_time_ns, bool is_wall_time);
|
176
|
+
static long cpu_time_now_ns(struct per_thread_context *thread_context);
|
177
|
+
static long thread_id_for(VALUE thread);
|
178
|
+
static VALUE _native_stats(VALUE self, VALUE collector_instance);
|
179
|
+
static void trace_identifiers_for(struct thread_context_collector_state *state, VALUE thread, struct trace_identifiers *trace_identifiers_result);
|
180
|
+
static bool is_type_web(VALUE root_span_type);
|
181
|
+
static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE collector_instance);
|
182
|
+
static VALUE thread_list(struct thread_context_collector_state *state);
|
183
|
+
static VALUE _native_sample_allocation(VALUE self, VALUE collector_instance, VALUE sample_weight);
|
184
|
+
|
185
|
+
void collectors_thread_context_init(VALUE profiling_module) {
|
186
|
+
VALUE collectors_module = rb_define_module_under(profiling_module, "Collectors");
|
187
|
+
VALUE collectors_thread_context_class = rb_define_class_under(collectors_module, "ThreadContext", rb_cObject);
|
188
|
+
// Hosts methods used for testing the native code using RSpec
|
189
|
+
VALUE testing_module = rb_define_module_under(collectors_thread_context_class, "Testing");
|
190
|
+
|
191
|
+
// Instances of the ThreadContext class are "TypedData" objects.
|
192
|
+
// "TypedData" objects are special objects in the Ruby VM that can wrap C structs.
|
193
|
+
// In this case, it wraps the thread_context_collector_state.
|
194
|
+
//
|
195
|
+
// Because Ruby doesn't know how to initialize native-level structs, we MUST override the allocation function for objects
|
196
|
+
// of this class so that we can manage this part. Not overriding or disabling the allocation function is a common
|
197
|
+
// gotcha for "TypedData" objects that can very easily lead to VM crashes, see for instance
|
198
|
+
// https://bugs.ruby-lang.org/issues/18007 for a discussion around this.
|
199
|
+
rb_define_alloc_func(collectors_thread_context_class, _native_new);
|
200
|
+
|
201
|
+
rb_define_singleton_method(collectors_thread_context_class, "_native_initialize", _native_initialize, 4);
|
202
|
+
rb_define_singleton_method(collectors_thread_context_class, "_native_inspect", _native_inspect, 1);
|
203
|
+
rb_define_singleton_method(collectors_thread_context_class, "_native_reset_after_fork", _native_reset_after_fork, 1);
|
204
|
+
rb_define_singleton_method(testing_module, "_native_sample", _native_sample, 2);
|
205
|
+
rb_define_singleton_method(testing_module, "_native_sample_allocation", _native_sample_allocation, 2);
|
206
|
+
rb_define_singleton_method(testing_module, "_native_on_gc_start", _native_on_gc_start, 1);
|
207
|
+
rb_define_singleton_method(testing_module, "_native_on_gc_finish", _native_on_gc_finish, 1);
|
208
|
+
rb_define_singleton_method(testing_module, "_native_sample_after_gc", _native_sample_after_gc, 1);
|
209
|
+
rb_define_singleton_method(testing_module, "_native_thread_list", _native_thread_list, 0);
|
210
|
+
rb_define_singleton_method(testing_module, "_native_per_thread_context", _native_per_thread_context, 1);
|
211
|
+
rb_define_singleton_method(testing_module, "_native_stats", _native_stats, 1);
|
212
|
+
|
213
|
+
at_active_span_id = rb_intern_const("@active_span");
|
214
|
+
at_active_trace_id = rb_intern_const("@active_trace");
|
215
|
+
at_id_id = rb_intern_const("@id");
|
216
|
+
at_resource_id = rb_intern_const("@resource");
|
217
|
+
at_root_span_id = rb_intern_const("@root_span");
|
218
|
+
at_type_id = rb_intern_const("@type");
|
219
|
+
}
|
220
|
+
|
221
|
+
// This structure is used to define a Ruby object that stores a pointer to a struct thread_context_collector_state
|
222
|
+
// See also https://github.com/ruby/ruby/blob/master/doc/extension.rdoc for how this works
|
223
|
+
static const rb_data_type_t thread_context_collector_typed_data = {
|
224
|
+
.wrap_struct_name = "Datadog::Profiling::Collectors::ThreadContext",
|
225
|
+
.function = {
|
226
|
+
.dmark = thread_context_collector_typed_data_mark,
|
227
|
+
.dfree = thread_context_collector_typed_data_free,
|
228
|
+
.dsize = NULL, // We don't track profile memory usage (although it'd be cool if we did!)
|
229
|
+
//.dcompact = NULL, // FIXME: Add support for compaction
|
230
|
+
},
|
231
|
+
.flags = RUBY_TYPED_FREE_IMMEDIATELY
|
232
|
+
};
|
233
|
+
|
234
|
+
// This function is called by the Ruby GC to give us a chance to mark any Ruby objects that we're holding on to,
|
235
|
+
// so that they don't get garbage collected
|
236
|
+
static void thread_context_collector_typed_data_mark(void *state_ptr) {
|
237
|
+
struct thread_context_collector_state *state = (struct thread_context_collector_state *) state_ptr;
|
238
|
+
|
239
|
+
// Update this when modifying state struct
|
240
|
+
rb_gc_mark(state->recorder_instance);
|
241
|
+
st_foreach(state->hash_map_per_thread_context, hash_map_per_thread_context_mark, 0 /* unused */);
|
242
|
+
rb_gc_mark(state->thread_list_buffer);
|
243
|
+
}
|
244
|
+
|
245
|
+
static void thread_context_collector_typed_data_free(void *state_ptr) {
|
246
|
+
struct thread_context_collector_state *state = (struct thread_context_collector_state *) state_ptr;
|
247
|
+
|
248
|
+
// Update this when modifying state struct
|
249
|
+
|
250
|
+
// Important: Remember that we're only guaranteed to see here what's been set in _native_new, aka
|
251
|
+
// pointers that have been set NULL there may still be NULL here.
|
252
|
+
if (state->sampling_buffer != NULL) sampling_buffer_free(state->sampling_buffer);
|
253
|
+
|
254
|
+
// Free each entry in the map
|
255
|
+
st_foreach(state->hash_map_per_thread_context, hash_map_per_thread_context_free_values, 0 /* unused */);
|
256
|
+
// ...and then the map
|
257
|
+
st_free_table(state->hash_map_per_thread_context);
|
258
|
+
|
259
|
+
ruby_xfree(state);
|
260
|
+
}
|
261
|
+
|
262
|
+
// Mark Ruby thread references we keep as keys in hash_map_per_thread_context
|
263
|
+
static int hash_map_per_thread_context_mark(st_data_t key_thread, DDTRACE_UNUSED st_data_t _value, DDTRACE_UNUSED st_data_t _argument) {
|
264
|
+
VALUE thread = (VALUE) key_thread;
|
265
|
+
rb_gc_mark(thread);
|
266
|
+
return ST_CONTINUE;
|
267
|
+
}
|
268
|
+
|
269
|
+
// Used to clear each of the per_thread_contexts inside the hash_map_per_thread_context
|
270
|
+
static int hash_map_per_thread_context_free_values(DDTRACE_UNUSED st_data_t _thread, st_data_t value_per_thread_context, DDTRACE_UNUSED st_data_t _argument) {
|
271
|
+
struct per_thread_context *per_thread_context = (struct per_thread_context*) value_per_thread_context;
|
272
|
+
ruby_xfree(per_thread_context);
|
273
|
+
return ST_CONTINUE;
|
274
|
+
}
|
275
|
+
|
276
|
+
static VALUE _native_new(VALUE klass) {
|
277
|
+
struct thread_context_collector_state *state = ruby_xcalloc(1, sizeof(struct thread_context_collector_state));
|
278
|
+
|
279
|
+
// Update this when modifying state struct
|
280
|
+
state->sampling_buffer = NULL;
|
281
|
+
state->hash_map_per_thread_context =
|
282
|
+
// "numtable" is an awful name, but TL;DR it's what should be used when keys are `VALUE`s.
|
283
|
+
st_init_numtable();
|
284
|
+
state->recorder_instance = Qnil;
|
285
|
+
state->tracer_context_key = MISSING_TRACER_CONTEXT_KEY;
|
286
|
+
state->thread_list_buffer = rb_ary_new();
|
287
|
+
|
288
|
+
return TypedData_Wrap_Struct(klass, &thread_context_collector_typed_data, state);
|
289
|
+
}
|
290
|
+
|
291
|
+
static VALUE _native_initialize(DDTRACE_UNUSED VALUE _self, VALUE collector_instance, VALUE recorder_instance, VALUE max_frames, VALUE tracer_context_key) {
|
292
|
+
struct thread_context_collector_state *state;
|
293
|
+
TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
294
|
+
|
295
|
+
int max_frames_requested = NUM2INT(max_frames);
|
296
|
+
if (max_frames_requested < 0) rb_raise(rb_eArgError, "Invalid max_frames: value must not be negative");
|
297
|
+
|
298
|
+
// Update this when modifying state struct
|
299
|
+
state->sampling_buffer = sampling_buffer_new(max_frames_requested);
|
300
|
+
// hash_map_per_thread_context is already initialized, nothing to do here
|
301
|
+
state->recorder_instance = enforce_recorder_instance(recorder_instance);
|
302
|
+
|
303
|
+
if (RTEST(tracer_context_key)) {
|
304
|
+
ENFORCE_TYPE(tracer_context_key, T_SYMBOL);
|
305
|
+
// Note about rb_to_id and dynamic symbols: calling `rb_to_id` prevents symbols from ever being garbage collected.
|
306
|
+
// In this case, we can't really escape this because as of this writing, ruby master still calls `rb_to_id` inside
|
307
|
+
// the implementation of Thread#[]= so any symbol that gets used as a key there will already be prevented from GC.
|
308
|
+
state->tracer_context_key = rb_to_id(tracer_context_key);
|
309
|
+
}
|
310
|
+
|
311
|
+
return Qtrue;
|
312
|
+
}
|
313
|
+
|
314
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
315
|
+
// It SHOULD NOT be used for other purposes.
|
316
|
+
static VALUE _native_sample(DDTRACE_UNUSED VALUE _self, VALUE collector_instance, VALUE profiler_overhead_stack_thread) {
|
317
|
+
if (!is_thread_alive(profiler_overhead_stack_thread)) rb_raise(rb_eArgError, "Unexpected: profiler_overhead_stack_thread is not alive");
|
318
|
+
|
319
|
+
thread_context_collector_sample(collector_instance, monotonic_wall_time_now_ns(RAISE_ON_FAILURE), profiler_overhead_stack_thread);
|
320
|
+
return Qtrue;
|
321
|
+
}
|
322
|
+
|
323
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
324
|
+
// It SHOULD NOT be used for other purposes.
|
325
|
+
static VALUE _native_on_gc_start(DDTRACE_UNUSED VALUE self, VALUE collector_instance) {
|
326
|
+
thread_context_collector_on_gc_start(collector_instance);
|
327
|
+
return Qtrue;
|
328
|
+
}
|
329
|
+
|
330
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
331
|
+
// It SHOULD NOT be used for other purposes.
|
332
|
+
static VALUE _native_on_gc_finish(DDTRACE_UNUSED VALUE self, VALUE collector_instance) {
|
333
|
+
thread_context_collector_on_gc_finish(collector_instance);
|
334
|
+
return Qtrue;
|
335
|
+
}
|
336
|
+
|
337
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
338
|
+
// It SHOULD NOT be used for other purposes.
|
339
|
+
static VALUE _native_sample_after_gc(DDTRACE_UNUSED VALUE self, VALUE collector_instance) {
|
340
|
+
thread_context_collector_sample_after_gc(collector_instance);
|
341
|
+
return Qtrue;
|
342
|
+
}
|
343
|
+
|
344
|
+
// This function gets called from the Collectors::CpuAndWallTimeWorker to trigger the actual sampling.
|
345
|
+
//
|
346
|
+
// Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this.
|
347
|
+
// Assumption 2: This function is allowed to raise exceptions. Caller is responsible for handling them, if needed.
|
348
|
+
// Assumption 3: This function IS NOT called from a signal handler. This function is not async-signal-safe.
|
349
|
+
// Assumption 4: This function IS NOT called in a reentrant way.
|
350
|
+
// Assumption 5: This function is called from the main Ractor (if Ruby has support for Ractors).
|
351
|
+
//
|
352
|
+
// The `profiler_overhead_stack_thread` is used to attribute the profiler overhead to a stack borrowed from a different thread
|
353
|
+
// (belonging to ddtrace), so that the overhead is visible in the profile rather than blamed on user code.
|
354
|
+
void thread_context_collector_sample(VALUE self_instance, long current_monotonic_wall_time_ns, VALUE profiler_overhead_stack_thread) {
|
355
|
+
struct thread_context_collector_state *state;
|
356
|
+
TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
357
|
+
|
358
|
+
VALUE current_thread = rb_thread_current();
|
359
|
+
struct per_thread_context *current_thread_context = get_or_create_context_for(current_thread, state);
|
360
|
+
long cpu_time_at_sample_start_for_current_thread = cpu_time_now_ns(current_thread_context);
|
361
|
+
|
362
|
+
VALUE threads = thread_list(state);
|
363
|
+
|
364
|
+
const long thread_count = RARRAY_LEN(threads);
|
365
|
+
for (long i = 0; i < thread_count; i++) {
|
366
|
+
VALUE thread = RARRAY_AREF(threads, i);
|
367
|
+
struct per_thread_context *thread_context = get_or_create_context_for(thread, state);
|
368
|
+
|
369
|
+
// We account for cpu-time for the current thread in a different way -- we use the cpu-time at sampling start, to avoid
|
370
|
+
// blaming the time the profiler took on whatever's running on the thread right now
|
371
|
+
long current_cpu_time_ns = thread != current_thread ? cpu_time_now_ns(thread_context) : cpu_time_at_sample_start_for_current_thread;
|
372
|
+
|
373
|
+
update_metrics_and_sample(
|
374
|
+
state,
|
375
|
+
/* thread_being_sampled: */ thread,
|
376
|
+
/* stack_from_thread: */ thread,
|
377
|
+
thread_context,
|
378
|
+
current_cpu_time_ns,
|
379
|
+
current_monotonic_wall_time_ns
|
380
|
+
);
|
381
|
+
}
|
382
|
+
|
383
|
+
state->sample_count++;
|
384
|
+
|
385
|
+
// TODO: This seems somewhat overkill and inefficient to do often; right now we just do it every few samples
|
386
|
+
// but there's probably a better way to do this if we actually track when threads finish
|
387
|
+
if (state->sample_count % 100 == 0) remove_context_for_dead_threads(state);
|
388
|
+
|
389
|
+
update_metrics_and_sample(
|
390
|
+
state,
|
391
|
+
/* thread_being_sampled: */ current_thread,
|
392
|
+
/* stack_from_thread: */ profiler_overhead_stack_thread,
|
393
|
+
current_thread_context,
|
394
|
+
cpu_time_now_ns(current_thread_context),
|
395
|
+
monotonic_wall_time_now_ns(RAISE_ON_FAILURE)
|
396
|
+
);
|
397
|
+
}
|
398
|
+
|
399
|
+
void update_metrics_and_sample(
|
400
|
+
struct thread_context_collector_state *state,
|
401
|
+
VALUE thread_being_sampled,
|
402
|
+
VALUE stack_from_thread, // This can be different when attributing profiler overhead using a different stack
|
403
|
+
struct per_thread_context *thread_context,
|
404
|
+
long current_cpu_time_ns,
|
405
|
+
long current_monotonic_wall_time_ns
|
406
|
+
) {
|
407
|
+
long cpu_time_elapsed_ns = update_time_since_previous_sample(
|
408
|
+
&thread_context->cpu_time_at_previous_sample_ns,
|
409
|
+
current_cpu_time_ns,
|
410
|
+
thread_context->gc_tracking.cpu_time_at_start_ns,
|
411
|
+
IS_NOT_WALL_TIME
|
412
|
+
);
|
413
|
+
long wall_time_elapsed_ns = update_time_since_previous_sample(
|
414
|
+
&thread_context->wall_time_at_previous_sample_ns,
|
415
|
+
current_monotonic_wall_time_ns,
|
416
|
+
thread_context->gc_tracking.wall_time_at_start_ns,
|
417
|
+
IS_WALL_TIME
|
418
|
+
);
|
419
|
+
|
420
|
+
trigger_sample_for_thread(
|
421
|
+
state,
|
422
|
+
thread_being_sampled,
|
423
|
+
stack_from_thread,
|
424
|
+
thread_context,
|
425
|
+
(sample_values) {.cpu_time_ns = cpu_time_elapsed_ns, .cpu_samples = 1, .wall_time_ns = wall_time_elapsed_ns},
|
426
|
+
SAMPLE_REGULAR
|
427
|
+
);
|
428
|
+
}
|
429
|
+
|
430
|
+
// This function gets called when Ruby is about to start running the Garbage Collector on the current thread.
|
431
|
+
// It updates the per_thread_context of the current thread to include the current cpu/wall times, to be used to later
|
432
|
+
// create a stack sample that blames the cpu/wall time spent from now until the end of the garbage collector work.
|
433
|
+
//
|
434
|
+
// Safety: This function gets called while Ruby is doing garbage collection. While Ruby is doing garbage collection,
|
435
|
+
// *NO ALLOCATION* is allowed. This function, and any it calls must never trigger memory or object allocation.
|
436
|
+
// This includes exceptions and use of ruby_xcalloc (because xcalloc can trigger GC)!
|
437
|
+
//
|
438
|
+
// Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this.
|
439
|
+
// Assumption 2: This function is called from the main Ractor (if Ruby has support for Ractors).
|
440
|
+
void thread_context_collector_on_gc_start(VALUE self_instance) {
|
441
|
+
struct thread_context_collector_state *state;
|
442
|
+
if (!rb_typeddata_is_kind_of(self_instance, &thread_context_collector_typed_data)) return;
|
443
|
+
// This should never fail the the above check passes
|
444
|
+
TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
445
|
+
|
446
|
+
struct per_thread_context *thread_context = get_context_for(rb_thread_current(), state);
|
447
|
+
|
448
|
+
// If there was no previously-existing context for this thread, we won't allocate one (see safety). For now we just drop
|
449
|
+
// the GC sample, under the assumption that "a thread that is so new that we never sampled it even once before it triggers
|
450
|
+
// GC" is a rare enough case that we can just ignore it.
|
451
|
+
// We can always improve this later if we find that this happens often (and we have the counter to help us figure that out)!
|
452
|
+
if (thread_context == NULL) {
|
453
|
+
state->stats.gc_samples_missed_due_to_missing_context++;
|
454
|
+
return;
|
455
|
+
}
|
456
|
+
|
457
|
+
// If these fields are set, there's an existing GC sample that still needs to be written out by `sample_after_gc`.
|
458
|
+
//
|
459
|
+
// When can this happen? Because we don't have precise control over when `sample_after_gc` gets called (it will be
|
460
|
+
// called sometime after GC finishes), there is no way to guarantee that Ruby will not trigger more than one GC cycle
|
461
|
+
// before we can actually run that method.
|
462
|
+
//
|
463
|
+
// We handle this by collapsing multiple GC cycles into one. That is, if the following happens:
|
464
|
+
// `on_gc_start` (time=0) -> `on_gc_finish` (time=1) -> `on_gc_start` (time=2) -> `on_gc_finish` (time=3) -> `sample_after_gc`
|
465
|
+
// then we just use time=0 from the first on_gc_start and time=3 from the last on_gc_finish, e.g. we behave as if
|
466
|
+
// there was a single, longer GC period.
|
467
|
+
if (thread_context->gc_tracking.cpu_time_at_finish_ns != INVALID_TIME &&
|
468
|
+
thread_context->gc_tracking.wall_time_at_finish_ns != INVALID_TIME) return;
|
469
|
+
|
470
|
+
// Here we record the wall-time first and in on_gc_finish we record it second to avoid having wall-time be slightly < cpu-time
|
471
|
+
thread_context->gc_tracking.wall_time_at_start_ns = monotonic_wall_time_now_ns(DO_NOT_RAISE_ON_FAILURE);
|
472
|
+
thread_context->gc_tracking.cpu_time_at_start_ns = cpu_time_now_ns(thread_context);
|
473
|
+
}
|
474
|
+
|
475
|
+
// This function gets called when Ruby has finished running the Garbage Collector on the current thread.
|
476
|
+
// It updates the per_thread_context of the current thread to include the current cpu/wall times, to be used to later
|
477
|
+
// create a stack sample that blames the cpu/wall time spent from the start of garbage collector work until now.
|
478
|
+
//
|
479
|
+
// Safety: This function gets called while Ruby is doing garbage collection. While Ruby is doing garbage collection,
|
480
|
+
// *NO ALLOCATION* is allowed. This function, and any it calls must never trigger memory or object allocation.
|
481
|
+
// This includes exceptions and use of ruby_xcalloc (because xcalloc can trigger GC)!
|
482
|
+
//
|
483
|
+
// Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this.
|
484
|
+
// Assumption 2: This function is called from the main Ractor (if Ruby has support for Ractors).
|
485
|
+
void thread_context_collector_on_gc_finish(VALUE self_instance) {
|
486
|
+
struct thread_context_collector_state *state;
|
487
|
+
if (!rb_typeddata_is_kind_of(self_instance, &thread_context_collector_typed_data)) return;
|
488
|
+
// This should never fail the the above check passes
|
489
|
+
TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
490
|
+
|
491
|
+
struct per_thread_context *thread_context = get_context_for(rb_thread_current(), state);
|
492
|
+
|
493
|
+
// If there was no previously-existing context for this thread, we won't allocate one (see safety). We keep a metric for
|
494
|
+
// how often this happens -- see on_gc_start.
|
495
|
+
if (thread_context == NULL) return;
|
496
|
+
|
497
|
+
if (thread_context->gc_tracking.cpu_time_at_start_ns == INVALID_TIME &&
|
498
|
+
thread_context->gc_tracking.wall_time_at_start_ns == INVALID_TIME) {
|
499
|
+
// If this happened, it means that on_gc_start was either never called for the thread OR it was called but no thread
|
500
|
+
// context existed at the time. The former can be the result of a bug, but since we can't distinguish them, we just
|
501
|
+
// do nothing.
|
502
|
+
return;
|
503
|
+
}
|
504
|
+
|
505
|
+
// Here we record the wall-time second and in on_gc_start we record it first to avoid having wall-time be slightly < cpu-time
|
506
|
+
thread_context->gc_tracking.cpu_time_at_finish_ns = cpu_time_now_ns(thread_context);
|
507
|
+
thread_context->gc_tracking.wall_time_at_finish_ns = monotonic_wall_time_now_ns(DO_NOT_RAISE_ON_FAILURE);
|
508
|
+
}
|
509
|
+
|
510
|
+
// This function gets called shortly after Ruby has finished running the Garbage Collector.
|
511
|
+
// It creates a new sample including the cpu and wall-time spent by the garbage collector work, and resets any
|
512
|
+
// GC-related tracking.
|
513
|
+
//
|
514
|
+
// Specifically, it will search for thread(s) which have gone through a cycle of on_gc_start/on_gc_finish
|
515
|
+
// and thus have cpu_time_at_start_ns, cpu_time_at_finish_ns, wall_time_at_start_ns, wall_time_at_finish_ns
|
516
|
+
// set on their context.
|
517
|
+
//
|
518
|
+
// Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this.
|
519
|
+
// Assumption 2: This function is allowed to raise exceptions. Caller is responsible for handling them, if needed.
|
520
|
+
// Assumption 3: Unlike `on_gc_start` and `on_gc_finish`, this method is allowed to allocate memory as needed.
|
521
|
+
// Assumption 4: This function is called from the main Ractor (if Ruby has support for Ractors).
|
522
|
+
VALUE thread_context_collector_sample_after_gc(VALUE self_instance) {
|
523
|
+
struct thread_context_collector_state *state;
|
524
|
+
TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
525
|
+
|
526
|
+
VALUE threads = thread_list(state);
|
527
|
+
bool sampled_any_thread = false;
|
528
|
+
|
529
|
+
const long thread_count = RARRAY_LEN(threads);
|
530
|
+
for (long i = 0; i < thread_count; i++) {
|
531
|
+
VALUE thread = RARRAY_AREF(threads, i);
|
532
|
+
struct per_thread_context *thread_context = get_or_create_context_for(thread, state);
|
533
|
+
|
534
|
+
if (
|
535
|
+
thread_context->gc_tracking.cpu_time_at_start_ns == INVALID_TIME ||
|
536
|
+
thread_context->gc_tracking.cpu_time_at_finish_ns == INVALID_TIME ||
|
537
|
+
thread_context->gc_tracking.wall_time_at_start_ns == INVALID_TIME ||
|
538
|
+
thread_context->gc_tracking.wall_time_at_finish_ns == INVALID_TIME
|
539
|
+
) continue; // Ignore threads with no/incomplete garbage collection data
|
540
|
+
|
541
|
+
sampled_any_thread = true;
|
542
|
+
|
543
|
+
long gc_cpu_time_elapsed_ns =
|
544
|
+
thread_context->gc_tracking.cpu_time_at_finish_ns - thread_context->gc_tracking.cpu_time_at_start_ns;
|
545
|
+
long gc_wall_time_elapsed_ns =
|
546
|
+
thread_context->gc_tracking.wall_time_at_finish_ns - thread_context->gc_tracking.wall_time_at_start_ns;
|
547
|
+
|
548
|
+
// We don't expect non-wall time to go backwards, so let's flag this as a bug
|
549
|
+
if (gc_cpu_time_elapsed_ns < 0) rb_raise(rb_eRuntimeError, "BUG: Unexpected negative gc_cpu_time_elapsed_ns between samples");
|
550
|
+
// Wall-time can actually go backwards (e.g. when the system clock gets set) so we can't assume time going backwards
|
551
|
+
// was a bug.
|
552
|
+
// @ivoanjo: I've also observed time going backwards spuriously on macOS, see discussion on
|
553
|
+
// https://github.com/DataDog/dd-trace-rb/pull/2336.
|
554
|
+
if (gc_wall_time_elapsed_ns < 0) gc_wall_time_elapsed_ns = 0;
|
555
|
+
|
556
|
+
if (thread_context->gc_tracking.wall_time_at_start_ns == 0 && thread_context->gc_tracking.wall_time_at_finish_ns != 0) {
|
557
|
+
// Avoid using wall-clock if we got 0 for a start (meaning there was an error) but not 0 for finish so we don't
|
558
|
+
// come up with a crazy value for the frame
|
559
|
+
rb_raise(rb_eRuntimeError, "BUG: Unexpected zero value for gc_tracking.wall_time_at_start_ns");
|
560
|
+
}
|
561
|
+
|
562
|
+
trigger_sample_for_thread(
|
563
|
+
state,
|
564
|
+
/* thread: */ thread,
|
565
|
+
/* stack_from_thread: */ thread,
|
566
|
+
thread_context,
|
567
|
+
(sample_values) {.cpu_time_ns = gc_cpu_time_elapsed_ns, .cpu_samples = 1, .wall_time_ns = gc_wall_time_elapsed_ns},
|
568
|
+
SAMPLE_IN_GC
|
569
|
+
);
|
570
|
+
|
571
|
+
// Mark thread as no longer in GC
|
572
|
+
thread_context->gc_tracking.cpu_time_at_start_ns = INVALID_TIME;
|
573
|
+
thread_context->gc_tracking.cpu_time_at_finish_ns = INVALID_TIME;
|
574
|
+
thread_context->gc_tracking.wall_time_at_start_ns = INVALID_TIME;
|
575
|
+
thread_context->gc_tracking.wall_time_at_finish_ns = INVALID_TIME;
|
576
|
+
|
577
|
+
// Update counters so that they won't include the time in GC during the next sample
|
578
|
+
if (thread_context->cpu_time_at_previous_sample_ns != INVALID_TIME) {
|
579
|
+
thread_context->cpu_time_at_previous_sample_ns += gc_cpu_time_elapsed_ns;
|
580
|
+
}
|
581
|
+
if (thread_context->wall_time_at_previous_sample_ns != INVALID_TIME) {
|
582
|
+
thread_context->wall_time_at_previous_sample_ns += gc_wall_time_elapsed_ns;
|
583
|
+
}
|
584
|
+
}
|
585
|
+
|
586
|
+
if (sampled_any_thread) state->stats.gc_samples++;
|
587
|
+
|
588
|
+
// Return a VALUE to make it easier to call this function from Ruby APIs that expect a return value (such as rb_rescue2)
|
589
|
+
return Qnil;
|
590
|
+
}
|
591
|
+
|
592
|
+
static void trigger_sample_for_thread(
|
593
|
+
struct thread_context_collector_state *state,
|
594
|
+
VALUE thread,
|
595
|
+
VALUE stack_from_thread, // This can be different when attributing profiler overhead using a different stack
|
596
|
+
struct per_thread_context *thread_context,
|
597
|
+
sample_values values,
|
598
|
+
sample_type type
|
599
|
+
) {
|
600
|
+
int max_label_count =
|
601
|
+
1 + // thread id
|
602
|
+
1 + // thread name
|
603
|
+
1 + // profiler overhead
|
604
|
+
2; // local root span id and span id
|
605
|
+
ddog_prof_Label labels[max_label_count];
|
606
|
+
int label_pos = 0;
|
607
|
+
|
608
|
+
labels[label_pos++] = (ddog_prof_Label) {
|
609
|
+
.key = DDOG_CHARSLICE_C("thread id"),
|
610
|
+
.str = thread_context->thread_id_char_slice
|
611
|
+
};
|
612
|
+
|
613
|
+
VALUE thread_name = thread_name_for(thread);
|
614
|
+
if (thread_name != Qnil) {
|
615
|
+
labels[label_pos++] = (ddog_prof_Label) {
|
616
|
+
.key = DDOG_CHARSLICE_C("thread name"),
|
617
|
+
.str = char_slice_from_ruby_string(thread_name)
|
618
|
+
};
|
619
|
+
}
|
620
|
+
|
621
|
+
struct trace_identifiers trace_identifiers_result = {.valid = false, .trace_endpoint = Qnil};
|
622
|
+
trace_identifiers_for(state, thread, &trace_identifiers_result);
|
623
|
+
|
624
|
+
if (trace_identifiers_result.valid) {
|
625
|
+
labels[label_pos++] = (ddog_prof_Label) {.key = DDOG_CHARSLICE_C("local root span id"), .num = trace_identifiers_result.local_root_span_id};
|
626
|
+
labels[label_pos++] = (ddog_prof_Label) {.key = DDOG_CHARSLICE_C("span id"), .num = trace_identifiers_result.span_id};
|
627
|
+
|
628
|
+
if (trace_identifiers_result.trace_endpoint != Qnil) {
|
629
|
+
// The endpoint gets recorded in a different way because it is mutable in the tracer and can change during a
|
630
|
+
// trace.
|
631
|
+
//
|
632
|
+
// Instead of each sample for the same local_root_span_id getting a potentially-different endpoint,
|
633
|
+
// `record_endpoint` (via libdatadog) keeps a list of local_root_span_id values and their most-recently-seen
|
634
|
+
// endpoint values, and at serialization time the most-recently-seen endpoint is applied to all relevant samples.
|
635
|
+
//
|
636
|
+
// This is why the endpoint is not directly added in this function to the labels array, although it will later
|
637
|
+
// show up in the array in the output pprof.
|
638
|
+
record_endpoint(
|
639
|
+
state->recorder_instance,
|
640
|
+
trace_identifiers_result.local_root_span_id,
|
641
|
+
char_slice_from_ruby_string(trace_identifiers_result.trace_endpoint)
|
642
|
+
);
|
643
|
+
}
|
644
|
+
}
|
645
|
+
|
646
|
+
if (thread != stack_from_thread) {
|
647
|
+
labels[label_pos++] = (ddog_prof_Label) {
|
648
|
+
.key = DDOG_CHARSLICE_C("profiler overhead"),
|
649
|
+
.num = 1
|
650
|
+
};
|
651
|
+
}
|
652
|
+
|
653
|
+
// The number of times `label_pos++` shows up in this function needs to match `max_label_count`. To avoid "oops I
|
654
|
+
// forgot to update max_label_count" in the future, we've also added this validation.
|
655
|
+
// @ivoanjo: I wonder if C compilers are smart enough to statically prove when this check never triggers happens and
|
656
|
+
// remove it entirely.
|
657
|
+
if (label_pos > max_label_count) {
|
658
|
+
rb_raise(rb_eRuntimeError, "BUG: Unexpected label_pos (%d) > max_label_count (%d)", label_pos, max_label_count);
|
659
|
+
}
|
660
|
+
|
661
|
+
sample_thread(
|
662
|
+
stack_from_thread,
|
663
|
+
state->sampling_buffer,
|
664
|
+
state->recorder_instance,
|
665
|
+
values,
|
666
|
+
(ddog_prof_Slice_Label) {.ptr = labels, .len = label_pos},
|
667
|
+
type
|
668
|
+
);
|
669
|
+
}
|
670
|
+
|
671
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
672
|
+
// It SHOULD NOT be used for other purposes.
|
673
|
+
static VALUE _native_thread_list(DDTRACE_UNUSED VALUE _self) {
|
674
|
+
VALUE result = rb_ary_new();
|
675
|
+
ddtrace_thread_list(result);
|
676
|
+
return result;
|
677
|
+
}
|
678
|
+
|
679
|
+
static struct per_thread_context *get_or_create_context_for(VALUE thread, struct thread_context_collector_state *state) {
|
680
|
+
struct per_thread_context* thread_context = NULL;
|
681
|
+
st_data_t value_context = 0;
|
682
|
+
|
683
|
+
if (st_lookup(state->hash_map_per_thread_context, (st_data_t) thread, &value_context)) {
|
684
|
+
thread_context = (struct per_thread_context*) value_context;
|
685
|
+
} else {
|
686
|
+
thread_context = ruby_xcalloc(1, sizeof(struct per_thread_context));
|
687
|
+
initialize_context(thread, thread_context);
|
688
|
+
st_insert(state->hash_map_per_thread_context, (st_data_t) thread, (st_data_t) thread_context);
|
689
|
+
}
|
690
|
+
|
691
|
+
return thread_context;
|
692
|
+
}
|
693
|
+
|
694
|
+
static struct per_thread_context *get_context_for(VALUE thread, struct thread_context_collector_state *state) {
|
695
|
+
struct per_thread_context* thread_context = NULL;
|
696
|
+
st_data_t value_context = 0;
|
697
|
+
|
698
|
+
if (st_lookup(state->hash_map_per_thread_context, (st_data_t) thread, &value_context)) {
|
699
|
+
thread_context = (struct per_thread_context*) value_context;
|
700
|
+
}
|
701
|
+
|
702
|
+
return thread_context;
|
703
|
+
}
|
704
|
+
|
705
|
+
static void initialize_context(VALUE thread, struct per_thread_context *thread_context) {
|
706
|
+
snprintf(thread_context->thread_id, THREAD_ID_LIMIT_CHARS, "%"PRIu64" (%lu)", native_thread_id_for(thread), (unsigned long) thread_id_for(thread));
|
707
|
+
thread_context->thread_id_char_slice = (ddog_CharSlice) {.ptr = thread_context->thread_id, .len = strlen(thread_context->thread_id)};
|
708
|
+
|
709
|
+
thread_context->thread_cpu_time_id = thread_cpu_time_id_for(thread);
|
710
|
+
|
711
|
+
// These will get initialized during actual sampling
|
712
|
+
thread_context->cpu_time_at_previous_sample_ns = INVALID_TIME;
|
713
|
+
thread_context->wall_time_at_previous_sample_ns = INVALID_TIME;
|
714
|
+
|
715
|
+
// These will only be used during a GC operation
|
716
|
+
thread_context->gc_tracking.cpu_time_at_start_ns = INVALID_TIME;
|
717
|
+
thread_context->gc_tracking.cpu_time_at_finish_ns = INVALID_TIME;
|
718
|
+
thread_context->gc_tracking.wall_time_at_start_ns = INVALID_TIME;
|
719
|
+
thread_context->gc_tracking.wall_time_at_finish_ns = INVALID_TIME;
|
720
|
+
}
|
721
|
+
|
722
|
+
static VALUE _native_inspect(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) {
|
723
|
+
struct thread_context_collector_state *state;
|
724
|
+
TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
725
|
+
|
726
|
+
VALUE result = rb_str_new2(" (native state)");
|
727
|
+
|
728
|
+
// Update this when modifying state struct
|
729
|
+
rb_str_concat(result, rb_sprintf(" hash_map_per_thread_context=%"PRIsVALUE, per_thread_context_st_table_as_ruby_hash(state)));
|
730
|
+
rb_str_concat(result, rb_sprintf(" recorder_instance=%"PRIsVALUE, state->recorder_instance));
|
731
|
+
VALUE tracer_context_key = state->tracer_context_key == MISSING_TRACER_CONTEXT_KEY ? Qnil : ID2SYM(state->tracer_context_key);
|
732
|
+
rb_str_concat(result, rb_sprintf(" tracer_context_key=%+"PRIsVALUE, tracer_context_key));
|
733
|
+
rb_str_concat(result, rb_sprintf(" sample_count=%u", state->sample_count));
|
734
|
+
rb_str_concat(result, rb_sprintf(" stats=%"PRIsVALUE, stats_as_ruby_hash(state)));
|
735
|
+
|
736
|
+
return result;
|
737
|
+
}
|
738
|
+
|
739
|
+
static VALUE per_thread_context_st_table_as_ruby_hash(struct thread_context_collector_state *state) {
|
740
|
+
VALUE result = rb_hash_new();
|
741
|
+
st_foreach(state->hash_map_per_thread_context, per_thread_context_as_ruby_hash, result);
|
742
|
+
return result;
|
743
|
+
}
|
744
|
+
|
745
|
+
static int per_thread_context_as_ruby_hash(st_data_t key_thread, st_data_t value_context, st_data_t result_hash) {
|
746
|
+
VALUE thread = (VALUE) key_thread;
|
747
|
+
struct per_thread_context *thread_context = (struct per_thread_context*) value_context;
|
748
|
+
VALUE result = (VALUE) result_hash;
|
749
|
+
VALUE context_as_hash = rb_hash_new();
|
750
|
+
rb_hash_aset(result, thread, context_as_hash);
|
751
|
+
|
752
|
+
VALUE arguments[] = {
|
753
|
+
ID2SYM(rb_intern("thread_id")), /* => */ rb_str_new2(thread_context->thread_id),
|
754
|
+
ID2SYM(rb_intern("thread_cpu_time_id_valid?")), /* => */ thread_context->thread_cpu_time_id.valid ? Qtrue : Qfalse,
|
755
|
+
ID2SYM(rb_intern("thread_cpu_time_id")), /* => */ CLOCKID2NUM(thread_context->thread_cpu_time_id.clock_id),
|
756
|
+
ID2SYM(rb_intern("cpu_time_at_previous_sample_ns")), /* => */ LONG2NUM(thread_context->cpu_time_at_previous_sample_ns),
|
757
|
+
ID2SYM(rb_intern("wall_time_at_previous_sample_ns")), /* => */ LONG2NUM(thread_context->wall_time_at_previous_sample_ns),
|
758
|
+
|
759
|
+
ID2SYM(rb_intern("gc_tracking.cpu_time_at_start_ns")), /* => */ LONG2NUM(thread_context->gc_tracking.cpu_time_at_start_ns),
|
760
|
+
ID2SYM(rb_intern("gc_tracking.cpu_time_at_finish_ns")), /* => */ LONG2NUM(thread_context->gc_tracking.cpu_time_at_finish_ns),
|
761
|
+
ID2SYM(rb_intern("gc_tracking.wall_time_at_start_ns")), /* => */ LONG2NUM(thread_context->gc_tracking.wall_time_at_start_ns),
|
762
|
+
ID2SYM(rb_intern("gc_tracking.wall_time_at_finish_ns")), /* => */ LONG2NUM(thread_context->gc_tracking.wall_time_at_finish_ns)
|
763
|
+
};
|
764
|
+
for (long unsigned int i = 0; i < VALUE_COUNT(arguments); i += 2) rb_hash_aset(context_as_hash, arguments[i], arguments[i+1]);
|
765
|
+
|
766
|
+
return ST_CONTINUE;
|
767
|
+
}
|
768
|
+
|
769
|
+
static VALUE stats_as_ruby_hash(struct thread_context_collector_state *state) {
|
770
|
+
// Update this when modifying state struct (stats inner struct)
|
771
|
+
VALUE stats_as_hash = rb_hash_new();
|
772
|
+
VALUE arguments[] = {
|
773
|
+
ID2SYM(rb_intern("gc_samples")), /* => */ UINT2NUM(state->stats.gc_samples),
|
774
|
+
ID2SYM(rb_intern("gc_samples_missed_due_to_missing_context")), /* => */ UINT2NUM(state->stats.gc_samples_missed_due_to_missing_context),
|
775
|
+
};
|
776
|
+
for (long unsigned int i = 0; i < VALUE_COUNT(arguments); i += 2) rb_hash_aset(stats_as_hash, arguments[i], arguments[i+1]);
|
777
|
+
return stats_as_hash;
|
778
|
+
}
|
779
|
+
|
780
|
+
static void remove_context_for_dead_threads(struct thread_context_collector_state *state) {
|
781
|
+
st_foreach(state->hash_map_per_thread_context, remove_if_dead_thread, 0 /* unused */);
|
782
|
+
}
|
783
|
+
|
784
|
+
static int remove_if_dead_thread(st_data_t key_thread, st_data_t value_context, DDTRACE_UNUSED st_data_t _argument) {
|
785
|
+
VALUE thread = (VALUE) key_thread;
|
786
|
+
struct per_thread_context* thread_context = (struct per_thread_context*) value_context;
|
787
|
+
|
788
|
+
if (is_thread_alive(thread)) return ST_CONTINUE;
|
789
|
+
|
790
|
+
ruby_xfree(thread_context);
|
791
|
+
return ST_DELETE;
|
792
|
+
}
|
793
|
+
|
794
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
795
|
+
// It SHOULD NOT be used for other purposes.
|
796
|
+
//
|
797
|
+
// Returns the whole contents of the per_thread_context structs being tracked.
|
798
|
+
static VALUE _native_per_thread_context(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) {
|
799
|
+
struct thread_context_collector_state *state;
|
800
|
+
TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
801
|
+
|
802
|
+
return per_thread_context_st_table_as_ruby_hash(state);
|
803
|
+
}
|
804
|
+
|
805
|
+
static long update_time_since_previous_sample(long *time_at_previous_sample_ns, long current_time_ns, long gc_start_time_ns, bool is_wall_time) {
|
806
|
+
// If we didn't have a time for the previous sample, we use the current one
|
807
|
+
if (*time_at_previous_sample_ns == INVALID_TIME) *time_at_previous_sample_ns = current_time_ns;
|
808
|
+
|
809
|
+
bool is_thread_doing_gc = gc_start_time_ns != INVALID_TIME;
|
810
|
+
long elapsed_time_ns = -1;
|
811
|
+
|
812
|
+
if (is_thread_doing_gc) {
|
813
|
+
bool previous_sample_was_during_gc = gc_start_time_ns <= *time_at_previous_sample_ns;
|
814
|
+
|
815
|
+
if (previous_sample_was_during_gc) {
|
816
|
+
elapsed_time_ns = 0; // No time to account for -- any time since the last sample is going to get assigned to GC separately
|
817
|
+
} else {
|
818
|
+
elapsed_time_ns = gc_start_time_ns - *time_at_previous_sample_ns; // Capture time between previous sample and start of GC only
|
819
|
+
}
|
820
|
+
|
821
|
+
// Remaining time (from gc_start_time to current_time_ns) will be accounted for inside `sample_after_gc`
|
822
|
+
*time_at_previous_sample_ns = gc_start_time_ns;
|
823
|
+
} else {
|
824
|
+
elapsed_time_ns = current_time_ns - *time_at_previous_sample_ns; // Capture all time since previous sample
|
825
|
+
*time_at_previous_sample_ns = current_time_ns;
|
826
|
+
}
|
827
|
+
|
828
|
+
if (elapsed_time_ns < 0) {
|
829
|
+
if (is_wall_time) {
|
830
|
+
// Wall-time can actually go backwards (e.g. when the system clock gets set) so we can't assume time going backwards
|
831
|
+
// was a bug.
|
832
|
+
// @ivoanjo: I've also observed time going backwards spuriously on macOS, see discussion on
|
833
|
+
// https://github.com/DataDog/dd-trace-rb/pull/2336.
|
834
|
+
elapsed_time_ns = 0;
|
835
|
+
} else {
|
836
|
+
// We don't expect non-wall time to go backwards, so let's flag this as a bug
|
837
|
+
rb_raise(rb_eRuntimeError, "BUG: Unexpected negative elapsed_time_ns between samples");
|
838
|
+
}
|
839
|
+
}
|
840
|
+
|
841
|
+
return elapsed_time_ns;
|
842
|
+
}
|
843
|
+
|
844
|
+
// Safety: This function is assumed never to raise exceptions by callers
|
845
|
+
static long cpu_time_now_ns(struct per_thread_context *thread_context) {
|
846
|
+
thread_cpu_time cpu_time = thread_cpu_time_for(thread_context->thread_cpu_time_id);
|
847
|
+
|
848
|
+
if (!cpu_time.valid) {
|
849
|
+
// Invalidate previous state of the counter (if any), it's no longer accurate. We need to get two good reads
|
850
|
+
// in a row to have an accurate delta.
|
851
|
+
thread_context->cpu_time_at_previous_sample_ns = INVALID_TIME;
|
852
|
+
return 0;
|
853
|
+
}
|
854
|
+
|
855
|
+
return cpu_time.result_ns;
|
856
|
+
}
|
857
|
+
|
858
|
+
static long thread_id_for(VALUE thread) {
|
859
|
+
VALUE object_id = rb_obj_id(thread);
|
860
|
+
|
861
|
+
// The API docs for Ruby state that `rb_obj_id` COULD be a BIGNUM and that if you want to be really sure you don't
|
862
|
+
// get a BIGNUM, then you should use `rb_memory_id`. But `rb_memory_id` is less interesting because it's less visible
|
863
|
+
// at the user level than the result of calling `#object_id`.
|
864
|
+
//
|
865
|
+
// It also seems uncommon to me that we'd ever get a BIGNUM; on old Ruby versions (pre-GC compaction), the object id
|
866
|
+
// was the pointer to the object, so that's not going to be a BIGNUM; on modern Ruby versions, Ruby keeps
|
867
|
+
// a counter, and only increments it for objects for which `#object_id`/`rb_obj_id` is called (e.g. most objects
|
868
|
+
// won't actually have an object id allocated).
|
869
|
+
//
|
870
|
+
// So, for now, let's simplify: we only support FIXNUMs, and we won't break if we get a BIGNUM; we just won't
|
871
|
+
// record the thread_id (but samples will still be collected).
|
872
|
+
return FIXNUM_P(object_id) ? FIX2LONG(object_id) : -1;
|
873
|
+
}
|
874
|
+
|
875
|
+
VALUE enforce_thread_context_collector_instance(VALUE object) {
|
876
|
+
Check_TypedStruct(object, &thread_context_collector_typed_data);
|
877
|
+
return object;
|
878
|
+
}
|
879
|
+
|
880
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
881
|
+
// It SHOULD NOT be used for other purposes.
|
882
|
+
//
|
883
|
+
// Returns the whole contents of the per_thread_context structs being tracked.
|
884
|
+
static VALUE _native_stats(DDTRACE_UNUSED VALUE _self, VALUE collector_instance) {
|
885
|
+
struct thread_context_collector_state *state;
|
886
|
+
TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
887
|
+
|
888
|
+
return stats_as_ruby_hash(state);
|
889
|
+
}
|
890
|
+
|
891
|
+
// Assumption 1: This function is called in a thread that is holding the Global VM Lock. Caller is responsible for enforcing this.
|
892
|
+
static void trace_identifiers_for(struct thread_context_collector_state *state, VALUE thread, struct trace_identifiers *trace_identifiers_result) {
|
893
|
+
if (state->tracer_context_key == MISSING_TRACER_CONTEXT_KEY) return;
|
894
|
+
|
895
|
+
VALUE current_context = rb_thread_local_aref(thread, state->tracer_context_key);
|
896
|
+
if (current_context == Qnil) return;
|
897
|
+
|
898
|
+
VALUE active_trace = rb_ivar_get(current_context, at_active_trace_id /* @active_trace */);
|
899
|
+
if (active_trace == Qnil) return;
|
900
|
+
|
901
|
+
VALUE root_span = rb_ivar_get(active_trace, at_root_span_id /* @root_span */);
|
902
|
+
VALUE active_span = rb_ivar_get(active_trace, at_active_span_id /* @active_span */);
|
903
|
+
if (root_span == Qnil || active_span == Qnil) return;
|
904
|
+
|
905
|
+
VALUE numeric_local_root_span_id = rb_ivar_get(root_span, at_id_id /* @id */);
|
906
|
+
VALUE numeric_span_id = rb_ivar_get(active_span, at_id_id /* @id */);
|
907
|
+
if (numeric_local_root_span_id == Qnil || numeric_span_id == Qnil) return;
|
908
|
+
|
909
|
+
trace_identifiers_result->local_root_span_id = NUM2ULL(numeric_local_root_span_id);
|
910
|
+
trace_identifiers_result->span_id = NUM2ULL(numeric_span_id);
|
911
|
+
|
912
|
+
trace_identifiers_result->valid = true;
|
913
|
+
|
914
|
+
VALUE root_span_type = rb_ivar_get(root_span, at_type_id /* @type */);
|
915
|
+
if (root_span_type == Qnil || !is_type_web(root_span_type)) return;
|
916
|
+
|
917
|
+
VALUE trace_resource = rb_ivar_get(active_trace, at_resource_id /* @resource */);
|
918
|
+
if (RB_TYPE_P(trace_resource, T_STRING)) {
|
919
|
+
trace_identifiers_result->trace_endpoint = trace_resource;
|
920
|
+
} else if (trace_resource == Qnil) {
|
921
|
+
// Fall back to resource from span, if any
|
922
|
+
trace_identifiers_result->trace_endpoint = rb_ivar_get(root_span, at_resource_id /* @resource */);
|
923
|
+
}
|
924
|
+
}
|
925
|
+
|
926
|
+
static bool is_type_web(VALUE root_span_type) {
|
927
|
+
ENFORCE_TYPE(root_span_type, T_STRING);
|
928
|
+
|
929
|
+
return RSTRING_LEN(root_span_type) == strlen("web") &&
|
930
|
+
(memcmp("web", StringValuePtr(root_span_type), strlen("web")) == 0);
|
931
|
+
}
|
932
|
+
|
933
|
+
// After the Ruby VM forks, this method gets called in the child process to clean up any leftover state from the parent.
|
934
|
+
//
|
935
|
+
// Assumption: This method gets called BEFORE restarting profiling -- e.g. there are no components attempting to
|
936
|
+
// trigger samples at the same time.
|
937
|
+
static VALUE _native_reset_after_fork(DDTRACE_UNUSED VALUE self, VALUE collector_instance) {
|
938
|
+
struct thread_context_collector_state *state;
|
939
|
+
TypedData_Get_Struct(collector_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
940
|
+
|
941
|
+
st_clear(state->hash_map_per_thread_context);
|
942
|
+
|
943
|
+
state->stats = (struct stats) {}; // Resets all stats back to zero
|
944
|
+
|
945
|
+
rb_funcall(state->recorder_instance, rb_intern("reset_after_fork"), 0);
|
946
|
+
|
947
|
+
return Qtrue;
|
948
|
+
}
|
949
|
+
|
950
|
+
static VALUE thread_list(struct thread_context_collector_state *state) {
|
951
|
+
VALUE result = state->thread_list_buffer;
|
952
|
+
rb_ary_clear(result);
|
953
|
+
ddtrace_thread_list(result);
|
954
|
+
return result;
|
955
|
+
}
|
956
|
+
|
957
|
+
void thread_context_collector_sample_allocation(VALUE self_instance, unsigned int sample_weight) {
|
958
|
+
struct thread_context_collector_state *state;
|
959
|
+
TypedData_Get_Struct(self_instance, struct thread_context_collector_state, &thread_context_collector_typed_data, state);
|
960
|
+
|
961
|
+
VALUE current_thread = rb_thread_current();
|
962
|
+
|
963
|
+
trigger_sample_for_thread(
|
964
|
+
state,
|
965
|
+
/* thread: */ current_thread,
|
966
|
+
/* stack_from_thread: */ current_thread,
|
967
|
+
get_or_create_context_for(current_thread, state),
|
968
|
+
(sample_values) {.alloc_samples = sample_weight},
|
969
|
+
SAMPLE_REGULAR
|
970
|
+
);
|
971
|
+
}
|
972
|
+
|
973
|
+
// This method exists only to enable testing Datadog::Profiling::Collectors::ThreadContext behavior using RSpec.
|
974
|
+
// It SHOULD NOT be used for other purposes.
|
975
|
+
static VALUE _native_sample_allocation(DDTRACE_UNUSED VALUE self, VALUE collector_instance, VALUE sample_weight) {
|
976
|
+
thread_context_collector_sample_allocation(collector_instance, NUM2UINT(sample_weight));
|
977
|
+
return Qtrue;
|
978
|
+
}
|