Skip to content

MWL no longer requires customers to configure specific time/space aggrs #2162

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-04-29 18:57:42.214394",
"spec_repo_commit": "d1252b21"
"regenerated": "2025-04-30 00:24:42.412124",
"spec_repo_commit": "b1f4bbfd"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-04-29 18:57:42.231162",
"spec_repo_commit": "d1252b21"
"regenerated": "2025-04-30 00:24:42.429199",
"spec_repo_commit": "b1f4bbfd"
}
}
}
11 changes: 6 additions & 5 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20803,6 +20803,7 @@ components:
- space
type: object
MetricCustomAggregations:
deprecated: true
description: 'A list of queryable aggregation combinations for a count, rate,
or gauge metric.

Expand Down Expand Up @@ -49413,9 +49414,8 @@ paths:
- Metrics
/api/v2/metrics/{metric_name}/estimate:
get:
description: Returns the estimated cardinality for a metric with a given tag,
percentile and number of aggregations configuration using Metrics without
Limits™.
description: Returns the estimated cardinality for a metric with a given tag
and percentile configuration using Metrics without Limits™.
operationId: EstimateMetricsOutputSeries
parameters:
- $ref: '#/components/parameters/MetricName'
Expand All @@ -49437,8 +49437,9 @@ paths:
maximum: 2147483647
minimum: 49
type: integer
- description: The number of aggregations that a `count`, `rate`, or `gauge`
metric is configured to use. Max number of aggregation combos is 9.
- deprecated: true
description: This argument has no effect as all time and space combinations
are now available with no impact on customer bills.
example: 1
in: query
name: filter[num_aggregations]
Expand Down
4 changes: 2 additions & 2 deletions packages/datadog-api-client-v2/apis/MetricsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1756,7 +1756,7 @@ export interface MetricsApiEstimateMetricsOutputSeriesRequest {
*/
filterHoursAgo?: number;
/**
* The number of aggregations that a `count`, `rate`, or `gauge` metric is configured to use. Max number of aggregation combos is 9.
* This argument has no effect as all time and space combinations are now available with no impact on customer bills.
* @type number
*/
filterNumAggregations?: number;
Expand Down Expand Up @@ -2038,7 +2038,7 @@ export class MetricsApi {
}

/**
* Returns the estimated cardinality for a metric with a given tag, percentile and number of aggregations configuration using Metrics without Limits™.
* Returns the estimated cardinality for a metric with a given tag and percentile configuration using Metrics without Limits™.
* @param param The request object
*/
public estimateMetricsOutputSeries(
Expand Down