Tracker Analytics SDK

Learn how to set up and use OpenReplay tracker analytics SDK

Tracker Analytics SDK

Learn how to set up the OpenReplay tracker analytics SDK.

To learn more about managing your analytics data in the OpenReplay UI, visit Data Management.

// Identify a user with an id (e.g. email, username, etc.)
tracker.analytics.identify(userId: string): void
// same as
tracker.analytics.people.identify()

// Add event to batch with option to send it immediately
tracker.analytics.track(eventName: string, tempProperties?: Record<string, any>, options?: { send_immediately: boolean })
// same as
tracker.analytics.events.track()

If you encounter any issues, connect to our Slack or check out our Forum and get help from our community.