Skip to content

Add usage type breakdown for error tracking billing dimension #1897

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
Merged
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-11-07 20:43:57.068797",
"spec_repo_commit": "efa118f1"
"regenerated": "2024-11-07 21:30:10.807748",
"spec_repo_commit": "66d9d069"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-11-07 20:43:57.087234",
"spec_repo_commit": "efa118f1"
"regenerated": "2024-11-07 21:30:10.827986",
"spec_repo_commit": "66d9d069"
}
}
}
30 changes: 30 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19932,11 +19932,21 @@ components:
over all hours in the current date for all organizations.
format: int64
type: integer
error_tracking_error_events_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current date for the given org.
format: int64
type: integer
error_tracking_events_sum:
description: Shows the sum of all Error Tracking events over all hours in
the current date for the given org.
format: int64
type: integer
error_tracking_rum_error_events_sum:
description: Shows the sum of all Error Tracking RUM error events over all
hours in the current date for the given org.
format: int64
type: integer
fargate_tasks_count_avg:
description: Shows the high-watermark of all Fargate tasks over all hours
in the current date for all organizations.
Expand Down Expand Up @@ -20688,11 +20698,21 @@ components:
queries over all hours in the current month for the given org.
format: int64
type: integer
error_tracking_error_events_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current date for the given org.
format: int64
type: integer
error_tracking_events_sum:
description: Shows the sum of all Error Tracking events over all hours in
the current date for the given org.
format: int64
type: integer
error_tracking_rum_error_events_sum:
description: Shows the sum of all Error Tracking RUM error events over all
hours in the current date for the given org.
format: int64
type: integer
fargate_tasks_count_avg:
description: The average task count for Fargate.
format: int64
Expand Down Expand Up @@ -21451,11 +21471,21 @@ components:
description: Shows the last date of usage in the current month for all organizations.
format: date-time
type: string
error_tracking_error_events_agg_sum:
description: Shows the sum of all Error Tracking error events over all hours
in the current month for all organizations.
format: int64
type: integer
error_tracking_events_agg_sum:
description: Shows the sum of all Error Tracking events over all hours in
the current months for all organizations.
format: int64
type: integer
error_tracking_rum_error_events_agg_sum:
description: Shows the sum of all Error Tracking RUM error events over all
hours in the current month for all organizations.
format: int64
type: integer
fargate_tasks_count_avg_sum:
description: Shows the average of all Fargate tasks over all hours in the
current month for all organizations.
Expand Down
18 changes: 18 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryDate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,18 @@ export class UsageSummaryDate {
* Shows the average of all normalized Database Monitoring queries over all hours in the current date for all organizations.
*/
"dbmQueriesCountAvg"?: number;
/**
* Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
*/
"errorTrackingErrorEventsSum"?: number;
/**
* Shows the sum of all Error Tracking events over all hours in the current date for the given org.
*/
"errorTrackingEventsSum"?: number;
/**
* Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
*/
"errorTrackingRumErrorEventsSum"?: number;
/**
* Shows the high-watermark of all Fargate tasks over all hours in the current date for all organizations.
*/
Expand Down Expand Up @@ -861,11 +869,21 @@ export class UsageSummaryDate {
type: "number",
format: "int64",
},
errorTrackingErrorEventsSum: {
baseName: "error_tracking_error_events_sum",
type: "number",
format: "int64",
},
errorTrackingEventsSum: {
baseName: "error_tracking_events_sum",
type: "number",
format: "int64",
},
errorTrackingRumErrorEventsSum: {
baseName: "error_tracking_rum_error_events_sum",
type: "number",
format: "int64",
},
fargateTasksCountAvg: {
baseName: "fargate_tasks_count_avg",
type: "number",
Expand Down
18 changes: 18 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,18 @@ export class UsageSummaryDateOrg {
* Shows the average of all distinct Database Monitoring normalized queries over all hours in the current month for the given org.
*/
"dbmQueriesAvgSum"?: number;
/**
* Shows the sum of all Error Tracking error events over all hours in the current date for the given org.
*/
"errorTrackingErrorEventsSum"?: number;
/**
* Shows the sum of all Error Tracking events over all hours in the current date for the given org.
*/
"errorTrackingEventsSum"?: number;
/**
* Shows the sum of all Error Tracking RUM error events over all hours in the current date for the given org.
*/
"errorTrackingRumErrorEventsSum"?: number;
/**
* The average task count for Fargate.
*/
Expand Down Expand Up @@ -897,11 +905,21 @@ export class UsageSummaryDateOrg {
type: "number",
format: "int64",
},
errorTrackingErrorEventsSum: {
baseName: "error_tracking_error_events_sum",
type: "number",
format: "int64",
},
errorTrackingEventsSum: {
baseName: "error_tracking_events_sum",
type: "number",
format: "int64",
},
errorTrackingRumErrorEventsSum: {
baseName: "error_tracking_rum_error_events_sum",
type: "number",
format: "int64",
},
fargateTasksCountAvg: {
baseName: "fargate_tasks_count_avg",
type: "number",
Expand Down
18 changes: 18 additions & 0 deletions packages/datadog-api-client-v1/models/UsageSummaryResponse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,18 @@ export class UsageSummaryResponse {
* Shows the last date of usage in the current month for all organizations.
*/
"endDate"?: Date;
/**
* Shows the sum of all Error Tracking error events over all hours in the current month for all organizations.
*/
"errorTrackingErrorEventsAggSum"?: number;
/**
* Shows the sum of all Error Tracking events over all hours in the current months for all organizations.
*/
"errorTrackingEventsAggSum"?: number;
/**
* Shows the sum of all Error Tracking RUM error events over all hours in the current month for all organizations.
*/
"errorTrackingRumErrorEventsAggSum"?: number;
/**
* Shows the average of all Fargate tasks over all hours in the current month for all organizations.
*/
Expand Down Expand Up @@ -921,11 +929,21 @@ export class UsageSummaryResponse {
type: "Date",
format: "date-time",
},
errorTrackingErrorEventsAggSum: {
baseName: "error_tracking_error_events_agg_sum",
type: "number",
format: "int64",
},
errorTrackingEventsAggSum: {
baseName: "error_tracking_events_agg_sum",
type: "number",
format: "int64",
},
errorTrackingRumErrorEventsAggSum: {
baseName: "error_tracking_rum_error_events_agg_sum",
type: "number",
format: "int64",
},
fargateTasksCountAvgSum: {
baseName: "fargate_tasks_count_avg_sum",
type: "number",
Expand Down
Loading