Skip to content
Merged
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 @@ -95723,7 +95723,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 @@ -96374,7 +96374,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 @@ -45,7 +45,7 @@ def __init__(
:param trace_enabled: Whether the cross-product retention filter for APM traces is enabled.
:type trace_enabled: bool, optional

:param trace_sample_rate: The sample rate for the APM cross-product retention filter, between 0 and 100.
:param trace_sample_rate: 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.
:type trace_sample_rate: float, optional
"""
if trace_enabled is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(
:param query: The query string for a RUM retention filter.
:type query: str, optional

:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
:type sample_rate: float, optional
"""
if cross_product_sampling is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(
:param query: The query string for a RUM retention filter.
:type query: str, optional

:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
:type sample_rate: float
"""
if cross_product_sampling is not unset:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def __init__(
:param query: The query string for a RUM retention filter.
:type query: str, optional

:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
:param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100. Values are truncated to one decimal place.
:type sample_rate: float, optional
"""
if cross_product_sampling is not unset:
Expand Down
Loading