From 8d9d152c7e737115e6ed952eac01b63a094a953b Mon Sep 17 00:00:00 2001 From: "api-clients-generation-pipeline[bot]" <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com> Date: Tue, 17 Mar 2026 08:35:45 +0000 Subject: [PATCH] fix: replace invalid team 'metrics-aggregation' with 'metrics-intake-edge' in CODEOWNERS (#3127) Co-authored-by: ci.datadog-api-spec --- features/v1/metrics.feature | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/features/v1/metrics.feature b/features/v1/metrics.feature index 12886d423869..578439f7acbc 100644 --- a/features/v1/metrics.feature +++ b/features/v1/metrics.feature @@ -111,7 +111,7 @@ Feature: Metrics When the request is sent Then the response status is 200 OK - @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-aggregation + @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-intake-edge Scenario: Submit deflate distribution points returns "Payload accepted" response Given new "SubmitDistributionPoints" request And body with value {"series": [{"metric": "system.load.1.dist", "points": [[{{ timestamp("now") }}, [1.0, 2.0]]]}]} @@ -127,28 +127,28 @@ Feature: Metrics When the request is sent Then the response status is 202 Payload accepted - @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-aggregation + @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-intake-edge Scenario: Submit distribution points returns "Bad Request" response Given new "SubmitDistributionPoints" request And body with value {"series": [{"metric": "system.load.1.dist", "points": [[1475317847.0, 1.0]]}]} When the request is sent Then the response status is 400 Bad Request - @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-aggregation + @integration-only @skip-terraform-config @skip-validation @team:DataDog/metrics-intake-edge Scenario: Submit distribution points returns "Payload accepted" response Given new "SubmitDistributionPoints" request And body with value {"series": [{"metric": "system.load.1.dist", "points": [[{{ timestamp("now") }}, [1.0, 2.0]]]}]} When the request is sent Then the response status is 202 Payload accepted - @generated @skip @team:DataDog/metrics-aggregation + @generated @skip @team:DataDog/metrics-intake-edge Scenario: Submit distribution points returns "Payload too large" response Given new "SubmitDistributionPoints" request And body with value {"series": [{"metric": "system.load.1", "points": [[1475317847.0, [1.0, 2.0]]]}]} When the request is sent Then the response status is 413 Payload too large - @generated @skip @team:DataDog/metrics-aggregation + @generated @skip @team:DataDog/metrics-intake-edge Scenario: Submit distribution points returns "Request timeout" response Given new "SubmitDistributionPoints" request And body with value {"series": [{"metric": "system.load.1", "points": [[1475317847.0, [1.0, 2.0]]]}]}