Skip to main content
AlertingSre promptsAi promptsDevops

An Alert Tuning Prompt That Kills the 3 a.m. Noise

Audit noisy alert rules with one reusable alert tuning prompt that returns a keep, tune, or delete verdict per rule with reasons. Stop the 3 a.m. pages that mean nothing.

PPromptsCart Team·August 24, 2026·Updated August 24, 2026·7 min read

Every on-call engineer has muted a channel at 2 a.m. and then missed the one page that mattered. That's alert fatigue, and it's not a discipline problem. It's a tuning problem. The fix is boring and repeatable: audit the rules, find the ones that never lead to action, and cut or reshape them. An alert tuning prompt makes that audit something you run in an afternoon instead of dread once a quarter.

The prompt that works takes your alert rules and their firing history, then returns a verdict for each one: keep, tune, or delete, with a reason you can argue with. Not advice. Verdicts. That structure is what the best-practice blogs never give you.

What an alert tuning prompt produces

An alert tuning prompt is a reusable AI prompt that ingests a list of alert rules plus how often each fired and how often the firing was actionable, then emits a per-rule keep/tune/delete verdict with reasoning. The locked output is a table you act on, not prose you nod along to.

The advice is everywhere; the tooling isn't. Better Stack's alert-fatigue guide lays out evaluation windows, group_by deduplication, and inhibition clearly, but it's prose you apply by hand. The Sherlocks on-call playbook gives sharp numbers, delete anything unused for 90 days, aim for 30 to 50% of alerts requiring human action, under five actionable pages per engineer weekly, but no prompt to apply them at scale. You're left auditing rules in a spreadsheet.

What you can do with this prompt

  • Run a full alert-rule audit and get a keep/tune/delete verdict for every rule.
  • Flag rules that haven't fired actionably in 90 days for deletion.
  • Convert static-threshold alerts into SLO burn-rate alerts where it makes sense.
  • Recommend evaluation windows and grouping to collapse duplicate pages.
  • Produce a before/after page-volume estimate so you can justify the cuts.

Anatomy of the prompt pack

Variables
  {{alert_rules}}      – rule name, condition, current threshold
  {{fire_history}}     – per rule: times fired + times actionable (90d)
  {{slo_targets}}      – relevant SLOs, so alerts can tie to burn rate
  {{paging_policy}}    – what severity pages a human vs logs only
  {{protected_rules}}  – rules to keep regardless (safety/compliance)

Prompt
  Role: SRE auditing alert rules to cut noise without cutting signal.
  Task: classify each rule, recommend a change, estimate noise reduction.
  Output contract (locked):
    1. Per-rule verdict – KEEP / TUNE / DELETE + one-line reason
    2. Tuning detail     – for TUNE: new threshold, window, or grouping
    3. Burn-rate moves   – which static rules to convert to SLO-based
    4. Protected         – rules left untouched and why
    5. Estimated impact  – projected page-volume change

The fire_history variable is the whole game. Without "fired 40 times, actionable 2 times" per rule, the model is guessing which alerts are noise. With it, the 90-day rule and the actionability target turn into a defensible verdict.

Tuning hits a floor, and that's fine

Cutting the noisiest 30% of rules buys a quiet quarter. Cutting the next 30% starts creating gaps where a real failure has no alert. A good tuning prompt should say so: instruct it to stop recommending deletes once a rule's actionability rate clears a threshold you set, rather than racing to zero alerts. The goal is signal, not silence. An empty pager usually means broken alerting, not a healthy system.

How models behave on an alert audit

Claude is the most disciplined at producing one verdict per rule and not collapsing similar rules into a summary, which matters when you have eighty rules and need eighty decisions. GPT-4o reasons well about which static thresholds should become burn-rate alerts but tends to soften "DELETE" into "consider deleting" unless you instruct it to commit to a verdict. Gemini is quickest at spotting duplicate rules that should be grouped but needs the actionability target stated as a number, not a description.

JobClaudeChatGPT (GPT-4o)Gemini
One firm verdict per ruleStrongNeeds "commit to a verdict"Good
Static -> burn-rate conversionGoodStrongModerate
Spotting duplicate/groupable rulesGoodGoodStrong
Respecting protected rulesReliableReliableNeeds it restated

