一键导入
observability
Guidelines for implementing structured logging, distributed tracing (OpenTelemetry), performance metrics, and centralized error telemetry.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for implementing structured logging, distributed tracing (OpenTelemetry), performance metrics, and centralized error telemetry.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Playbook for capturing design alignment from /grill-me, generating issue specifications, and managing task boards.
Playbook instructing agents how to dynamically formulate, design, bootstrap, and register new workspace skills when facing skill gaps.
Playbook for translating natural language requests about tasks, profiles, locking, and validation into CLI helper executions.
Playbook for writing safe database migrations, managing schema evolutions, executing reversible rollbacks, and avoiding table lock contention in enterprise environments.
Guidelines for CPU profiling, identifying database query bottlenecks (N+1 queries), diagnosing memory leaks, and optimizing resource execution speeds.
Guidelines for containerization (Dockerfile best practices), release versioning, blue-green deployment, feature flag rollouts, and post-deployment smoke verification.
| name | observability |
| description | Guidelines for implementing structured logging, distributed tracing (OpenTelemetry), performance metrics, and centralized error telemetry. |
This playbook establishes the enterprise-grade practices for implementing observability, structured logging, distributed tracing, and metrics tracking inside software projects.
Enterprise applications must emit logs in a machine-readable format to enable searchability and analysis in central log aggregators (e.g. ELK stack, Datadog).
DEBUG: Verbose diagnostics (disabled by default in production).INFO: Normal operational events (e.g. request started, job completed).WARN: Unexpected but non-fatal conditions (e.g. slow response, cache miss).ERROR: Runtime errors needing immediate investigation (includes stack trace).FATAL: Critical system failure causing application shutdown.Every log line must include:
timestamp: UTC ISO-8601 format (YYYY-MM-DDTHH:mm:ss.sssZ).level: Log severity.message: Descriptive human-readable message.correlation_id: Unique request or transaction identifier.module: File or package namespace.Distributed tracing allows developers to track requests as they flow across multiple servers, databases, and microservices.
traceparent) into all outgoing external HTTP requests, gRPC calls, or message queue tasks.Use standard application metrics to measure service health, performance, and saturation.
Track:
Track:
Graceful error capturing prevents silent failures and helps maintain system stability.
user_id, tenant_id, environment) to error reports to accelerate troubleshooting.