Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

sentry-and-otel-setup哨兵和酒店设置

Agent Skill

sentry-and-otel-setup 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

318

周安装

13

GitHub Stars

3

下载量

102
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:sentry-and-otel-setup(哨兵和酒店设置)
来源仓库:https://github.com/hopeoverture/worldbuilding-app-skills
仓库路径:skills/sentry-and-otel-setup
安装命令:
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill sentry-and-otel-setup
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hopeoverture/worldbuilding-app-skills --skill sentry-and-otel-setup

简介

用于查找、检索和筛选相关信息,支持基于关键词的任务匹配。

  • 适合在需要快速定位候选结果时使用,提升研究效率。sentry-and-otel-setup 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 可结合来源仓库和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网操作。
  • 注意工具输出不能直接作为最终结论,需人工复核关键信息。

SKILL.md

Sentry and OpenTelemetry Setup

Overview

Configure comprehensive error tracking and performance monitoring using Sentry with OpenTelemetry (OTel) instrumentation for Next.js applications, including automatic error capture, distributed tracing, and custom logging.

Installation and Configuration

1. Install Sentry

Install Sentry Next.js SDK:

npm install @sentry/nextjs

Run Sentry wizard for automatic configuration:

npx @sentry/wizard@latest -i nextjs

This creates:

  • sentry.client.config.ts - Client-side configuration
  • sentry.server.config.ts - Server-side configuration
  • sentry.edge.config.ts - Edge runtime configuration
  • instrumentation.ts - OpenTelemetry setup
  • Updates next.config.js with Sentry webpack plugin

2. Configure Environment Variables

Add Sentry credentials to .env.local:

SENTRY_DSN=https://your-dsn@sentry.io/project-id
SENTRY_ORG=your-org
SENTRY_PROJECT=your-project
NEXT_PUBLIC_SENTRY_DSN=https://your-dsn@sentry.io/project-id

Get DSN from Sentry dashboard: Settings > Projects > [Your Project] > Client Keys (DSN)

For production, add these to deployment environment variables.

3. Update Sentry Configurations

Customize sentry.server.config.ts using the template from assets/sentry-server-config.ts:

  • Set environment (development, staging, production)
  • Configure sample rates for performance monitoring
  • Enable tracing for Server Actions and API routes
  • Set up error filtering and breadcrumbs

Customize sentry.client.config.ts using the template from assets/sentry-client-config.ts:

  • Configure replay sessions for debugging
  • Set error boundaries
  • Enable performance monitoring for user interactions

4. Add Instrumentation Hook

Create or update instrumentation.ts in project root using the template from assets/instrumentation.ts. This:

  • Initializes OpenTelemetry before app starts
  • Registers Sentry as trace provider
  • Enables distributed tracing across services
  • Runs only once on server startup

Note: Requires experimental.instrumentationHook in next.config.js (added by Sentry wizard).

5. Create Logging Wrapper

Create lib/logger.ts using the template from assets/logger.ts. This provides:

  • Structured logging with context
  • Automatic Sentry integration
  • Different log levels (debug, info, warn, error)
  • Request context capture

Use instead of console.log for better debugging:

import { logger } from '@/lib/logger';

logger.info('User logged in', { userId: user.id });
logger.error('Failed to save data', { error, userId });

6. Add Error Boundary (Client Components)

Create components/error-boundary.tsx using the template from assets/error-boundary.tsx. This:

  • Catches React errors in client components
  • Sends errors to Sentry
  • Shows fallback UI
  • Provides error recovery

Use in layouts or pages:

import { ErrorBoundary } from '@/components/error-boundary';

export default function Layout({ children }) {
  return (
    <ErrorBoundary>
      {children}
    </ErrorBoundary>
  );
}

7. Create Custom Error Page

Update app/error.tsx using the template from assets/error-page.tsx. This:

  • Shows user-friendly error messages
  • Captures errors in Server Components
  • Provides retry functionality
  • Sends errors to Sentry

8. Add Global Error Handler

Update app/global-error.tsx using the template from assets/global-error.tsx. This:

  • Catches errors in root layout
  • Last resort error boundary
  • Required for catching layout errors

Tracing Server Actions

Manual Instrumentation

Wrap Server Actions with Sentry tracing:

'use server';

import { logger } from '@/lib/logger';
import * as Sentry from '@sentry/nextjs';

export async function createPost(formData: FormData) {
  return await Sentry.startSpan(
    { name: 'createPost', op: 'server.action' },
    async () => {
      try {
        const title = formData.get('title') as string;

        logger.info('Creating post', { title });

        // Your logic here
        const post = await prisma.post.create({
          data: { title, content: '...' },
        });

        logger.info('Post created', { postId: post.id });
        return { success: true, post };

      } catch (error) {
        logger.error('Failed to create post', { error });
        Sentry.captureException(error);
        throw error;
      }
    }
  );
}

Automatic Instrumentation

Sentry automatically instruments:

  • Next.js API routes
  • Server Components (partial)
  • Fetch requests
  • Database queries (with OTel)

