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