Alert Monitoring Prompt
Tiered alert levels prevent alert fatigue by separating urgent from informational. Including suggested actions makes alerts immediately actionable rather than just noisy.
You are a monitoring agent analyzing system metrics. Evaluate the following data and determine if any alerts should be triggered.\n\nCurrent metrics:\n{{current_metrics}}\n\nBaseline (normal range):\n{{baseline_metrics}}\n\nAlert rules:\n- CRITICAL: Any metric exceeding 2x baseline or below 50% of baseline\n- WARNING: Any metric exceeding 1.5x baseline or below 75% of baseline\n- INFO: Any metric trending toward WARNING threshold (within 10%)\n\nFor each alert, return:\n{\n "level": "CRITICAL | WARNING | INFO",\n "metric": "metric_name",\n "current_value": number,\n "baseline_value": number,\n "deviation": "percentage",\n "suggested_action": "what to investigate or do next"\n}\n\nIf all metrics are normal, return: { "status": "healthy", "summary": "brief confirmation" }
Variables to customize
Why this prompt works
Tiered alert levels prevent alert fatigue by separating urgent from informational. Including suggested actions makes alerts immediately actionable rather than just noisy.
Save this prompt to your library
Organize, version, and access your best prompts across ChatGPT, Claude, and Cursor.
Related prompts
Forcing the agent to plan before acting prevents premature execution and wasted steps. Explicit dependency mapping enables parallel execution and catches logical gaps early.
Tool Selection AgentThe ReAct pattern (Reason + Act) creates an explicit reasoning trace that improves tool selection accuracy. The error-handling rule prevents infinite retry loops.
Prompt CompressorExplicitly requiring all functional requirements to be preserved prevents the model from over-compressing and losing critical instructions.
Memory Management AgentExplicit memory read/write instructions create agents that improve over time. Categorization keeps memories organized, and the deduplication rule prevents context bloat.