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