sentry-and-otel-setup
Sentry and OpenTelemetry Setup
Overview
Configure comprehensive error tracking and performance monitoring using Sentry with OpenTelemetry (OTel) instrumentation for Next.js applications, including automatic error capture, distributed tracing, and custom logging.
Installation and Configuration
1. Install Sentry
Install Sentry Next.js SDK:
npm install @sentry/nextjs
Run Sentry wizard for automatic configuration:
npx @sentry/wizard@latest -i nextjs
This creates:
sentry.client.config.ts- Client-side configurationsentry.server.config.ts- Server-side configurationsentry.edge.config.ts- Edge runtime configurationinstrumentation.ts- OpenTelemetry setup- Updates
next.config.jswith Sentry webpack plugin
2. Configure Environment Variables
Add Sentry credentials to .env.local:
SENTRY_DSN=https://your-dsn@sentry.io/project-id
SENTRY_ORG=your-org
SENTRY_PROJECT=your-project
NEXT_PUBLIC_SENTRY_DSN=https://your-dsn@sentry.io/project-id
Get DSN from Sentry dashboard: Settings > Projects > [Your Project] > Client Keys (DSN)
For production, add these to deployment environment variables.
3. Update Sentry Configurations
Customize sentry.server.config.ts using the template from assets/sentry-server-config.ts:
- Set environment (development, staging, production)
- Configure sample rates for performance monitoring
- Enable tracing for Server Actions and API routes
- Set up error filtering and breadcrumbs
Customize sentry.client.config.ts using the template from assets/sentry-client-config.ts:
- Configure replay sessions for debugging
- Set error boundaries
- Enable performance monitoring for user interactions
4. Add Instrumentation Hook
Create or update instrumentation.ts in project root using the template from assets/instrumentation.ts. This:
- Initializes OpenTelemetry before app starts
- Registers Sentry as trace provider
- Enables distributed tracing across services
- Runs only once on server startup
Note: Requires experimental.instrumentationHook in next.config.js (added by Sentry wizard).
5. Create Logging Wrapper
Create lib/logger.ts using the template from assets/logger.ts. This provides:
- Structured logging with context
- Automatic Sentry integration
- Different log levels (debug, info, warn, error)
- Request context capture
Use instead of console.log for better debugging:
import { logger } from '@/lib/logger';
logger.info('User logged in', { userId: user.id });
logger.error('Failed to save data', { error, userId });
6. Add Error Boundary (Client Components)
Create components/error-boundary.tsx using the template from assets/error-boundary.tsx. This:
- Catches React errors in client components
- Sends errors to Sentry
- Shows fallback UI
- Provides error recovery
Use in layouts or pages:
import { ErrorBoundary } from '@/components/error-boundary';
export default function Layout({ children }) {
return (
<ErrorBoundary>
{children}
</ErrorBoundary>
);
}
7. Create Custom Error Page
Update app/error.tsx using the template from assets/error-page.tsx. This:
- Shows user-friendly error messages
- Captures errors in Server Components
- Provides retry functionality
- Sends errors to Sentry
8. Add Global Error Handler
Update app/global-error.tsx using the template from assets/global-error.tsx. This:
- Catches errors in root layout
- Last resort error boundary
- Required for catching layout errors
Tracing Server Actions
Manual Instrumentation
Wrap Server Actions with Sentry tracing:
'use server';
import { logger } from '@/lib/logger';
import * as Sentry from '@sentry/nextjs';
export async function createPost(formData: FormData) {
return await Sentry.startSpan(
{ name: 'createPost', op: 'server.action' },
async () => {
try {
const title = formData.get('title') as string;
logger.info('Creating post', { title });
// Your logic here
const post = await prisma.post.create({
data: { title, content: '...' },
});
logger.info('Post created', { postId: post.id });
return { success: true, post };
} catch (error) {
logger.error('Failed to create post', { error });
Sentry.captureException(error);
throw error;
}
}
);
}
Automatic Instrumentation
Sentry automatically instruments:
- Next.js API routes
- Server Components (partial)
- Fetch requests
- Database queries (with OTel)
Monitoring Patterns
1. Capture User Context
Associate errors with users:
import * as Sentry from '@sentry/nextjs';
import { getCurrentUser } from '@/lib/auth/utils';
export async function setUserContext() {
const user = await getCurrentUser();
if (user) {
Sentry.setUser({
id: user.id,
email: user.email,
});
}
}
Call in layouts or middleware to track user context globally.
2. Add Custom Tags
Tag errors for filtering:
Sentry.setTag('feature', 'worldbuilding');
Sentry.setTag('entity_type', 'character');
// Now errors are tagged and filterable in Sentry dashboard
3. Add Breadcrumbs
Track user actions leading to errors:
Sentry.addBreadcrumb({
category: 'user_action',
message: 'User clicked create entity',
level: 'info',
data: {
entityType: 'character',
worldId: 'world-123',
},
});
4. Performance Monitoring
Track custom operations:
import * as Sentry from '@sentry/nextjs';
export async function complexOperation() {
const transaction = Sentry.startTransaction({
name: 'Complex World Generation',
op: 'task',
});
// Step 1
const span1 = transaction.startChild({
op: 'generate.terrain',
description: 'Generate terrain data',
});
await generateTerrain();
span1.finish();
// Step 2
const span2 = transaction.startChild({
op: 'generate.biomes',
description: 'Generate biome data',
});
await generateBiomes();
span2.finish();
transaction.finish();
}
5. Database Query Tracing
Prisma automatically integrates with OTel:
// Queries are automatically traced if OTel is configured
const users = await prisma.user.findMany();
// Shows up in Sentry as a database span
Configuration Options
Sample Rates
Control how many events are sent to Sentry (avoid quota limits):
// sentry.server.config.ts
Sentry.init({
dsn: process.env.SENTRY_DSN,
// Percentage of errors to capture (1.0 = 100%)
sampleRate: 1.0,
// Percentage of transactions to trace
tracesSampleRate: process.env.NODE_ENV === 'production' ? 0.1 : 1.0,
// Percentage of sessions to replay
replaysSessionSampleRate: 0.1,
// Percentage of error sessions to replay
replaysOnErrorSampleRate: 1.0,
});
Environment Detection
Configure different settings per environment:
Sentry.init({
environment: process.env.NODE_ENV,
enabled: process.env.NODE_ENV !== 'development', // Disable in dev
beforeSend(event, hint) {
// Filter out specific errors
if (event.exception?.values?.[0]?.value?.includes('ResizeObserver')) {
return null; // Don't send to Sentry
}
return event;
},
});
Source Maps
Ensure source maps are uploaded for readable stack traces:
// next.config.js (added by Sentry wizard)
const { withSentryConfig } = require('@sentry/nextjs');
module.exports = withSentryConfig(
nextConfig,
{
silent: true,
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
},
{
hideSourceMaps: true,
widenClientFileUpload: true,
}
);
Best Practices
- Use logger wrapper: Centralize logging for consistency
- Set user context: Associate errors with users for debugging
- Add breadcrumbs: Track user journey before errors
- Monitor performance: Use tracing for slow operations
- Filter noise: Exclude known non-critical errors
- Configure sample rates: Balance visibility with quota
- Test in staging: Verify Sentry integration before production
- Review regularly: Check Sentry dashboard for patterns
Troubleshooting
Sentry not capturing errors: Check DSN is correct and Sentry is initialized. Verify instrumentation.ts exports register().
Source maps not working: Ensure auth token is set and source maps are uploaded during build. Check Sentry dashboard > Settings > Source Maps.
High quota usage: Reduce sample rates in production. Filter out noisy errors with beforeSend.
Traces not appearing: Verify tracesSampleRate > 0. Check OpenTelemetry is initialized in instrumentation.ts.
Client errors not captured: Ensure NEXT_PUBLIC_SENTRY_DSN is set and accessible from browser.
Resources
scripts/
No executable scripts needed for this skill.
references/
sentry-best-practices.md- Error handling patterns, performance monitoring strategies, and quota managementotel-integration.md- OpenTelemetry concepts, custom instrumentation, and distributed tracing setup
assets/
sentry-server-config.ts- Server-side Sentry configuration with tracing and samplingsentry-client-config.ts- Client-side Sentry configuration with replay and error boundariesinstrumentation.ts- OpenTelemetry initialization and Sentry integrationlogger.ts- Structured logging wrapper with Sentry integrationerror-boundary.tsx- React error boundary component for client-side error handlingerror-page.tsx- Custom error page for Server Component errorsglobal-error.tsx- Global error handler for root layout errors
More from hopeoverture/worldbuilding-app-skills
eslint-prettier-husky-config
This skill should be used when setting up code quality tooling with ESLint v9 flat config, Prettier formatting, Husky git hooks, lint-staged pre-commit checks, and GitHub Actions CI lint workflow. Apply when initializing linting, adding code formatting, configuring pre-commit hooks, setting up quality gates, or establishing lint CI checks for Next.js or React projects.
51testing-next-stack
Scaffolds comprehensive testing setup for Next.js applications including Vitest unit tests, React Testing Library component tests, and Playwright E2E flows with accessibility testing via axe-core. This skill should be used when setting up test infrastructure, generating test files, creating test utilities, adding accessibility checks, or configuring testing frameworks for Next.js projects. Trigger terms include setup testing, scaffold tests, vitest, RTL, playwright, e2e tests, component tests, unit tests, accessibility testing, a11y tests, axe-core, test configuration.
38markdown-editor-integrator
This skill should be used when installing and configuring markdown editor functionality using @uiw/react-md-editor. Applies when adding rich text editing, markdown support, WYSIWYG editors, content editing with preview, or text formatting features. Trigger terms include markdown editor, rich text editor, text editor, add markdown, install markdown editor, markdown component, WYSIWYG, content editor, text formatting, editor preview.
27form-generator-rhf-zod
This skill should be used when generating React forms with React Hook Form, Zod validation, and shadcn/ui components. Applies when creating entity forms, character editors, location forms, data entry forms, or any form requiring client and server validation. Trigger terms include create form, generate form, build form, React Hook Form, RHF, Zod validation, form component, entity form, character form, data entry, form schema.
23supabase-auth-ssr-setup
This skill should be used when configuring Supabase Auth for server-side rendering with Next.js App Router, including secure cookie handling, middleware protection, route guards, authentication utilities, and logout flow. Apply when setting up SSR auth, adding protected routes, implementing middleware authentication, configuring secure sessions, or building login/logout flows with Supabase.
18tailwind-shadcn-ui-setup
This skill should be used when setting up, configuring, or initializing Tailwind CSS (v3 or v4) and shadcn/ui for Next.js 16 App Router projects. Configure dark mode, design tokens, base layout with header/sidebar, accessibility defaults, and generate example components. Includes comprehensive setup automation, theme customization, and production-ready patterns. Use when the user requests "setup Tailwind", "configure shadcn/ui", "add dark mode", "initialize design system", or "setup UI framework" for Next.js projects.
17