File tree Expand file tree Collapse file tree 4 files changed +42
-0
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 4 files changed +42
-0
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -439,6 +439,10 @@ export class UsageSummaryDate {
439439 * Shows the sum of all log events indexed over all hours in the current date for all organizations.
440440 */
441441 "indexedEventsCountSum" ?: number ;
442+ /**
443+ * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for all organizations.
444+ */
445+ "infraEdgeMonitoringDevicesTop99p" ?: number ;
442446 /**
443447 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
444448 */
@@ -1419,6 +1423,11 @@ export class UsageSummaryDate {
14191423 type : "number" ,
14201424 format : "int64" ,
14211425 } ,
1426+ infraEdgeMonitoringDevicesTop99p : {
1427+ baseName : "infra_edge_monitoring_devices_top99p" ,
1428+ type : "number" ,
1429+ format : "int64" ,
1430+ } ,
14221431 infraHostTop99p : {
14231432 baseName : "infra_host_top99p" ,
14241433 type : "number" ,
Original file line number Diff line number Diff line change @@ -454,6 +454,10 @@ export class UsageSummaryDateOrg {
454454 * 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).
455455 */
456456 "indexedEventsCountSum" ?: number ;
457+ /**
458+ * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current date for the given org.
459+ */
460+ "infraEdgeMonitoringDevicesTop99p" ?: number ;
457461 /**
458462 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
459463 */
@@ -1459,6 +1463,11 @@ export class UsageSummaryDateOrg {
14591463 type : "number" ,
14601464 format : "int64" ,
14611465 } ,
1466+ infraEdgeMonitoringDevicesTop99p : {
1467+ baseName : "infra_edge_monitoring_devices_top99p" ,
1468+ type : "number" ,
1469+ format : "int64" ,
1470+ } ,
14621471 infraHostTop99p : {
14631472 baseName : "infra_host_top99p" ,
14641473 type : "number" ,
Original file line number Diff line number Diff line change @@ -452,6 +452,10 @@ export class UsageSummaryResponse {
452452 * 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).
453453 */
454454 "indexedEventsCountAggSum" ?: number ;
455+ /**
456+ * Shows the 99th percentile of all Edge Devices Monitoring devices over all hours in the current month for all organizations.
457+ */
458+ "infraEdgeMonitoringDevicesTop99pSum" ?: number ;
455459 /**
456460 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
457461 */
@@ -1480,6 +1484,11 @@ export class UsageSummaryResponse {
14801484 type : "number" ,
14811485 format : "int64" ,
14821486 } ,
1487+ infraEdgeMonitoringDevicesTop99pSum : {
1488+ baseName : "infra_edge_monitoring_devices_top99p_sum" ,
1489+ type : "number" ,
1490+ format : "int64" ,
1491+ } ,
14831492 infraHostTop99pSum : {
14841493 baseName : "infra_host_top99p_sum" ,
14851494 type : "number" ,
You can’t perform that action at this time.
0 commit comments