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