Identifying Users

By identifying users, you can associate a session recording with a meaningful nickname (name, email address, database ID, etc). Although optional, we highly recommend identifying users to have more context around your data throughout the dashboard.

Here's an example showing how to identify a user:

__insp.push(['identify', "john@example.com"]);

The above code will associate the current session with john@example.com in the dashboard.

The identify method only needs to be called once per session and can be called at anytime during the session. You can also call identify again with a different identity in case the user's identity needs to be updated.