100,000+ Growing Teams Use Sentry to Find Problems Fast
Pinpoint the specific operations that may be causing issues by searching for traces matching criteria like a route, API endpoint, or user ID—or get a quick overview of how your application is performing.
Catch software issues early in the development process, preventing them from escalating into more complex and time-consuming problems.
We support every technology (except the ones we don't).
Get started with just a few lines of code.
Just run this commmand to sign up for and install Sentry.
npx @sentry/wizard@latest -i nextjs
Enable Sentry Tracing by adding the below code.
import * as Sentry from '@sentry/nextjs'; Sentry.init({ dsn: 'https://[email protected]/0', / We recommend adjusting this value in production, or using tracesSampler / for finer control tracesSampleRate: 1.0, });
That's it. Check out our documentation to ensure you have the latest instructions.