error-tracking

Integrate Sentry v8 error tracking and performance monitoring across project services.

1|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/eykissvrino/project --skill error-tracking-eykissvrino
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: error-tracking
Source: https://github.com/eykissvrino/project/tree/main/_core/skills/error-tracking
Command: npx skills add https://github.com/eykissvrino/project --skill error-tracking-eykissvrino

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Ensures complete visibility of errors by enforcing Sentry v8 error tracking and performance monitoring across all project services, eliminating silent failures and ad-hoc logging.

Core Features & Use Cases

  • Unified error capture across controllers, routes, workflows, and cron jobs to guarantee no exceptions are missed.
  • Performance monitoring with tracing and spans for fast feedback on latency and database interactions.
  • Structured context with user, environment, and operation data to enable rapid debugging and incident response.

Quick Start

Initialize Sentry at startup and instrument new code paths to capture errors with context.

Frequently Asked Questions about error-tracking

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I capture all errors across my project services using Sentry v8?

Sentry v8 error tracking captures all exceptions across controllers, routes, workflows, and cron jobs. You initialize Sentry at startup and instrument new code paths to guarantee no silent failures or missed errors.

Can I monitor database performance and latency with Sentry tracing?

Sentry performance monitoring provides tracing and spans for fast feedback on latency and database interactions. You instrument code paths using patterns like DatabasePerformanceMonitor to track database performance bottlenecks.

What is the best way to add structured context to Sentry error tracking?

Structured context in Sentry error tracking adds user, environment, and operation data to captured exceptions. This enables rapid debugging and incident response by providing full visibility into the exact state when errors occur.

How do I instrument cron jobs for error tracking and performance monitoring?

Cron job instrumentation captures errors and monitors performance by applying Sentry v8 during execution. You initialize Sentry and use specific usage patterns to ensure cron workflows have comprehensive error visibility.

Does Sentry v8 work with controllers and workflows for unified error capture?

Sentry v8 works with controllers and workflows by applying patterns such as BaseController and WorkflowSentryHelper. This enforces unified error capture across all project services to eliminate ad-hoc logging.

Why do I need Sentry initialization at startup for error tracking?

Sentry initialization at startup is required for error tracking to establish proper context and usage patterns. Without it, code paths cannot capture errors with the necessary environment and user data for effective debugging.