File tree Expand file tree Collapse file tree
services/usage_metering/src/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 @@ -526,6 +526,10 @@ export class UsageSummaryDate {
526526 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for all organizations.
527527 */
528528 "infraHostTop99p" ?: number ;
529+ /**
530+ * Shows the average number of storage management objects over all hours in the current date for all organizations.
531+ */
532+ "infraStorageMgmtObjectsCountAvg" ?: number ;
529533 /**
530534 * Shows the sum of all log bytes ingested over all hours in the current date for all organizations.
531535 */
@@ -1635,6 +1639,11 @@ export class UsageSummaryDate {
16351639 type : "number" ,
16361640 format : "int64" ,
16371641 } ,
1642+ infraStorageMgmtObjectsCountAvg : {
1643+ baseName : "infra_storage_mgmt_objects_count_avg" ,
1644+ type : "number" ,
1645+ format : "int64" ,
1646+ } ,
16381647 ingestedEventsBytesSum : {
16391648 baseName : "ingested_events_bytes_sum" ,
16401649 type : "number" ,
Original file line number Diff line number Diff line change @@ -540,6 +540,10 @@ export class UsageSummaryDateOrg {
540540 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current date for the given org.
541541 */
542542 "infraHostTop99p" ?: number ;
543+ /**
544+ * Shows the average number of storage management objects over all hours in the current date for the given org.
545+ */
546+ "infraStorageMgmtObjectsCountAvg" ?: number ;
543547 /**
544548 * Shows the sum of all log bytes ingested over all hours in the current date for the given org.
545549 */
@@ -1674,6 +1678,11 @@ export class UsageSummaryDateOrg {
16741678 type : "number" ,
16751679 format : "int64" ,
16761680 } ,
1681+ infraStorageMgmtObjectsCountAvg : {
1682+ baseName : "infra_storage_mgmt_objects_count_avg" ,
1683+ type : "number" ,
1684+ format : "int64" ,
1685+ } ,
16771686 ingestedEventsBytesSum : {
16781687 baseName : "ingested_events_bytes_sum" ,
16791688 type : "number" ,
Original file line number Diff line number Diff line change @@ -539,6 +539,10 @@ export class UsageSummaryResponse {
539539 * Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current month for all organizations.
540540 */
541541 "infraHostTop99pSum" ?: number ;
542+ /**
543+ * Shows the average number of storage management objects over all hours in the current month for all organizations.
544+ */
545+ "infraStorageMgmtObjectsCountAvgSum" ?: number ;
542546 /**
543547 * Shows the sum of all log bytes ingested over all hours in the current month for all organizations.
544548 */
@@ -1696,6 +1700,11 @@ export class UsageSummaryResponse {
16961700 type : "number" ,
16971701 format : "int64" ,
16981702 } ,
1703+ infraStorageMgmtObjectsCountAvgSum : {
1704+ baseName : "infra_storage_mgmt_objects_count_avg_sum" ,
1705+ type : "number" ,
1706+ format : "int64" ,
1707+ } ,
16991708 ingestedEventsBytesAggSum : {
17001709 baseName : "ingested_events_bytes_agg_sum" ,
17011710 type : "number" ,
You can’t perform that action at this time.
0 commit comments