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
4 changes: 2 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94282,7 +94282,7 @@ components:
example: true
type: boolean
trace_sample_rate:
description: The sample rate for the APM cross-product retention filter, between 0 and 100.
description: The sample rate for the APM cross-product retention filter, between 0 and 100. Values returned by the API are rounded to two decimal places.
example: 25.0
format: double
maximum: 100
Expand Down Expand Up @@ -94933,7 +94933,7 @@ components:
$ref: '#/components/schemas/RumRetentionFilterData'
type: object
RumRetentionFilterSampleRate:
description: The sample rate for a RUM retention filter, between 0.1 and 100.
description: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
example: 50.5
format: double
maximum: 100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ public RumCrossProductSampling traceSampleRate(Double traceSampleRate) {
}

/**
* The sample rate for the APM cross-product retention filter, between 0 and 100. minimum: 0
* maximum: 100
* The sample rate for the APM cross-product retention filter, between 0 and 100. Values returned
* by the API are rounded to two decimal places. minimum: 0 maximum: 100
*
* @return traceSampleRate
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,8 @@ public RumRetentionFilterAttributes sampleRate(Double sampleRate) {
}

/**
* The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one
* decimal place. minimum: 0.1 maximum: 100
*
* @return sampleRate
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ public RumRetentionFilterCreateAttributes sampleRate(Double sampleRate) {
}

/**
* The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one
* decimal place. minimum: 0.1 maximum: 100
*
* @return sampleRate
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,8 @@ public RumRetentionFilterUpdateAttributes sampleRate(Double sampleRate) {
}

/**
* The sample rate for a RUM retention filter, between 0.1 and 100. minimum: 0.1 maximum: 100
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one
* decimal place. minimum: 0.1 maximum: 100
*
* @return sampleRate
*/
Expand Down
Loading