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

production-troubleshootingproduction troubleshooting 搜索

Agent Skill

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

总安装

1,440

周安装

60

GitHub Stars

3

下载量

480
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:production-troubleshooting(production troubleshooting 搜索)
来源仓库:https://github.com/blogic-cz/blogic-marketplace
仓库路径:skills/production-troubleshooting
安装命令:
npx skills add https://github.com/blogic-cz/blogic-marketplace --skill production-troubleshooting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/blogic-cz/blogic-marketplace --skill production-troubleshooting

简介

production-troubleshooting 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于需要快速获取特定信息或筛选结果的场景。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Production Troubleshooting

Overview

Diagnose performance issues and errors in production/test environments using systematic investigation workflows with Sentry, kubectl, and Helm configuration analysis.

Prerequisites

Verify access to Sentry and Kubernetes tooling before troubleshooting.

  • Prefer k8s-tool when available for environment-aware commands.
  • Fall back to raw kubectl commands when k8s-tool is not installed or not configured in the current environment.
  • Confirm namespace and target environment (test or prod) before running commands.

When to Use This Skill

Apply this skill when:

  • Investigating incidents in test/production (not localhost)
  • Troubleshooting slow endpoints, slow queries, or elevated latency
  • Debugging pod crashes, restart loops, OOMKilled, or potential throttling
  • Analyzing Sentry traces for failures or degraded transactions
  • Validating Kubernetes resource limits and related Helm values

Investigation Workflow

Follow this symptom-driven workflow and confirm evidence before making changes.

Step 1: Triage by Primary Symptom

Choose the first investigation path based on the reported symptom.

  • For pod crash/restart symptoms (CrashLoopBackOff, OOMKilled, frequent restarts): check pod status and logs first.
  • For latency/slow endpoint symptoms: inspect traces first, then correlate with logs and pod state.

Step 2A: Inspect Pod Status and Logs (Crash/Restart Path)

Check pod health state before trace analysis when the incident is pod-centric.

Using k8s-tool (preferred):

k8s-tool describe --resource pod --name <pod-name> --env <env>
k8s-tool logs --pod <pod-name> --env <env> --tail 200

Fallback using kubectl:

kubectl describe pod <pod-name> -n <namespace>
kubectl logs <pod-name> -n <namespace> --tail 200

Look for restart reasons, termination messages, probe failures, and repeated startup errors.

Step 2B: Inspect Sentry Traces (Latency/Error Path)

Use Sentry to identify slow database calls, external latency, and transaction-level failures.

Using Sentry MCP:

  • Search for traces related to the reported issue
  • Look for slow database queries (for this project, >500ms is a useful baseline heuristic, not a universal threshold)
  • Check external API call latency
  • Identify error patterns and stack traces

What to look for:

  • Database query times exceeding expected baseline (commonly ~500ms in this project)
  • External API calls with high latency
  • Repeated error patterns
  • Performance degradation trends

Step 3: Review Application Logs

Examine kubectl logs for timing information and error patterns.

Using k8s-tool:

k8s-tool logs --pod <pod-name> --env <env> --tail 200

Key log patterns to search for:

  • [Server] - Server startup and initialization timing
  • [SSR] - Server-side rendering timing
  • [tRPC] - TRPC query execution timing
  • [DB Pool] - Database connection pool status
  • ERROR or WARN - Application errors and warnings

Common issues:

  • Sequential API calls instead of parallel (Promise.all)
  • Long DB connection acquisition times
  • Slow SSR rendering

Step 4: Check Pod Resource Usage

Verify CPU and memory usage to detect throttling.

Using k8s-tool:

k8s-tool top --env <env>

Warning signs:

  • CPU usage >70% may indicate potential throttling
  • Memory usage >80% may indicate elevated OOM risk
  • Consistent high utilization suggests under-provisioning

Step 5: Review Pod Configuration

Check resource limits and Helm values to identify misconfigurations.

Using kubectl:

kubectl get pod <pod-name> -n <namespace> -o yaml

Key sections to check:

  • resources.limits.cpu and resources.limits.memory
  • resources.requests.cpu and resources.requests.memory
  • Environment variables configuration
  • Image version and tags

Helm values locations:

  • web-app: /kubernetes/helm/web-app/values.{test,prod}.yaml

Reference references/helm-values-locations.md for detailed Helm configuration structure.

Step 6: Confirm Evidence Before Changing Configuration

Confirm that proposed fixes map to observed evidence before editing Helm values or code.

  • Link each change to concrete evidence from traces, logs, pod events, or resource metrics.
  • Prefer the smallest reversible change first.
  • Re-check traces/logs after deployment to verify impact.

Common Causes & Solutions

CPU/Memory Throttling

  • Symptom: Sustained high CPU/memory usage with degraded response times or restarts
  • Confirm with evidence: Correlate resource metrics with throttling signals, restart events, and latency spikes
  • Solution: Adjust resource requests/limits in Helm values only after confirmation

Network Latency

  • Symptom: Slow external API calls, DNS resolution delays
  • Confirm with evidence: Validate slow spans and timed log entries for network-bound operations
  • Solution: Check network policies, verify DNS configuration, and tune retry behavior where appropriate

Database Connection Pool Issues

  • Symptom: [DB Pool] errors, slow connection acquisition
  • Confirm with evidence: Match pool warnings with trace timing and connection wait patterns
  • Solution: Review idleTimeoutMillis and pool size configuration

Sequential API Calls

  • Symptom: Multiple API calls taking cumulative time
  • Confirm with evidence: Verify sequential span ordering in traces or timestamped log sequence
  • Solution: Refactor to use Promise.all() for parallel execution

Resources

kubectl commands

Use these common operations with k8s-tool when available, or run equivalent raw kubectl commands as fallback:

  • k8s-tool logs --pod <pod> --env <env> --tail 200 - Extract and filter pod logs
  • k8s-tool top --env <env> - Show CPU/memory usage for pods
  • k8s-tool describe --resource pod --name <pod> --env <env> - Check resource limits and pod configuration
  • k8s-tool kubectl --env <env> --cmd "get pods" - Raw kubectl for anything else

references/

  • helm-values-locations.md - Detailed guide to Helm values file structure and locations
  • common-issues.md - Catalog of common production issues and solutions

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.42%
按下载量换算180

Claude

30.98%
按下载量换算149

Cursor

18.46%
按下载量换算89

Gemini CLI

10.21%
按下载量换算49

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills