-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Open
Labels
BugNuxtPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDKWaiting for: Product Owner
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Self-hosted/on-premise
Which SDK are you using?
@sentry/nuxt
SDK Version
10.19.0
Framework Version
3.15.4 client side
Link to Sentry event
Reproduction Example/SDK Setup
sentry client config js
import * as Sentry from '@sentry/nuxt';
Sentry.init({
// If set up, you can use your runtime config here
// dsn: useRuntimeConfig().public.sentry.dsn,
dsn: '{{thisiskey}}',
environment: useRuntimeConfig().public.appNodeEnv,
// We recommend adjusting this value in production, or using tracesSampler
// for finer control
tracesSampleRate: 1.0,
// 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: 1.0,
// If the entire session is not sampled, use the below sample rate to sample
// sessions when an error occurs.
replaysOnErrorSampleRate: 1.0,
// If you don't want to use Session Replay, just remove the line below:
integrations: [Sentry.replayIntegration()],
// Enable logs to be sent to Sentry
enableLogs: true,
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: true,
});
nuxt config
modules: [
'nuxt-icons',
'@gabortorma/nuxt-dayjs-i18n',
'@nuxtjs/i18n',
['dayjs-nuxt', { plugins: ['customParseFormat', 'isBetween'] }],
'@nuxtjs/tailwindcss',
'@pinia/nuxt',
'pinia-plugin-persistedstate/nuxt',
'@nuxtjs/robots',
'@sentry/nuxt/module',
],
sentry: {
sourceMapsUploadOptions: {
org: 'mukellef-l6',
project: 'robom-frontend',
url: 'https://sentry.ifmetrics.com/',
},
},
sourcemap: {
client: 'hidden',
},
i tried a lot of things but i. cant react the replay.
Steps to Reproduce
i just make axios errors. in log everything is correct. like user clicked this button etc. but i cant see the replay
Expected Result
i want to see the replay.
Actual Result
i cant see and replay event
Additional Context
Tip: React with 👍 to help prioritize this issue. Please use comments to provide useful context, avoiding +1
or me too
, to help us triage it.
Metadata
Metadata
Assignees
Labels
BugNuxtPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDKWaiting for: Product Owner
Projects
Status
Waiting for: Product Owner