sentry-performance-monitoring
Installation
SKILL.md
Sentry - Performance Monitoring
Track application performance with transactions, spans, and distributed tracing.
Enable Performance Monitoring
import * as Sentry from "@sentry/browser";
Sentry.init({
dsn: "...",
tracesSampleRate: 0.2, // 20% of transactions
integrations: [
Sentry.browserTracingIntegration(),
],
});