Monitoring Patterns

1. Capture User Context

Associate errors with users:

import * as Sentry from '@sentry/nextjs';
import { getCurrentUser } from '@/lib/auth/utils';

export async function setUserContext() {
  const user = await getCurrentUser();

  if (user) {
    Sentry.setUser({
      id: user.id,
      email: user.email,
    });
  }
}

Call in layouts or middleware to track user context globally.

2. Add Custom Tags

Tag errors for filtering:

Sentry.setTag('feature', 'worldbuilding');
Sentry.setTag('entity_type', 'character');

// Now errors are tagged and filterable in Sentry dashboard

3. Add Breadcrumbs

Track user actions leading to errors:

Sentry.addBreadcrumb({
  category: 'user_action',
  message: 'User clicked create entity',
  level: 'info',
  data: {
    entityType: 'character',
    worldId: 'world-123',
  },
});

4. Performance Monitoring

Track custom operations:

import * as Sentry from '@sentry/nextjs';

export async function complexOperation() {
  const transaction = Sentry.startTransaction({
    name: 'Complex World Generation',
    op: 'task',
  });

  // Step 1
  const span1 = transaction.startChild({
    op: 'generate.terrain',
    description: 'Generate terrain data',
  });
  await generateTerrain();
  span1.finish();

  // Step 2
  const span2 = transaction.startChild({
    op: 'generate.biomes',
    description: 'Generate biome data',
  });
  await generateBiomes();
  span2.finish();

  transaction.finish();
}

5. Database Query Tracing

Prisma automatically integrates with OTel:

// Queries are automatically traced if OTel is configured
const users = await prisma.user.findMany();
// Shows up in Sentry as a database span

Configuration Options

Sample Rates

Control how many events are sent to Sentry (avoid quota limits):

// sentry.server.config.ts
Sentry.init({
  dsn: process.env.SENTRY_DSN,

  // Percentage of errors to capture (1.0 = 100%)
  sampleRate: 1.0,

  // Percentage of transactions to trace
  tracesSampleRate: process.env.NODE_ENV === 'production' ? 0.1 : 1.0,

  // Percentage of sessions to replay
  replaysSessionSampleRate: 0.1,

  // Percentage of error sessions to replay
  replaysOnErrorSampleRate: 1.0,
});

Environment Detection

Configure different settings per environment:

Sentry.init({
  environment: process.env.NODE_ENV,
  enabled: process.env.NODE_ENV !== 'development', // Disable in dev

  beforeSend(event, hint) {
    // Filter out specific errors
    if (event.exception?.values?.[0]?.value?.includes('ResizeObserver')) {
      return null; // Don't send to Sentry
    }
    return event;
  },
});

Source Maps

Ensure source maps are uploaded for readable stack traces:

// next.config.js (added by Sentry wizard)
const { withSentryConfig } = require('@sentry/nextjs');

module.exports = withSentryConfig(
  nextConfig,
  {
    silent: true,
    org: process.env.SENTRY_ORG,
    project: process.env.SENTRY_PROJECT,
  },
  {
    hideSourceMaps: true,
    widenClientFileUpload: true,
  }
);

Best Practices

  1. Use logger wrapper: Centralize logging for consistency
  2. Set user context: Associate errors with users for debugging
  3. Add breadcrumbs: Track user journey before errors
  4. Monitor performance: Use tracing for slow operations
  5. Filter noise: Exclude known non-critical errors
  6. Configure sample rates: Balance visibility with quota
  7. Test in staging: Verify Sentry integration before production
  8. Review regularly: Check Sentry dashboard for patterns

Troubleshooting

Sentry not capturing errors: Check DSN is correct and Sentry is initialized. Verify instrumentation.ts exports register().

Source maps not working: Ensure auth token is set and source maps are uploaded during build. Check Sentry dashboard > Settings > Source Maps.

High quota usage: Reduce sample rates in production. Filter out noisy errors with beforeSend.

Traces not appearing: Verify tracesSampleRate > 0. Check OpenTelemetry is initialized in instrumentation.ts.

Client errors not captured: Ensure NEXT_PUBLIC_SENTRY_DSN is set and accessible from browser.

Resources

scripts/

No executable scripts needed for this skill.

references/

  • sentry-best-practices.md - Error handling patterns, performance monitoring strategies, and quota management
  • otel-integration.md - OpenTelemetry concepts, custom instrumentation, and distributed tracing setup

assets/

  • sentry-server-config.ts - Server-side Sentry configuration with tracing and sampling
  • sentry-client-config.ts - Client-side Sentry configuration with replay and error boundaries
  • instrumentation.ts - OpenTelemetry initialization and Sentry integration
  • logger.ts - Structured logging wrapper with Sentry integration
  • error-boundary.tsx - React error boundary component for client-side error handling
  • error-page.tsx - Custom error page for Server Component errors
  • global-error.tsx - Global error handler for root layout errors

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.08%
按下载量换算37

Claude

31.88%
按下载量换算33

Cursor

17.76%
按下载量换算18

Gemini CLI

9.72%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills