Skip to content

Commit 71001a6

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Normalize phrasing across rate/trace_rate in APM Retention Filters (#3025)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 1226a0a commit 71001a6

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-04-11 15:05:34.141217",
8-
"spec_repo_commit": "d209cd40"
7+
"regenerated": "2025-04-14 08:41:58.923641",
8+
"spec_repo_commit": "e73254d7"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-11 15:05:34.166826",
13-
"spec_repo_commit": "d209cd40"
12+
"regenerated": "2025-04-14 08:41:58.939474",
13+
"spec_repo_commit": "e73254d7"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25398,9 +25398,9 @@ components:
2539825398
type: string
2539925399
rate:
2540025400
description: 'Sample rate to apply to spans going through this retention
25401-
filter,
25401+
filter.
2540225402

25403-
a value of 1.0 keeps all spans matching the query.'
25403+
A value of 1.0 keeps all spans matching the query.'
2540425404
example: 1.0
2540525405
format: double
2540625406
type: number
@@ -25465,9 +25465,9 @@ components:
2546525465
type: string
2546625466
rate:
2546725467
description: 'Sample rate to apply to spans going through this retention
25468-
filter,
25468+
filter.
2546925469

25470-
a value of 1.0 keeps all spans matching the query.'
25470+
A value of 1.0 keeps all spans matching the query.'
2547125471
example: 1.0
2547225472
format: double
2547325473
type: number
@@ -25498,9 +25498,9 @@ components:
2549825498
type: string
2549925499
rate:
2550025500
description: 'Sample rate to apply to spans going through this retention
25501-
filter,
25501+
filter.
2550225502

25503-
a value of 1.0 keeps all spans matching the query.'
25503+
A value of 1.0 keeps all spans matching the query.'
2550425504
example: 1.0
2550525505
format: double
2550625506
type: number
@@ -25577,9 +25577,9 @@ components:
2557725577
type: string
2557825578
rate:
2557925579
description: 'Sample rate to apply to spans going through this retention
25580-
filter,
25580+
filter.
2558125581

25582-
a value of 1.0 keeps all spans matching the query.'
25582+
A value of 1.0 keeps all spans matching the query.'
2558325583
example: 1.0
2558425584
format: double
2558525585
type: number

api/datadogV2/model_retention_filter_all_attributes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ type RetentionFilterAllAttributes struct {
3030
ModifiedBy *string `json:"modified_by,omitempty"`
3131
// The name of the retention filter.
3232
Name *string `json:"name,omitempty"`
33-
// Sample rate to apply to spans going through this retention filter,
34-
// a value of 1.0 keeps all spans matching the query.
33+
// Sample rate to apply to spans going through this retention filter.
34+
// A value of 1.0 keeps all spans matching the query.
3535
Rate *float64 `json:"rate,omitempty"`
3636
// Sample rate to apply to traces containing spans going through this retention filter.
3737
// A value of 1.0 keeps all traces with spans matching the query.

api/datadogV2/model_retention_filter_attributes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ type RetentionFilterAttributes struct {
3030
ModifiedBy *string `json:"modified_by,omitempty"`
3131
// The name of the retention filter.
3232
Name *string `json:"name,omitempty"`
33-
// Sample rate to apply to spans going through this retention filter,
34-
// a value of 1.0 keeps all spans matching the query.
33+
// Sample rate to apply to spans going through this retention filter.
34+
// A value of 1.0 keeps all spans matching the query.
3535
Rate *float64 `json:"rate,omitempty"`
3636
// Sample rate to apply to traces containing spans going through this retention filter.
3737
// A value of 1.0 keeps all traces with spans matching the query.

api/datadogV2/model_retention_filter_create_attributes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ type RetentionFilterCreateAttributes struct {
2020
FilterType RetentionFilterType `json:"filter_type"`
2121
// The name of the retention filter.
2222
Name string `json:"name"`
23-
// Sample rate to apply to spans going through this retention filter,
24-
// a value of 1.0 keeps all spans matching the query.
23+
// Sample rate to apply to spans going through this retention filter.
24+
// A value of 1.0 keeps all spans matching the query.
2525
Rate float64 `json:"rate"`
2626
// Sample rate to apply to traces containing spans going through this retention filter.
2727
// A value of 1.0 keeps all traces with spans matching the query.

api/datadogV2/model_retention_filter_update_attributes.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ type RetentionFilterUpdateAttributes struct {
2020
FilterType RetentionFilterAllType `json:"filter_type"`
2121
// The name of the retention filter.
2222
Name string `json:"name"`
23-
// Sample rate to apply to spans going through this retention filter,
24-
// a value of 1.0 keeps all spans matching the query.
23+
// Sample rate to apply to spans going through this retention filter.
24+
// A value of 1.0 keeps all spans matching the query.
2525
Rate float64 `json:"rate"`
2626
// Sample rate to apply to traces containing spans going through this retention filter.
2727
// A value of 1.0 keeps all traces with spans matching the query.

0 commit comments

Comments
 (0)