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(),
  ],
});

Transactions

Installs
18
GitHub Stars
166
First Seen
Jan 22, 2026
sentry-performance-monitoring — thebushidocollective/han