Skip to content

New product_analytics product added #2268

New issue

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

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

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
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": "2025-05-27 17:12:13.510503",
"spec_repo_commit": "ed439f7c"
"regenerated": "2025-05-28 13:24:38.898095",
"spec_repo_commit": "a4e80cb2"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-05-27 17:12:13.526776",
"spec_repo_commit": "ed439f7c"
"regenerated": "2025-05-28 13:24:38.914637",
"spec_repo_commit": "a4e80cb2"
}
}
}
190 changes: 107 additions & 83 deletions .generator/schemas/v1/openapi.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61071,8 +61071,8 @@ paths:
`lambda_traced_invocations`, `logs`, `network_flows`, `network_hosts`, `network_monitoring`,
`observability_pipelines`,

`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
`sds`, `snmp`, `software_delivery`,
`online_archive`, `profiling`, `product_analytics`, `rum`, `rum_browser_sessions`,
`rum_mobile_sessions`, `sds`, `snmp`, `software_delivery`,

`synthetics_api`, `synthetics_browser`, `synthetics_mobile`, `synthetics_parallel_testing`,
`timeseries`, `vuln_management`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ export type HourlyUsageAttributionUsageType =
| typeof PROFILED_CONTAINER_USAGE
| typeof PROFILED_FARGATE_USAGE
| typeof PROFILED_HOST_USAGE
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
| typeof RUM_REPLAY_SESSIONS_USAGE
| typeof SCA_FARGATE_USAGE
Expand Down Expand Up @@ -152,6 +153,8 @@ export const ONLINE_ARCHIVE_USAGE = "online_archive_usage";
export const PROFILED_CONTAINER_USAGE = "profiled_container_usage";
export const PROFILED_FARGATE_USAGE = "profiled_fargate_usage";
export const PROFILED_HOST_USAGE = "profiled_host_usage";
export const PRODUCT_ANALYTICS_SESSION_USAGE =
"product_analytics_session_usage";
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =
"rum_browser_mobile_sessions_usage";
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,8 @@ export type MonthlyUsageAttributionSupportedMetrics =
| typeof LOGS_INDEXED_3DAY_PERCENTAGE
| typeof LOGS_INDEXED_1DAY_USAGE
| typeof LOGS_INDEXED_1DAY_PERCENTAGE
| typeof PRODUCT_ANALYTICS_SESSION_USAGE
| typeof PRODUCT_ANALYTICS_SESSION_PERCENTAGE
| typeof RUM_REPLAY_SESSIONS_USAGE
| typeof RUM_REPLAY_SESSIONS_PERCENTAGE
| typeof RUM_BROWSER_MOBILE_SESSIONS_USAGE
Expand Down Expand Up @@ -300,6 +302,10 @@ export const LOGS_INDEXED_3DAY_USAGE = "logs_indexed_3day_usage";
export const LOGS_INDEXED_3DAY_PERCENTAGE = "logs_indexed_3day_percentage";
export const LOGS_INDEXED_1DAY_USAGE = "logs_indexed_1day_usage";
export const LOGS_INDEXED_1DAY_PERCENTAGE = "logs_indexed_1day_percentage";
export const PRODUCT_ANALYTICS_SESSION_USAGE =
"product_analytics_session_usage";
export const PRODUCT_ANALYTICS_SESSION_PERCENTAGE =
"product_analytics_session_percentage";
export const RUM_REPLAY_SESSIONS_USAGE = "rum_replay_sessions_usage";
export const RUM_REPLAY_SESSIONS_PERCENTAGE = "rum_replay_sessions_percentage";
export const RUM_BROWSER_MOBILE_SESSIONS_USAGE =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,14 @@ export class MonthlyUsageAttributionValues {
* The online archive usage by tag(s).
*/
"onlineArchiveUsage"?: number;
/**
* The percentage of Product Analytics session usage by tag(s).
*/
"productAnalyticsSessionPercentage"?: number;
/**
* The total Product Analytics session usage by tag(s).
*/
"productAnalyticsSessionUsage"?: number;
/**
* The percentage of profiled container usage by tag(s).
*/
Expand Down Expand Up @@ -1129,6 +1137,16 @@ export class MonthlyUsageAttributionValues {
type: "number",
format: "double",
},
productAnalyticsSessionPercentage: {
baseName: "product_analytics_session_percentage",
type: "number",
format: "double",
},
productAnalyticsSessionUsage: {
baseName: "product_analytics_session_usage",
type: "number",
format: "double",
},
profiledContainerPercentage: {
baseName: "profiled_container_percentage",
type: "number",
Expand Down
3 changes: 3 additions & 0 deletions packages/datadog-api-client-v1/models/ObjectSerializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -866,6 +866,7 @@ const enumsMap: { [key: string]: any[] } = {
"profiled_container_usage",
"profiled_fargate_usage",
"profiled_host_usage",
"product_analytics_session_usage",
"rum_browser_mobile_sessions_usage",
"rum_replay_sessions_usage",
"sca_fargate_usage",
Expand Down Expand Up @@ -1151,6 +1152,8 @@ const enumsMap: { [key: string]: any[] } = {
"logs_indexed_3day_percentage",
"logs_indexed_1day_usage",
"logs_indexed_1day_percentage",
"product_analytics_session_usage",
"product_analytics_session_percentage",
"rum_replay_sessions_usage",
"rum_replay_sessions_percentage",
"rum_browser_mobile_sessions_usage",
Expand Down
Loading