v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBRum Retention Filters
Get all permanent RUM retention filters
Get the list of permanent RUM retention filters for a RUM application. Permanent retention filters are predefined filters that cannot be created or deleted. For each filter, the editability block indicates which cross-product fields can be updated.
get/api/v2/rum/applications/{app_id}/retention_filters/permanent
Path parameters
app_idstring required
RUM application ID.
Response
OK
Example response
{
"data": [
{
"attributes": {
"cross_product_sampling": {
"trace_enabled": true,
"trace_sample_rate": 25
},
"description": "All sessions generated by Synthetics are retained at 100%.",
"editability": {
"trace_editable": true
},
"name": "Synthetics Sessions"
},
"id": "synthetics_sessions",
"type": "permanent_retention_filters"
}
]
}