From af057923ec9d32b35808e667f6e150c202dec0a7 Mon Sep 17 00:00:00 2001 From: Maximo Bautista Date: Tue, 10 Mar 2026 10:22:43 -0400 Subject: [PATCH 1/2] fix(dotnet): update SDK_DEFAULT_STABLE_CONFIG to expect runtime metrics enabled by default dotnet now defaults DD_RUNTIME_METRICS_ENABLED to true on .NET 6+. Made-with: Cursor --- tests/parametric/test_config_consistency.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parametric/test_config_consistency.py b/tests/parametric/test_config_consistency.py index 14983645244..983fbaa4465 100644 --- a/tests/parametric/test_config_consistency.py +++ b/tests/parametric/test_config_consistency.py @@ -378,7 +378,7 @@ def test_dogstatsd_custom_port(self, test_library: APMLibrary): SDK_DEFAULT_STABLE_CONFIG = { - "dd_runtime_metrics_enabled": "false" if context.library != "java" else "true", + "dd_runtime_metrics_enabled": "false" if context.library not in ("java", "dotnet") else "true", "dd_profiling_enabled": "1" if context.library == "php" else "true" From 5ef7d22514a092ba4c6ae03ef6bbdb1e2394f45f Mon Sep 17 00:00:00 2001 From: Maximo Bautista Date: Fri, 13 Mar 2026 16:04:42 -0400 Subject: [PATCH 2/2] Now that the default is true on tracer unskip test --- manifests/dotnet.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/manifests/dotnet.yml b/manifests/dotnet.yml index 5f08660d52f..950a196186e 100644 --- a/manifests/dotnet.yml +++ b/manifests/dotnet.yml @@ -770,9 +770,6 @@ manifest: tests/parametric/test_config_consistency.py::Test_Config_TraceLogDirectory: v3.3.0 tests/parametric/test_config_consistency.py::Test_Config_UnifiedServiceTagging: v3.3.0 tests/parametric/test_config_consistency.py::Test_Stable_Config_Default: v3.28.0 - tests/parametric/test_config_consistency.py::Test_Stable_Config_Default::test_default_config: missing_feature (runtime metrics default changing to true) - tests/parametric/test_config_consistency.py::Test_Stable_Config_Default::test_invalid_files: missing_feature (runtime metrics default changing to true) - tests/parametric/test_config_consistency.py::Test_Stable_Config_Default::test_unknown_key_skipped: missing_feature (runtime metrics default changing to true) tests/parametric/test_config_consistency.py::Test_Stable_Config_Rules: missing_feature tests/parametric/test_crashtracking.py::Test_Crashtracking: v3.2.0 tests/parametric/test_dynamic_configuration.py::TestDynamicConfigSamplingRules: v2.53.2