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: A query for container-level metrics such as CPU and memory usage.
15297
15305
properties:
15306
+
cross_org_uuids:
15307
+
$ref: "#/components/schemas/CrossOrgUuids"
15298
15308
data_source:
15299
15309
$ref: "#/components/schemas/ContainerDataSource"
15300
15310
is_normalized_cpu:
@@ -18122,6 +18132,14 @@ components:
18122
18132
nullable: true
18123
18133
type: string
18124
18134
type: object
18135
+
CrossOrgUuids:
18136
+
description: >-
18137
+
Organization UUIDs to query when using [cross-organization visibility](/account_management/org_settings/cross_org_visibility/). Limited to one organization UUID.
18138
+
items:
18139
+
description: An organization UUID.
18140
+
type: string
18141
+
maxItems: 1
18142
+
type: array
18125
18143
CsmAgentData:
18126
18144
description: Single Agent Data.
18127
18145
properties:
@@ -26178,6 +26196,8 @@ components:
26178
26196
properties:
26179
26197
compute:
26180
26198
$ref: "#/components/schemas/EventsCompute"
26199
+
cross_org_uuids:
26200
+
$ref: "#/components/schemas/CrossOrgUuids"
26181
26201
data_source:
26182
26202
$ref: "#/components/schemas/EventsDataSource"
26183
26203
group_by:
@@ -26231,6 +26251,8 @@ components:
26231
26251
properties:
26232
26252
compute:
26233
26253
$ref: "#/components/schemas/EventsCompute"
26254
+
cross_org_uuids:
26255
+
$ref: "#/components/schemas/CrossOrgUuids"
26234
26256
data_source:
26235
26257
$ref: "#/components/schemas/EventsDataSource"
26236
26258
group_by:
@@ -44141,6 +44163,8 @@ components:
44141
44163
properties:
44142
44164
aggregator:
44143
44165
$ref: "#/components/schemas/MetricsAggregator"
44166
+
cross_org_uuids:
44167
+
$ref: "#/components/schemas/CrossOrgUuids"
44144
44168
data_source:
44145
44169
$ref: "#/components/schemas/MetricsDataSource"
44146
44170
name:
@@ -44158,6 +44182,8 @@ components:
44158
44182
MetricsTimeseriesQuery:
44159
44183
description: A query against Datadog custom metrics or Cloud Cost data sources.
44160
44184
properties:
44185
+
cross_org_uuids:
44186
+
$ref: "#/components/schemas/CrossOrgUuids"
44161
44187
data_source:
44162
44188
$ref: "#/components/schemas/MetricsDataSource"
44163
44189
name:
@@ -55272,6 +55298,8 @@ components:
55272
55298
properties:
55273
55299
aggregator:
55274
55300
$ref: "#/components/schemas/MetricsAggregator"
55301
+
cross_org_uuids:
55302
+
$ref: "#/components/schemas/CrossOrgUuids"
55275
55303
data_source:
55276
55304
$ref: "#/components/schemas/ProcessDataSource"
55277
55305
is_normalized_cpu:
@@ -55395,6 +55423,8 @@ components:
55395
55423
ProcessTimeseriesQuery:
55396
55424
description: A query for host-level process metrics such as CPU and memory usage.
55397
55425
properties:
55426
+
cross_org_uuids:
55427
+
$ref: "#/components/schemas/CrossOrgUuids"
55398
55428
data_source:
55399
55429
$ref: "#/components/schemas/ProcessDataSource"
55400
55430
is_normalized_cpu:
@@ -69802,6 +69832,8 @@ components:
69802
69832
description: Additional filters applied to the SLO query.
Copy file name to clipboardExpand all lines: lib/datadog_api_client/v2/models/apm_dependency_stats_query.rb
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
21
21
classApmDependencyStatsQuery
22
22
includeBaseGenericModel
23
23
24
+
# Organization UUIDs to query when using [cross-organization visibility](/account_management/org_settings/cross_org_visibility/). Limited to one organization UUID.
25
+
attr_reader:cross_org_uuids
26
+
24
27
# A data source for APM dependency statistics queries.
Copy file name to clipboardExpand all lines: lib/datadog_api_client/v2/models/apm_metrics_query.rb
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
21
21
classApmMetricsQuery
22
22
includeBaseGenericModel
23
23
24
+
# Organization UUIDs to query when using [cross-organization visibility](/account_management/org_settings/cross_org_visibility/). Limited to one organization UUID.
Copy file name to clipboardExpand all lines: lib/datadog_api_client/v2/models/apm_resource_stats_query.rb
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ module DatadogAPIClient::V2
21
21
classApmResourceStatsQuery
22
22
includeBaseGenericModel
23
23
24
+
# Organization UUIDs to query when using [cross-organization visibility](/account_management/org_settings/cross_org_visibility/). Limited to one organization UUID.
25
+
attr_reader:cross_org_uuids
26
+
24
27
# A data source for APM resource statistics queries.
0 commit comments