File tree Expand file tree Collapse file tree
packages/datadog-api-client-v1/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22439,6 +22439,10 @@ components:
2243922439 description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
2244022440 format: int64
2244122441 type: integer
22442+ infra_storage_mgmt_objects_count_avg:
22443+ description: Shows the average number of storage management objects over all hours in the current date for all organizations.
22444+ format: int64
22445+ type: integer
2244222446 ingested_events_bytes_sum:
2244322447 description: Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
2244422448 format: int64
@@ -23436,6 +23440,10 @@ components:
2343623440 description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
2343723441 format: int64
2343823442 type: integer
23443+ infra_storage_mgmt_objects_count_avg:
23444+ description: Shows the average number of storage management objects over all hours in the current date for the given org.
23445+ format: int64
23446+ type: integer
2343923447 ingested_events_bytes_sum:
2344023448 description: Shows the sum of all log bytes ingested over all hours in the current date for the given org.
2344123449 format: int64
@@ -24436,6 +24444,10 @@ components:
2443624444 description: Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
2443724445 format: int64
2443824446 type: integer
24447+ infra_storage_mgmt_objects_count_avg_sum:
24448+ description: Shows the average number of storage management objects over all hours in the current month for all organizations.
24449+ format: int64
24450+ type: integer
2443924451 ingested_events_bytes_agg_sum:
2444024452 description: Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
2444124453 format: int64
Original file line number Diff line number Diff line change @@ -531,6 +531,10 @@ export class UsageSummaryDate {
531531 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
532532 */
533533 "infraHostTop99p" ?: number ;
534+ /**
535+ * Shows the average number of storage management objects over all hours in the current date for all organizations.
536+ */
537+ "infraStorageMgmtObjectsCountAvg" ?: number ;
534538 /**
535539 * Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
536540 */
@@ -1642,6 +1646,11 @@ export class UsageSummaryDate {
16421646 type : "number" ,
16431647 format : "int64" ,
16441648 } ,
1649+ infraStorageMgmtObjectsCountAvg : {
1650+ baseName : "infra_storage_mgmt_objects_count_avg" ,
1651+ type : "number" ,
1652+ format : "int64" ,
1653+ } ,
16451654 ingestedEventsBytesSum : {
16461655 baseName : "ingested_events_bytes_sum" ,
16471656 type : "number" ,
Original file line number Diff line number Diff line change @@ -546,6 +546,10 @@ export class UsageSummaryDateOrg {
546546 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
547547 */
548548 "infraHostTop99p" ?: number ;
549+ /**
550+ * Shows the average number of storage management objects over all hours in the current date for the given org.
551+ */
552+ "infraStorageMgmtObjectsCountAvg" ?: number ;
549553 /**
550554 * Shows the sum of all log bytes ingested over all hours in the current date for the given org.
551555 */
@@ -1682,6 +1686,11 @@ export class UsageSummaryDateOrg {
16821686 type : "number" ,
16831687 format : "int64" ,
16841688 } ,
1689+ infraStorageMgmtObjectsCountAvg : {
1690+ baseName : "infra_storage_mgmt_objects_count_avg" ,
1691+ type : "number" ,
1692+ format : "int64" ,
1693+ } ,
16851694 ingestedEventsBytesSum : {
16861695 baseName : "ingested_events_bytes_sum" ,
16871696 type : "number" ,
Original file line number Diff line number Diff line change @@ -544,6 +544,10 @@ export class UsageSummaryResponse {
544544 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
545545 */
546546 "infraHostTop99pSum" ?: number ;
547+ /**
548+ * Shows the average number of storage management objects over all hours in the current month for all organizations.
549+ */
550+ "infraStorageMgmtObjectsCountAvgSum" ?: number ;
547551 /**
548552 * Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
549553 */
@@ -1703,6 +1707,11 @@ export class UsageSummaryResponse {
17031707 type : "number" ,
17041708 format : "int64" ,
17051709 } ,
1710+ infraStorageMgmtObjectsCountAvgSum : {
1711+ baseName : "infra_storage_mgmt_objects_count_avg_sum" ,
1712+ type : "number" ,
1713+ format : "int64" ,
1714+ } ,
17061715 ingestedEventsBytesAggSum : {
17071716 baseName : "ingested_events_bytes_agg_sum" ,
17081717 type : "number" ,
You can’t perform that action at this time.
0 commit comments