بنقرة واحدة
deploy-monitoring
Health checks, metrics, alerting ve rollback stratejileri.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Health checks, metrics, alerting ve rollback stratejileri.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Guide for conducting comprehensive accessibility audits of code to identify WCAG compliance issues and barriers to inclusive design. This skill should be used when reviewing accessibility, ARIA implementation, keyboard navigation, or screen reader compatibility.
Transform clarified user requests into structured delegation prompts optimized for specialist agents (cto-architect, strategic-cto-mentor, cv-ml-architect). Use after clarification is complete, before routing to specialist agents. Ensures agents receive complete context for effective work.
AGENTS.md dosyaları oluşturma, monorepo yapılandırma ve agent instruction yönetimi rehberi.
p5.js ile generative art, flow fields ve interactive visuals oluşturma rehberi.
API tasarımı, GraphQL schema, OpenAPI spec, versioning. ⚠️ Tasarım aşaması için kullan. Uygulama/security için → backend-api.
ADR template, database selection, capacity planning ve scalability.
| name | deploy_monitoring |
| description | Health checks, metrics, alerting ve rollback stratejileri. |
Monitoring, alerting ve rollback stratejileri.
app.get('/health', (req, res) => {
res.json({ status: 'healthy', version: process.env.APP_VERSION });
});
app.get('/ready', async (req, res) => {
await db.$queryRaw`SELECT 1`;
res.json({ status: 'ready' });
});
const httpDuration = new Histogram({
name: 'http_request_duration_seconds',
help: 'Duration of HTTP requests',
labelNames: ['method', 'route', 'status'],
});
- alert: HighErrorRate
expr: rate(http_requests_total{status=~"5.."}[5m]) > 0.05
for: 5m
labels:
severity: critical
# Kubernetes
kubectl rollout undo deployment/app
# Vercel
vercel rollback
Kaynak: Google SRE Book - Monitoring & Prometheus Best Practices
/health (Liveness) ve /ready (Readiness) uç noktalarını tanımla.| Aşama | Doğrulama |
|---|---|
| 1 | Yeni bir servis eklendiğinde monitoring otomatik devreye giriyor mu? |
| 2 | Alertler "aksiyon alınabilir" (Actionable) bilgi içeriyor mu? |
| 3 | Loglarda PII (Kişisel veri) maskeleniyor mu? |
Deploy Monitoring v1.5 - With Workflow