Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion utils/_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,15 @@ class _Owner(Enum):
"nginx-datadog": "@DataDog/apm-idm-cpp", # IDM owns LP implementations on C++ libs
})
ml_observability = _OwnerDef("@DataDog/ml-observability")
profiler = _OwnerDef("@DataDog/profiling") # it does not exist
profiler = _OwnerDef("@DataDog/profiling", repo_overrides={
"dd-trace-dotnet": "@DataDog/profiling-dotnet",
"dd-trace-go": "@DataDog/profiling-go",
"dd-trace-java": "@DataDog/profiling-java",
"dd-trace-js": "@DataDog/profiling-js",
"dd-trace-php": "@DataDog/profiling-php",
"dd-trace-py": "@DataDog/profiling-python",
"dd-trace-rb": "@DataDog/profiling-rb",
})

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Include the Nginx profiling owner override

The PROFILING scenario is part of the tracer_release workflow, and manifests/cpp_nginx.yml only disables the process-tags checks, so Test_Profile::test_library and test_agent still run for cpp_nginx. In an nginx-datadog CI run, _get_ci_repo_name() resolves to nginx-datadog; because this new override map omits that repo, those profiling failures continue to be assigned to the default @DataDog/profiling instead of the C++ owner used by the other per-repo maps.

Useful? React with 👍 / 👎.

remote_config = _OwnerDef("@DataDog/remote-config")
rp = _OwnerDef("@DataDog/apm-reliability-and-performance")
sdk_capabilities = _OwnerDef("@DataDog/apm-sdk-capabilities", repo_overrides={
Expand Down
Loading