@@ -14,37 +14,32 @@ Feature: Cloud Network Monitoring
14
14
15
15
@team:Datadog/networks
16
16
Scenario : Get aggregated connections returns "OK" response
17
- Given operation "GetAggregatedConnections" enabled
18
- And new "GetAggregatedConnections" request
17
+ Given new "GetAggregatedConnections" request
19
18
When the request is sent
20
19
Then the response status is 200 OK
21
20
22
21
@team:Datadog/networks
23
22
Scenario : Get all aggregated DNS traffic returns "Bad Request" response
24
- Given operation "GetAggregatedDns" enabled
25
- And new "GetAggregatedDns" request
23
+ Given new "GetAggregatedDns" request
26
24
And request contains "group_by" parameter with value "server_ungrouped,server_service"
27
25
When the request is sent
28
26
Then the response status is 400 Bad Request
29
27
30
28
@team:Datadog/networks
31
29
Scenario : Get all aggregated DNS traffic returns "OK" response
32
- Given operation "GetAggregatedDns" enabled
33
- And new "GetAggregatedDns" request
30
+ Given new "GetAggregatedDns" request
34
31
When the request is sent
35
32
Then the response status is 200 OK
36
33
37
34
@skip-python @skip-ruby @team:Datadog/networks
38
35
Scenario : Get all aggregated connections returns "Bad Request" response
39
- Given operation "GetAggregatedConnections" enabled
40
- And new "GetAggregatedConnections" request
36
+ Given new "GetAggregatedConnections" request
41
37
And request contains "limit" parameter with value 8000
42
38
When the request is sent
43
39
Then the response status is 400 Bad Request
44
40
45
41
@generated @skip @team:Datadog/networks
46
42
Scenario : Get all aggregated connections returns "OK" response
47
- Given operation "GetAggregatedConnections" enabled
48
- And new "GetAggregatedConnections" request
43
+ Given new "GetAggregatedConnections" request
49
44
When the request is sent
50
45
Then the response status is 200 OK
0 commit comments