You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{"description":"Pipeline containing nested processor with tags and description","filter":{"query":"source:python"},"name":"testPipelineWithNested","processors":[{"description":"This is a nested pipeline for production logs","filter":{"query":"env:production"},"is_enabled":true,"name":"nested_pipeline_with_metadata","tags":["env:prod","type:nested"],"type":"pipeline"}],"tags":["team:test"]}
Copy file name to clipboardExpand all lines: tests/scenarios/features/v1/logs_pipelines.feature
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,13 @@ Feature: Logs Pipelines
98
98
When the request is sent
99
99
Then the response status is 200 OK
100
100
101
+
@team:DataDog/event-platform-experience
102
+
Scenario: Create a pipeline with nested pipeline processor returns "OK" response
103
+
Given new "CreateLogsPipeline" request
104
+
And body with value {"filter": {"query": "source:python"}, "name": "testPipelineWithNested", "processors": [{"type": "pipeline", "is_enabled": true, "name": "nested_pipeline_with_metadata", "filter": {"query": "env:production"}, "tags": ["env:prod", "type:nested"], "description": "This is a nested pipeline for production logs"}], "tags": ["team:test"], "description": "Pipeline containing nested processor with tags and description"}
0 commit comments