sentry
Original:🇺🇸 English
Translated
Sentry error monitoring and performance tracing patterns for Next.js applications.
7installs
Sourcebrianlovin/claude-config
Added on
NPX Install
npx skill4agent add brianlovin/claude-config sentryTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Sentry Integration
Guidelines for using Sentry for error monitoring and performance tracing.
Exception Catching
Use in try/catch blocks:
Sentry.captureException(error)javascript
try {
await riskyOperation();
} catch (error) {
Sentry.captureException(error);
throw error;
}Performance Tracing
Create spans for meaningful actions like button clicks, API calls, and function calls.
UI Actions
javascript
function handleClick() {
Sentry.startSpan(
{ op: "ui.click", name: "Submit Form" },
(span) => {
span.setAttribute("formId", formId);
submitForm();
}
);
}API Calls
javascript
async function fetchData(id) {
return Sentry.startSpan(
{ op: "http.client", name: `GET /api/items/${id}` },
async () => {
const response = await fetch(`/api/items/${id}`);
return response.json();
}
);
}Configuration (Next.js)
Sentry initialization files:
- - Client-side
sentry.client.config.ts - - Server-side
sentry.server.config.ts - - Edge runtime
sentry.edge.config.ts
Import with - no need to initialize in other files.
import * as Sentry from "@sentry/nextjs"Basic Setup
javascript
import * as Sentry from "@sentry/nextjs";
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
enableLogs: true,
});With Console Logging
javascript
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
integrations: [
Sentry.consoleLoggingIntegration({ levels: ["log", "warn", "error"] }),
],
});Structured Logging
Use for template literals with variables:
logger.fmtjavascript
const { logger } = Sentry;
logger.trace("Starting connection", { database: "users" });
logger.debug(logger.fmt`Cache miss for: ${userId}`);
logger.info("Updated profile", { profileId: 345 });
logger.warn("Rate limit reached", { endpoint: "/api/data" });
logger.error("Payment failed", { orderId: "order_123" });
logger.fatal("Connection pool exhausted", { activeConnections: 100 });