Session Replay
Record and replay user sessions to understand exactly what users did. Loaded asynchronously so it never bloats your analytics bundle.
Session replay captures a structured recording of what users do in your app or website. You can replay any session to see which elements were clicked, how forms were filled, and where users ran into friction—without guessing.
Session replay is not enabled by default. You explicitly opt in per-project. When disabled, the replay script is never downloaded, keeping your analytics bundle lean.
How it works
OpenPanel session replay is built on rrweb, an open-source library for recording and replaying web sessions. It captures DOM mutations, mouse movements, scroll positions, and interactions as structured data—not video.
The replay module is loaded asynchronously as a separate script (op1-replay.js). This means:
- Your main tracking script (
op1.js) stays lightweight even when replay is disabled - The replay module is only downloaded for sessions that are actually recorded
- No impact on page load performance when replay is turned off
Limits & retention
- Unlimited replays — no cap on the number of sessions recorded
- 30-day retention — replays are stored and accessible for 30 days
Setup
Script tag
Add sessionReplay to your init call. The replay script loads automatically from the same CDN as the main script.
<script>
window.op=window.op||function(){var n=[];return new Proxy(function(){arguments.length&&n.push([].slice.call(arguments))},{get:function(t,r){return"q"===r?n:function(){n.push([r].concat([].slice.call(arguments)))}} ,has:function(t,r){return"q"===r}}) }();
window.op('init', {
clientId: 'YOUR_CLIENT_ID',
trackScreenViews: true,
sessionReplay: {
enabled: true,
},
});
</script>
<script src="https://openpanel.dev/op1.js" defer async></script>NPM package
import { OpenPanel } from '@openpanel/web';
const op = new OpenPanel({
clientId: 'YOUR_CLIENT_ID',
trackScreenViews: true,
sessionReplay: {
enabled: true,
},
});With the npm package, the replay module is a dynamic import code-split by your bundler. It is never included in your main bundle when session replay is disabled.
Options
| Option | Type | Default | Description |
|---|---|---|---|
enabled | boolean | false | Enable session replay recording |
maskAllInputs | boolean | true | Mask all input field values |
maskAllText | boolean | true | Mask all text content in the recording |
unmaskTextSelector | string | — | CSS selector for elements whose text should NOT be masked when maskAllText is true |
blockSelector | string | [data-openpanel-replay-block] | CSS selector for elements to replace with a placeholder |
blockClass | string | — | Class name that blocks elements from being recorded |
ignoreSelector | string | — | CSS selector for elements excluded from interaction tracking |
flushIntervalMs | number | 10000 | How often (ms) recorded events are sent to the server |
maxEventsPerChunk | number | 200 | Maximum number of events per payload chunk |
maxPayloadBytes | number | 1048576 | Maximum payload size in bytes (1 MB) |
scriptUrl | string | — | Custom URL for the replay script (script-tag builds only) |
Privacy controls
Session replay captures user interactions. All text and inputs are masked by default — sensitive content is replaced with *** before it ever leaves the browser.
Text masking (default on)
All text content is masked by default (maskAllText: true). This means visible page text, labels, and content are replaced with *** in replays, in addition to input fields.
This is the safest default for GDPR compliance since replays cannot incidentally capture names, emails, or other personal data visible on the page.
Selectively unmasking text
If your pages display non-sensitive content you want visible in replays, use unmaskTextSelector to opt specific elements out of masking:
sessionReplay: {
enabled: true,
unmaskTextSelector: '[data-openpanel-unmask]',
}<h1 data-openpanel-unmask>Product Analytics</h1>
<p data-openpanel-unmask>Welcome to the dashboard</p>
<!-- This stays masked: -->
<p>John Doe · john@example.com</p>You can also use any CSS selector to target elements by class, tag, or attribute:
sessionReplay: {
enabled: true,
unmaskTextSelector: '.replay-safe, nav, footer',
}Disabling full text masking
If you want to disable full text masking and return to selector-based masking, set maskAllText: false. In this mode only elements with data-openpanel-replay-mask are masked:
sessionReplay: {
enabled: true,
maskAllText: false,
}<p data-openpanel-replay-mask>This will be masked</p>
<p>This will be visible in replays</p>Only disable maskAllText if you are confident your pages do not display personal data, or if you are masking all sensitive elements individually. You are responsible for ensuring your use of session replay complies with applicable privacy law.
Blocking elements
Elements matched by blockSelector or blockClass are replaced with a same-size grey placeholder in the replay. The element and all its children are never recorded.
<div data-openpanel-replay-block>
This section won't appear in replays at all
</div>Or with a custom selector:
sessionReplay: {
enabled: true,
blockSelector: '.payment-form, .user-avatar',
blockClass: 'no-replay',
}Ignoring interactions
Use ignoreSelector to exclude specific elements from interaction tracking. The element remains visible in the replay but clicks and input events on it are not recorded.
sessionReplay: {
enabled: true,
ignoreSelector: '.debug-panel',
}Self-hosting
If you self-host OpenPanel, the replay script is served from your instance automatically. You can also override the script URL if you host it separately:
sessionReplay: {
enabled: true,
scriptUrl: 'https://your-cdn.example.com/op1-replay.js',
}Related
- Session tracking — understand sessions without full replay
- Session replay feature overview — what you get with session replay
- Web SDK — full web SDK reference
- Script tag — using OpenPanel via a script tag