sentry-deploy-integration

Featured

Track deployments and release health in Sentry. Use when configuring deployment tracking, release health monitoring, or connecting CI/CD deploys to error data in Sentry. Trigger with phrases like "sentry deploy tracking", "sentry release health", "track deployments sentry", "sentry deployment notification", "sentry suspect commits", "compare sentry releases".

DevOps & Infrastructure 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Sentry Deploy Integration ## Overview Wire Sentry into your deploy pipeline so every release is tracked end-to-end: commit association, source map upload, deploy recording, and post-deploy health monitoring. Sentry links errors to the exact deploy and suspect commit that introduced them, giving you crash-free session rates, adoption curves, and regression alerts per release. ## Prerequisites - Sentry CLI installed (`npm i -g @sentry/cli` or `curl -sL https://sentry.io/get-cli/ | bash`) - `SENTRY_AUTH_TOKEN` with `project:releases` and `org:read` scopes - `SENTRY_ORG` and `SENTRY_PROJECT` environment variables set - `@sentry/node` v8+ installed in your application - Source control integration enabled in Sentry (Settings > Integrations > GitHub/GitLab) ## Instructions ### Step 1 --- Record Deploys with sentry-cli Create a release, associate commits for suspect-commit linking, and record the deployment with timing metadata. ```bash #!/bin/bash # scripts/sentry-deploy.sh set -euo pipefail VERSION="${1:-$(sentry-cli releases propose-version)}" ENVIRONMENT="${2:-production}" DEPLOY_START=$(date +%s) # Create release and associate commits (enables suspect commits) sentry-cli releases new "$VERSION" sentry-cli releases set-commits "$VERSION" --auto # Upload source maps for readable stack traces sentry-cli sourcemaps upload \ --release="$VERSION" \ --url-prefix="~/static/js" \ --validate \ ./dist # Finalize marks the release as ready sentry-cli releases finalize ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

sentry-ci-integration

Integrate Sentry into CI/CD pipelines for automated release creation, source map uploads, and deploy notifications. Use when setting up GitHub Actions, GitLab CI, or CircleCI to automate Sentry releases, upload source maps, or associate commits with deploys. Trigger with phrases like "sentry github actions", "sentry CI pipeline", "automate sentry releases", "sentry source map upload CI", "sentry gitlab ci", "sentry circleci".

2,266 Updated today
jeremylongshore
AI & Automation Featured

sentry-prod-checklist

Production deployment checklist for Sentry integration. Use when preparing a production deployment, auditing an existing Sentry setup, or running a go-live readiness review. Trigger: "sentry production checklist", "deploy sentry", "sentry go-live", "audit sentry config", "production readiness sentry".

2,266 Updated today
jeremylongshore
AI & Automation Featured

sentry-observability

Integrate Sentry with your observability stack — logging, metrics, APM, and dashboards. Use when connecting Sentry to winston/pino/structlog, correlating errors with business metrics, deciding between Sentry performance and Datadog/New Relic, building Sentry Discover dashboards, or linking events to external tools via extra context. Trigger: "sentry observability", "sentry logging", "sentry metrics", "sentry grafana", "sentry datadog correlation", "sentry discover dashboard".

2,266 Updated today
jeremylongshore
AI & Automation Featured

sentry-migration-deep-dive

Migrate to Sentry from other error tracking tools like Rollbar, Bugsnag, or New Relic. Use when replacing an existing error tracker with Sentry, running tools in parallel during a transition, or mapping API calls between providers. Trigger with phrases like "migrate to sentry", "switch from rollbar to sentry", "replace bugsnag with sentry", "sentry migration plan".

2,266 Updated today
jeremylongshore
API & Backend Listed

sentry-triage

Query Sentry for production errors, filter by severity/frequency, deduplicate against existing GitHub issues, and create actionable issues for the ship-loop. Invoke with /sentry-triage.

0 Updated today
mattbutlerengineering