sentry-tracing
Installation
SKILL.md
Setup Sentry Tracing
Configure Sentry's performance monitoring to track transactions and spans.
When to Use
- User asks to "enable tracing" or "add performance monitoring"
- User wants to track API response times, page loads, or latency
- User asks about
tracesSampleRateor custom spans
Quick Reference
| Platform | Enable | Custom Span |
|---|---|---|
| JS/Browser | tracesSampleRate + browserTracingIntegration() |
Sentry.startSpan() |
| Next.js | tracesSampleRate (auto-integrated) |
Sentry.startSpan() |
| Node.js | tracesSampleRate |
Sentry.startSpan() |
| Python | traces_sample_rate |
@sentry_sdk.trace or start_span() |
| Ruby | traces_sample_rate |
start_span() |