بنقرة واحدة
monitoring-setup
Define metrics, dashboards, and alerts for a service.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Define metrics, dashboards, and alerts for a service.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
Review code changes and report issues by severity with actionable fixes.
Sharpen a fuzzy intention into one measurable objective string that drives the rest of the work.
Convert a Prompt Flow PRS pipeline submission to run a Microsoft Agent Framework workflow.
Build a Model Context Protocol (MCP) server that lets an LLM call into external tools and resources.
Summarize PDF documents into concise bullet-point digests.
Bump a dependency version across a pnpm workspace and update lockfile.
استنادا إلى تصنيف SOC المهني
| slug | monitoring-setup |
| name | Monitoring Setup |
| version | 0.1.0 |
| description | Define metrics, dashboards, and alerts for a service. |
| category | dev-tools |
| tags | ["monitoring","observability","metrics","alerts"] |
| inputs | [{"name":"service","type":"string","required":true,"description":"Service or component to monitor"},{"name":"slos","type":"string","required":false,"description":"SLOs or user-facing goals"}] |
| output | {"format":"markdown","description":"Monitoring plan with SLIs, dashboards, and alert rules."} |
| author | badhope |
| license | MIT |
| created | "2026-06-21T00:00:00.000Z" |
| updated | "2026-06-21T00:00:00.000Z" |
Launching a new service, revising on-call coverage, or refining alert fatigue.
Describe the service and any SLOs.
A monitoring plan with SLIs, dashboards, and alert rules.
Define monitoring for the given service.
Output:
1. SLIs: request latency, error rate, throughput, saturation
2. Dashboards: key panels and why they matter
3. Alerts: symptom-based vs cause-based, thresholds, runbook links
4. Log-based metrics: what to count or trace
5. On-call expectations: page vs ticket, escalation
Use generic metric names; avoid vendor query languages unless asked.
Input:
service: payment webhook processor
slos: '99.9% delivery within 30s, <0.1% error rate'
Output:
## SLIs
- `webhook_latency_p99` < 30s
- `webhook_error_rate` < 0.1%
- `webhook_queue_depth` for saturation
## Alerts
- PAGE: error rate > 0.5% for 5 minutes
- TICKET: p99 latency > 20s for 10 minutes
- PAGE: queue depth > 10k for 5 minutes
These are the bugs that bite every new user. Check them before shipping:
Alert fatigue from too many alerts: Too many alerts cause responders to ignore them.
Symptom vs cause confusion: Alerting on cause (database slow) instead of symptom (user-facing errors).
No runbook for alerts: Alert fires but no one knows what to do.
Static thresholds that drift: Thresholds set once become outdated as traffic patterns change.
Missing dependency monitoring: Service is healthy but its dependency is failing slowly.