rum_replay_session_watchers
Creates, updates, deletes, gets or lists a rum_replay_session_watchers resource.
Overview
| Name | rum_replay_session_watchers |
| Type | Resource |
| Id | datadog.digital_experience.rum_replay_session_watchers |
Fields
The following fields are returned by SELECT queries:
- list_rum_replay_session_watchers
| Name | Datatype | Description |
|---|---|---|
id | string | Unique identifier of the watcher user. |
attributes | object | Attributes of a user who has watched a RUM replay session, including contact information and watch statistics. |
type | string | Rum replay watcher resource type. (rum_replay_watcher) (default: rum_replay_watcher, example: rum_replay_watcher) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_rum_replay_session_watchers | select | session_id | page[size], page[number] | List session watchers. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
session_id | string | Unique identifier of the session. |
site | string | The Datadog site (region) for your organization, for example datadoghq.com, us3.datadoghq.com, us5.datadoghq.com, ap1.datadoghq.com, ap2.datadoghq.com, datadoghq.eu, ddog-gov.com. Resolved from the DD_SITE environment variable when set. Optional: defaults to datadoghq.com, or the value of the DD_SITE environment variable when set; a WHERE value overrides both. |
page[number] | integer (int64) | Page number for pagination (0-indexed). |
page[size] | integer (int64) | Number of items per page. |
SELECT examples
- list_rum_replay_session_watchers
List session watchers.
SELECT
id,
attributes,
type
FROM datadog.digital_experience.rum_replay_session_watchers
WHERE session_id = '{{ session_id }}' -- required
AND page[size] = '{{ page[size] }}'
AND page[number] = '{{ page[number] }}'
;