Skip to content

Migrate from Sentry SaaS

ɳSentry offers the same observability capabilities as Sentry — uptime monitoring, error tracking, incident management — but self-hosted on your infrastructure.

AspectSentry CloudɳSentry Self-Hosted
PricingPer-event billingFixed monthly ($0.99/mo bundle)
Data residencySentry serversYour infrastructure
Vendor lock-inExport limitedFull data ownership
ComplianceStandard SLAsCustomizable, HIPAA-ready
ExtensibilityLimitedUnlimited (Go plugins)

Keep Sentry running while ɳSentry stabilizes.

  1. Install ɳSentry bundle
  2. Configure SDKs to send to both endpoints (Sentry + ɳSentry)
  3. Verify data flow into ɳSentry dashboard
  4. Monitor parity across error counts + alert accuracy

Shift SDKs to ɳSentry.

// Before: Sentry only
Sentry.init({ dsn: "https://key@sentry.io/..." });
// After: ɳSentry only
Sentry.init({ dsn: "https://key@sentry.yourdomain.com/..." });

Update all app SDKs:

  • Web (JavaScript/TypeScript)
  • iOS (Swift)
  • Android (Kotlin)
  • Backend (Go, Python, etc.)
  1. Verify all errors flowing to ɳSentry
  2. Test alerting (Slack, email, PagerDuty integration)
  3. Confirm incident workflows
  4. Check SLO calculations
  1. Archive old Sentry projects
  2. Cancel Sentry subscription
  3. Document runbooks for ɳSentry
  4. Train team on status page + incident management

Before canceling, export your history:

Terminal window
# Export error events (requires Sentry API key)
curl -H "Authorization: Bearer YOUR_SENTRY_TOKEN" \
https://sentry.io/api/0/organizations/YOUR_ORG/events/export/ \
> sentry-export.json
# Import into ɳSentry via bulk API
curl -X POST https://sentry.yourdomain.com/api/errors/import \
-H "Authorization: Bearer NSENTRY_TOKEN" \
-d @sentry-export.json

Sentry Cloud:

  • $29/mo (base) + $0.50–$2.00 per 1M events

ɳSentry Self-Hosted:

  • $0.99/mo (bundle) + infrastructure cost (~$20–50/mo on Hetzner CX23)
  • Total: ~$20–51/mo (vs Sentry’s $100+/mo for typical usage)
  • Documentation: https://docs.nself.org/nsentry
  • Issues: GitHub nself-org/cli (tag nsentry)
  • Chat: chat.nself.org (ɳChat app, included in ɳSelf+ bundle)

See also: Architecture · Plugins · API