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
8 changes: 4 additions & 4 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 are rounded to two decimal places.
example: 25.0
format: double
maximum: 100
Expand All @@ -94297,7 +94297,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 are rounded to two decimal places.
example: 25.0
format: double
maximum: 100
Expand All @@ -94314,7 +94314,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 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 rounded to one decimal place on creation.
example: 50.5
format: double
maximum: 100
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class RumCrossProductSampling {
*/
"traceEnabled"?: boolean;
/**
* The sample rate for the APM cross-product retention filter, between 0 and 100.
* The sample rate for the APM cross-product retention filter, between 0 and 100. Values are rounded to two decimal places.
*/
"traceSampleRate"?: number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class RumCrossProductSamplingCreate {
*/
"traceEnabled"?: boolean;
/**
* The sample rate for the APM cross-product retention filter, between 0 and 100.
* The sample rate for the APM cross-product retention filter, between 0 and 100. Values are rounded to two decimal places.
*/
"traceSampleRate": number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class RumCrossProductSamplingUpdate {
*/
"traceEnabled"?: boolean;
/**
* The sample rate for the APM cross-product retention filter, between 0 and 100.
* The sample rate for the APM cross-product retention filter, between 0 and 100. Values are rounded to two decimal places.
*/
"traceSampleRate"?: number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class RumRetentionFilterAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0.1 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are rounded to one decimal place on creation.
*/
"sampleRate"?: number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class RumRetentionFilterCreateAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0.1 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are rounded to one decimal place on creation.
*/
"sampleRate": number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export class RumRetentionFilterUpdateAttributes {
*/
"query"?: string;
/**
* The sample rate for a RUM retention filter, between 0.1 and 100.
* The sample rate for a RUM retention filter, between 0.1 and 100. Values are rounded to one decimal place on creation.
*/
"sampleRate"?: number;

Expand Down
Loading