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 @@ -21196,6 +21196,11 @@ components:
users over all hours in the current date for all organizations.
format: int64
type: integer
incident_management_seats_hwm:
description: Shows the high-water mark of Incident Management seats over
all hours on the current date for all organizations.
format: int64
type: integer
indexed_events_count_sum:
description: Shows the sum of all log events indexed over all hours in the
current date for all organizations.
Expand Down Expand Up @@ -22312,6 +22317,11 @@ components:
users over all hours in the current date for the given org.
format: int64
type: integer
incident_management_seats_hwm:
description: Shows the high-water mark of Incident Management seats over
all hours on the current date for the given organization.
format: int64
type: integer
indexed_events_count_sum:
deprecated: true
description: Shows the sum of all log events indexed over all hours in the
Expand Down Expand Up @@ -23429,6 +23439,11 @@ components:
active users in the current month for all organizations.
format: int64
type: integer
incident_management_seats_hwm_sum:
description: Shows the sum of the high-water marks of Incident Management
seats over all hours in the current month for all organizations.
format: int64
type: integer
indexed_events_count_agg_sum:
deprecated: true
description: Shows the sum of all log events indexed over all hours in the
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 @@ -402,6 +402,10 @@ export class UsageSummaryDate {
* Shows the high-water mark of incident management monthly active users over all hours in the current date for all organizations.
*/
"incidentManagementMonthlyActiveUsersHwm"?: number;
/**
* Shows the high-water mark of Incident Management seats over all hours on the current date for all organizations.
*/
"incidentManagementSeatsHwm"?: number;
/**
* Shows the sum of all log events indexed over all hours in the current date for all organizations.
*/
Expand Down Expand Up @@ -1336,6 +1340,11 @@ export class UsageSummaryDate {
type: "number",
format: "int64",
},
incidentManagementSeatsHwm: {
baseName: "incident_management_seats_hwm",
type: "number",
format: "int64",
},
indexedEventsCountSum: {
baseName: "indexed_events_count_sum",
type: "number",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,10 @@ export class UsageSummaryDateOrg {
* Shows the high-water mark of incident management monthly active users over all hours in the current date for the given org.
*/
"incidentManagementMonthlyActiveUsersHwm"?: number;
/**
* Shows the high-water mark of Incident Management seats over all hours on the current date for the given organization.
*/
"incidentManagementSeatsHwm"?: number;
/**
* 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).
*/
Expand Down Expand Up @@ -1375,6 +1379,11 @@ export class UsageSummaryDateOrg {
type: "number",
format: "int64",
},
incidentManagementSeatsHwm: {
baseName: "incident_management_seats_hwm",
type: "number",
format: "int64",
},
indexedEventsCountSum: {
baseName: "indexed_events_count_sum",
type: "number",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,10 @@ export class UsageSummaryResponse {
* Shows sum of the high-water marks of incident management monthly active users in the current month for all organizations.
*/
"incidentManagementMonthlyActiveUsersHwmSum"?: number;
/**
* Shows the sum of the high-water marks of Incident Management seats over all hours in the current month for all organizations.
*/
"incidentManagementSeatsHwmSum"?: number;
/**
* 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).
*/
Expand Down Expand Up @@ -1397,6 +1401,11 @@ export class UsageSummaryResponse {
type: "number",
format: "int64",
},
incidentManagementSeatsHwmSum: {
baseName: "incident_management_seats_hwm_sum",
type: "number",
format: "int64",
},
indexedEventsCountAggSum: {
baseName: "indexed_events_count_agg_sum",
type: "number",
Expand Down