Feed all three the same fire_history and the verdicts converge. Feed them vibes and they diverge wildly. The data is the difference.

Prompt-craft patterns

Pattern 1 — verdict, then reason. Force a decision before the explanation so you can skim the table.

For each rule output exactly one of KEEP, TUNE, or DELETE on the
first line, then one sentence of reasoning. Do not hedge the verdict.

Pattern 2 — the 90-day rule as a hard input. Make the actionability threshold explicit.

Recommend DELETE for any rule in {{fire_history}} that fired but
required human action 0 times in 90 days, unless it appears in
{{protected_rules}}.

Pattern 3 — burn-rate over static thresholds. Tie noise to the SLO, not the metric.

Where {{slo_targets}} exists, prefer converting a static-threshold
rule to a fast-burn + slow-burn alert on the error budget. Show the
two thresholds.

The stance worth holding: most "on-call is broken" complaints are alerting failures wearing a roster costume. Fix the alerts and the rotation stops feeling brutal. Adding engineers to a noisy rotation just spreads the misery; tuning the rules removes it.

Variables you'll set

VariableRequiredWhat it is
{{alert_rules}}YesRule name, condition, current threshold
{{fire_history}}YesFired count + actionable count per rule (90d)
{{slo_targets}}RecommendedSLOs to tie burn-rate alerts to
{{paging_policy}}YesWhat pages a human vs logs only
{{protected_rules}}RecommendedRules to keep no matter what

Getting started

  1. Export your alert rules and pull 90 days of firing + actionability data.
  2. Mark any safety or compliance rules as {{protected_rules}}.
  3. Run the prompt on Claude for one clean verdict per rule.
  4. Apply the easy DELETEs first, then the TUNE changes, then burn-rate conversions.
  5. Watch page volume for two weeks against the estimated impact.
  6. Re-run quarterly; noise creeps back as services change.

The tuning thresholds you set here come straight from your SLOs, which is why this pairs with the SLO definition prompt for computing the burn rates your alerts should fire on. And the rules you keep need somewhere to point, which is the runbook authoring prompt, because an alert with no runbook is just a notification.

Every kept alert needs a runbook

The Sherlocks playbook's sharpest rule: every alert that survives the audit should link to a runbook step. An alert that pages a human with no documented action is fatigue by design. Tune the rules, then make sure each survivor has a diagnostic path attached.

Browse the on-call prompt packs

In the catalog, the Engineering On-Call Coordination Agent Pack covers triage and paging, and the Observability Instrumentation Harness generates the alert stubs you'll be tuning in the first place.

Skip the setup

The Engineering On-Call Coordination Agent Pack ships an Alert Assessment prompt that classifies incoming alerts by severity and actionability, the exact signal this tuning pass needs, plus responder coordination and status communication in the same pack. It's part of The Complete AI Prompts Bundle, a one-time lifetime license to the whole catalog and every future pack, which earns its keep across a real on-call program.

Get the Engineering On-Call Coordination Agent Pack

Cut the noise, keep the signal, and link every survivor to a runbook. Quiet pagers aren't the goal. Trustworthy ones are.

FAQ

Common questions

What is an alert tuning prompt?
An alert tuning prompt is a reusable AI prompt that takes your list of alert rules plus how often each fired and how often it was actionable, then returns a keep, tune, or delete verdict per rule with a reason. It turns an alert audit from a quarterly meeting into a single structured pass you can rerun whenever the noise creeps back.
How do you reduce alert fatigue?
Delete alerts that haven't required human action in 90 days, tie alerts to SLO burn rate instead of raw thresholds, add evaluation windows so transient blips don't page, and group related alerts. A tuning prompt applies all four rules to your rule list at once and shows its reasoning per rule so you can trust the verdict.
Can AI decide which alerts to delete?
AI can recommend a verdict per rule from firing frequency and actionability data, but a human owns the delete button. Feed it real fire counts and action rates, review the reasons, and keep anything tied to a safety or compliance signal even if it rarely fires. The prompt proposes; the on-call lead disposes.
Stop reading. Start shipping.

Get the prompt packs this guide is built on

Ready-to-paste prompts with documented variables and usage guides for ChatGPT, Claude, and Gemini. One-time payment, own it forever.