diff --git a/manifests/python.yml b/manifests/python.yml index acdd922d88..63e6212a6c 100644 --- a/manifests/python.yml +++ b/manifests/python.yml @@ -894,7 +894,6 @@ tests/: Test_Config_ObfuscationQueryStringRegexp_Configured: v2.0.0 Test_Config_ObfuscationQueryStringRegexp_Empty: v2.15.0 Test_Config_RuntimeMetrics_Default: incomplete_test_app (test needs to account for python runtime metrics) - Test_Config_RuntimeMetrics_Enabled: incomplete_test_app (test needs to account for python runtime metrics) Test_Config_RuntimeMetrics_Enabled: incomplete_test_app (Python seems to send sketches instead of gauges/counters) Test_Config_RuntimeMetrics_Enabled_WithRuntimeId: missing_feature Test_Config_UnifiedServiceTagging_CustomService: v2.0.0 diff --git a/utils/_context/_scenarios/__init__.py b/utils/_context/_scenarios/__init__.py index 0baa04683d..392b92c6b6 100644 --- a/utils/_context/_scenarios/__init__.py +++ b/utils/_context/_scenarios/__init__.py @@ -785,6 +785,9 @@ class _Scenarios: "RUNTIME_METRICS_ENABLED", weblog_env={"DD_DOGSTATSD_START_DELAY": "0"}, runtime_metrics_enabled=True, + # Disable the proxy in between weblog and the agent so that we can send metrics (via UDP) to the agent. + # The mitmproxy can only proxy UDP traffic by doing a host-wide transparent proxy, but we currently + # via specific ports. As a result, with the proxy enabled all UDP traffic is being dropped. use_proxy_for_weblog=False, doc="Test runtime metrics", )