Skip to content

Commit 44da99a

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Edge Devices Monitoring fields to usage summary API (#3572)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 5fbd6ab commit 44da99a

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22187,6 +22187,11 @@ components:
2218722187
current date for all organizations.
2218822188
format: int64
2218922189
type: integer
22190+
infra_edge_monitoring_devices_top99p:
22191+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
22192+
over all hours in the current date for all organizations.
22193+
format: int64
22194+
type: integer
2219022195
infra_host_top99p:
2219122196
description: Shows the 99th percentile of all distinct infrastructure hosts
2219222197
over all hours in the current date for all organizations.
@@ -23350,6 +23355,11 @@ components:
2335023355
current date for the given org (To be deprecated on October 1st, 2024).
2335123356
format: int64
2335223357
type: integer
23358+
infra_edge_monitoring_devices_top99p:
23359+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
23360+
over all hours in the current date for the given org.
23361+
format: int64
23362+
type: integer
2335323363
infra_host_top99p:
2335423364
description: Shows the 99th percentile of all distinct infrastructure hosts
2335523365
over all hours in the current date for the given org.
@@ -24513,6 +24523,11 @@ components:
2451324523
2024).
2451424524
format: int64
2451524525
type: integer
24526+
infra_edge_monitoring_devices_top99p_sum:
24527+
description: Shows the 99th percentile of all Edge Devices Monitoring devices
24528+
over all hours in the current month for all organizations.
24529+
format: int64
24530+
type: integer
2451624531
infra_host_top99p_sum:
2451724532
description: Shows the 99th percentile of all distinct infrastructure hosts
2451824533
over all hours in the current month for all organizations.

services/usage_metering/src/v1/models/UsageSummaryDate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,10 @@ export class UsageSummaryDate {
434434
* Shows the sum of all log events indexed over all hours in the current date for all organizations.
435435
*/
436436
"indexedEventsCountSum"?: number;
437+
/**
438+
* Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for all organizations.
439+
*/
440+
"infraEdgeMonitoringDevicesTop99p"?: number;
437441
/**
438442
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
439443
*/
@@ -1412,6 +1416,11 @@ export class UsageSummaryDate {
14121416
type: "number",
14131417
format: "int64",
14141418
},
1419+
infraEdgeMonitoringDevicesTop99p: {
1420+
baseName: "infra_edge_monitoring_devices_top99p",
1421+
type: "number",
1422+
format: "int64",
1423+
},
14151424
infraHostTop99p: {
14161425
baseName: "infra_host_top99p",
14171426
type: "number",

services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,10 @@ export class UsageSummaryDateOrg {
448448
* Shows the sum of all log events indexed over all hours in the current date for the given org (To be deprecated on October 1st, 2024).
449449
*/
450450
"indexedEventsCountSum"?: number;
451+
/**
452+
* Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for the given org.
453+
*/
454+
"infraEdgeMonitoringDevicesTop99p"?: number;
451455
/**
452456
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
453457
*/
@@ -1451,6 +1455,11 @@ export class UsageSummaryDateOrg {
14511455
type: "number",
14521456
format: "int64",
14531457
},
1458+
infraEdgeMonitoringDevicesTop99p: {
1459+
baseName: "infra_edge_monitoring_devices_top99p",
1460+
type: "number",
1461+
format: "int64",
1462+
},
14541463
infraHostTop99p: {
14551464
baseName: "infra_host_top99p",
14561465
type: "number",

services/usage_metering/src/v1/models/UsageSummaryResponse.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -447,6 +447,10 @@ export class UsageSummaryResponse {
447447
* Shows the sum of all log events indexed over all hours in the current month for all organizations (To be deprecated on October 1st, 2024).
448448
*/
449449
"indexedEventsCountAggSum"?: number;
450+
/**
451+
* Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current month for all organizations.
452+
*/
453+
"infraEdgeMonitoringDevicesTop99pSum"?: number;
450454
/**
451455
* Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
452456
*/
@@ -1473,6 +1477,11 @@ export class UsageSummaryResponse {
14731477
type: "number",
14741478
format: "int64",
14751479
},
1480+
infraEdgeMonitoringDevicesTop99pSum: {
1481+
baseName: "infra_edge_monitoring_devices_top99p_sum",
1482+
type: "number",
1483+
format: "int64",
1484+
},
14761485
infraHostTop99pSum: {
14771486
baseName: "infra_host_top99p_sum",
14781487
type: "number",

0 commit comments

Comments
 (0)