diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index bf2effce6326..6cb049db2a5c 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -21676,6 +21676,11 @@ components: in the current date for the given org. format: int64 type: integer + data_observability_quality_monitoring_avg: + description: Shows the average of all Data Observability Quality Monitoring + usage over all hours in the current date for the given org. + format: int64 + type: integer date: description: The date for the usage. format: date-time @@ -22829,6 +22834,11 @@ components: in the current date for the given org. format: int64 type: integer + data_observability_quality_monitoring_avg: + description: Shows the average of all Data Observability Quality Monitoring + usage over all hours in the current date for the given org. + format: int64 + type: integer dbm_host_top99p_sum: description: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org. @@ -23979,6 +23989,11 @@ components: in the current months for all organizations format: int64 type: integer + data_observability_quality_monitoring_avg_sum: + description: Shows the sum of the average of all Data Observability Quality + Monitoring usage over all hours in the current months for all organizations. + format: int64 + type: integer dbm_host_top99p_sum: description: Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations. diff --git a/services/usage_metering/src/v1/models/UsageSummaryDate.ts b/services/usage_metering/src/v1/models/UsageSummaryDate.ts index 09b4115aedd9..45c51338965f 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryDate.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryDate.ts @@ -254,6 +254,10 @@ export class UsageSummaryDate { * Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. */ "dataJobsMonitoringHostHrSum"?: number; + /** + * Shows the average of all Data Observability Quality Monitoring usage over all hours in the current date for the given org. + */ + "dataObservabilityQualityMonitoringAvg"?: number; /** * The date for the usage. */ @@ -1179,6 +1183,11 @@ export class UsageSummaryDate { type: "number", format: "int64", }, + dataObservabilityQualityMonitoringAvg: { + baseName: "data_observability_quality_monitoring_avg", + type: "number", + format: "int64", + }, date: { baseName: "date", type: "Date", diff --git a/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts b/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts index 255d92080d43..05c8fd2ee5df 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryDateOrg.ts @@ -268,6 +268,10 @@ export class UsageSummaryDateOrg { * Shows the sum of all Data Jobs Monitoring hosts over all hours in the current date for the given org. */ "dataJobsMonitoringHostHrSum"?: number; + /** + * Shows the average of all Data Observability Quality Monitoring usage over all hours in the current date for the given org. + */ + "dataObservabilityQualityMonitoringAvg"?: number; /** * Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for the given org. */ @@ -1219,6 +1223,11 @@ export class UsageSummaryDateOrg { type: "number", format: "int64", }, + dataObservabilityQualityMonitoringAvg: { + baseName: "data_observability_quality_monitoring_avg", + type: "number", + format: "int64", + }, dbmHostTop99pSum: { baseName: "dbm_host_top99p_sum", type: "number", diff --git a/services/usage_metering/src/v1/models/UsageSummaryResponse.ts b/services/usage_metering/src/v1/models/UsageSummaryResponse.ts index d08a23974d07..cb0b021f3943 100644 --- a/services/usage_metering/src/v1/models/UsageSummaryResponse.ts +++ b/services/usage_metering/src/v1/models/UsageSummaryResponse.ts @@ -267,6 +267,10 @@ export class UsageSummaryResponse { * Shows the sum of Data Jobs Monitoring hosts over all hours in the current months for all organizations */ "dataJobsMonitoringHostHrAggSum"?: number; + /** + * Shows the sum of the average of all Data Observability Quality Monitoring usage over all hours in the current months for all organizations. + */ + "dataObservabilityQualityMonitoringAvgSum"?: number; /** * Shows the 99th percentile of all Database Monitoring hosts over all hours in the current month for all organizations. */ @@ -1239,6 +1243,11 @@ export class UsageSummaryResponse { type: "number", format: "int64", }, + dataObservabilityQualityMonitoringAvgSum: { + baseName: "data_observability_quality_monitoring_avg_sum", + type: "number", + format: "int64", + }, dbmHostTop99pSum: { baseName: "dbm_host_top99p_sum", type: "number",