Mohammad Asif cf937194cb Removed un-waned things 1. | 6 meses atrás | |
---|---|---|
.. | ||
cjs | 6 meses atrás | |
esm | 6 meses atrás | |
types | 6 meses atrás | |
types-ts3.8 | 6 meses atrás | |
LICENSE | 6 meses atrás | |
README.md | 6 meses atrás | |
package.json | 6 meses atrás |
Replay with canvas requires Node 12+, and browsers newer than IE11.
Replay and ReplayCanvas can be imported from @sentry/browser
, or a respective SDK package like @sentry/react
or @sentry/vue
.
You don't need to install anything in order to use Session Replay. The minimum version that includes Replay is 7.27.0.
For details on using Replay when using Sentry via the CDN bundles, see CDN bundle.
To set up the canvas integration, add the following to your Sentry integrations:
new Sentry.ReplayCanvas(),
import * as Sentry from '@sentry/browser';
// or e.g. import * as Sentry from '@sentry/react';
Sentry.init({
dsn: '__DSN__',
// This sets the sample rate to be 10%. You may want this to be 100% while
// in development and sample at a lower rate in production
replaysSessionSampleRate: 0.1,
// If the entire session is not sampled, use the below sample rate to sample
// sessions when an error occurs.
replaysOnErrorSampleRate: 1.0,
integrations: [
new Sentry.Replay(),
new Sentry.ReplayCanvas(),
],
// ...
});