Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
9 changes: 9 additions & 0 deletions services/usage_metering/src/v1/models/UsageSummaryDate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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",
Expand Down
Loading