Skip to main content

rum_replay_session_watchers

Creates, updates, deletes, gets or lists a rum_replay_session_watchers resource.

Overview

Namerum_replay_session_watchers
TypeResource
Iddatadog.digital_experience.rum_replay_session_watchers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringUnique identifier of the watcher user.
attributesobjectAttributes of a user who has watched a RUM replay session, including contact information and watch statistics.
typestringRum replay watcher resource type. (rum_replay_watcher) (default: rum_replay_watcher, example: rum_replay_watcher)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_rum_replay_session_watchersselectsession_idpage[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.

NameDatatypeDescription
session_idstringUnique identifier of the session.
sitestringThe 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 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] }}'
;