import React from 'react' import CircleNumber from '../CircleNumber' import MetadataList from '../MetadataList/MetadataList' import { HighlightCode } from 'UI' export default function IdentifyUsersTab() { return (

🕵️‍♂️
Identify Users

By User ID
Call setUserID to identify your users when recording a session. The identity of the user can be changed, but OpenReplay will only keep the last communicated user ID.
By adding metadata
Explicitly specify the metadata
You can add up to 10 keys.
Inject metadata when recording sessions
Use the setMetadata method in your code to inject custom user data in the form of a key/value pair (string).
Why Identify Users?
Make it easy to search and filter replays by user id. OpenReplay allows you to associate your internal-user-id with the recording.
What is Metadata?
Additional information about users can be provided with metadata (also known as traits or user variables). They take the form of key/value pairs, and are useful for filtering and searching for specific session replays.
) }