npx skills add ...
npx skills add elastic/agent-skills --skill kibana-alerting-rules
Create and manage Kibana alerting rules. Use when creating, updating, or managing rule lifecycle (enable, disable, mute, snooze), choosing metric threshold rule types and params, or read-only find/list with tag filters.
npx skills add elastic/agent-skills --skill kibana-alerting-rules
Create, inspect, update, and manage Kibana alerting rules: choose the right rule type, encode threshold and grouping semantics, attach actions only when requested, and list or filter rules read-only when the user asks to discover existing coverage.
This skill executes Elasticsearch operations through the elastic CLI. If the
elastic CLI is not installed, tell the user what it is needed for. Do
not guess credentials, call the HTTP API directly, or attempt other workarounds.
This skill references operations in HTTP-shorthand form (e.g., GET /, GET /_cat/indices, GET /{index}/_mapping,
GET /{index}/_settings/index.mode, POST /_query). The Operations table at the end of this document
maps each shorthand to the equivalent elastic CLI command — always use the CLI rather than calling the HTTP API
directly.
A rule has three parts: conditions (params + rule_type_id), schedule (how often conditions are checked), and
actions (optional connectors run when alerts fire). When conditions are met, the rule creates alerts; actions
deliver notifications through connectors. Do not create connectors or actions unless the user explicitly asks for
notification wiring — many tasks require only the rule definition.
Required privileges: all on the owning Kibana feature (Stack Rules, Observability, Security, etc.) and all on Rules
Settings. Managing connectors needs all on Actions and Connectors; read is sufficient to attach existing connectors
as rule actions.
On-premises prerequisite: configure a stable xpack.encryptedSavedObjects.encryptionKey in kibana.yml before
creating rules — it encrypts rule API keys and connector secrets. If it is unset, each restart regenerates it and breaks
existing rules; all Kibana nodes in a cluster must share the same key.
Classify the task. Decide whether the user needs to create a rule, find/list rules (read-only), update an existing rule, or perform a lifecycle change (enable, disable, mute, snooze, delete). If the user only asks to show or list rules, treat the request as read-only — do not create, update, enable, or delete anything.
For find/list tasks, filter and page sensibly. Call GET kbn:/api/alerting/rules/_find with query parameters
that narrow results instead of dumping every rule:
filter=alert.attributes.tags:"production" (KQL on saved-object attributes).search with search_fields and default_search_operator as needed.per_page and iterate page when results may exceed one page.sort_field=name and sort_order=asc for stable listings.Enumerate matching rule ids and names. If no rules match, say so plainly — do not invent results. Query alerting rules specifically, not connectors or streams.
For create tasks, choose the rule type before writing params. Match the user's intent to a metric/threshold rule type — not log, anomaly, or unrelated types:
.index-threshold with
consumer: "stackAlerts"..es-query with consumer: "stackAlerts".metrics.alert.threshold with consumer: "metrics" or
"infrastructure".Read rule-types-reference.md for param schemas, valid consumers, and action
groups. When the user specifies an index, field, threshold, duration, and grouping field, encode all four explicitly
in params — do not substitute a connector or action for the condition.
Encode threshold, duration, and grouping correctly. These three dimensions are independent:
threshold and thresholdComparator on the aggregated value. Match field scale — ECS
system.cpu.total.pct is typically fractional (0.9 for 90%); use 90 only when the field is on a 0–100 scale.timeWindowSize and timeWindowUnit in params (lookback evaluated each run).
Align schedule.interval with that window (e.g., both five minutes) so a brief spike does not fire on a mismatched
cadence. Add alert_delay: {"active": N} only when the user wants N consecutive matching runs, not a single
lookback window..index-threshold, set groupBy: "top", termField to the grouping field
(e.g., host.name), and a termSize large enough to cover all entities ("any host"). Without grouping, the rule
aggregates globally and will not alert per host.Build the create payload. Required fields: name, rule_type_id, consumer, schedule, params. Optional:
tags, enabled, actions, alert_delay, flapping. Use the user-supplied rule id in the URL when given;
otherwise let Kibana generate one.
Example params — CPU > 90% on any host for 5 minutes on eval-alert-metrics:
Omit actions when the user only asks to create the rule condition.
Create and confirm. Call POST kbn:/api/alerting/rule/{id} with the payload. On 409 Conflict, the id already
exists — call GET kbn:/api/alerting/rule/{id} to inspect or choose a different id. After a successful create, call
GET kbn:/api/alerting/rule/{id} and confirm success to the user with the live rule id, name, and enabled state — do
not claim success without verifying on Kibana.
For update tasks, read then replace. rule_type_id and consumer are immutable. Call
GET kbn:/api/alerting/rule/{id}, merge intended changes, then PUT kbn:/api/alerting/rule/{id} with the
complete rule body. On 409 Conflict, another user changed the rule — re-fetch and retry. Set per-action
frequency objects; rule-level notify_when and throttle are deprecated.
For lifecycle tasks, call the narrowest endpoint. Disable temporarily with
POST kbn:/api/alerting/rule/{id}/_disable (rule retains config); re-enable with
POST kbn:/api/alerting/rule/{id}/_enable. Mute all alerts with POST kbn:/api/alerting/rule/{id}/_mute_all;
restore with POST kbn:/api/alerting/rule/{id}/_unmute_all. Mute a single active alert with
POST kbn:/api/alerting/rule/{rule_id}/alert/{alert_id}/_mute; unmute with
POST kbn:/api/alerting/rule/{rule_id}/alert/{alert_id}/_unmute. Schedule snoozes with
POST kbn:/api/alerting/rule/{id}/snooze_schedule; remove with
DELETE kbn:/api/alerting/rule/{ruleId}/snooze_schedule/{scheduleId}. Delete permanently with
DELETE kbn:/api/alerting/rule/{id}. When a rule fails due to API key ownership, call
POST kbn:/api/alerting/rule/{id}/_update_api_key.
User: "Alert me when CPU exceeds 90% on any host for 5 minutes. Query eval-alert-metrics (system.cpu.total.pct,
grouped by host.name). Create the rule with id eval-cpu-rule."
.index-threshold / stackAlerts.[0.9], five-minute timeWindowSize/timeWindowUnit, and groupBy/termField for
host.name.POST kbn:/api/alerting/rule/eval-cpu-rule with schedule.interval: "5m". Omit actions.GET kbn:/api/alerting/rule/eval-cpu-rule and confirm to the user.User: "Show me all production alerting rules."
GET kbn:/api/alerting/rules/_find with filter=alert.attributes.tags:"production", sensible per_page, and
sort_field=name.total exceeds per_page.User: "Disable rule abc123 until next Monday."
POST kbn:/api/alerting/rule/abc123/_disable.POST kbn:/api/alerting/rule/abc123/_enable.For planned downtime spanning multiple rules, prefer a maintenance window over disabling or snoozing each rule individually.
frequency inside each action object — rule-level notify_when and throttle are deprecated.rule_type_id and consumer are immutable after creation; delete and recreate to change them.kbn:/s/<space_id>/api/alerting/ for non-default Kibana Spaces (connectors are space-scoped too).alert_delay to require consecutive matches; use flapping settings to suppress unstable alerts. Per-rule tuning
via the flapping object is GA since 9.3; earlier versions support only space-level flapping settings.{{{.}}} in any template field — it renders the whole variable context as JSON, which
helps discover correct paths like {{context.reason}} or {{alert.flapping}}.consumer: "securitySolution"/"siem" belongs to the
dedicated Security Detections API (/api/detection_engine/rules), which has different rule type ids and lifecycle.production, staging, team names) for find API filtering.1m; expensive rules are cancelled after the server run timeout (default 5m).90 vs 0.9 on fractional CPU fields.| HTTP API (shorthand) | elastic CLI command |
|---|---|
GET kbn:/api/alerting/rules/_find | elastic kb alerting get-alerting-rules-find [--filter '<kql>'] [--search '<q>'] [--per-page <n>] [--page <n>] [--sort-field <field>] [--sort-order asc|desc] |
POST kbn:/api/alerting/rule/{id} | elastic kb alerting post-alerting-rule-id --id '<id>' --name '<name>' --rule-type-id '<type>' --consumer '<consumer>' --schedule '<json>' --params '<json>' [--tags '<json>'] [--actions '<json>'] [--enabled] |
GET kbn:/api/alerting/rule/{id} | elastic kb alerting get-alerting-rule-id --id '<id>' |
PUT kbn:/api/alerting/rule/{id} | elastic kb alerting put-alerting-rule-id --id '<id>' --name '<name>' --schedule '<json>' --params '<json>' [--tags '<json>'] [--actions '<json>'] |
DELETE kbn:/api/alerting/rule/{id} | elastic kb alerting delete-alerting-rule-id --id '<id>' |
POST kbn:/api/alerting/rule/{id}/_enable | elastic kb alerting post-alerting-rule-id-enable --id '<id>' |
POST kbn:/api/alerting/rule/{id}/_disable | elastic kb alerting post-alerting-rule-id-disable --id '<id>' [--untrack] |
POST kbn:/api/alerting/rule/{id}/_mute_all | elastic kb alerting post-alerting-rule-id-mute-all --id '<id>' |
POST kbn:/api/alerting/rule/{id}/_unmute_all | elastic kb alerting post-alerting-rule-id-unmute-all --id '<id>' |
POST kbn:/api/alerting/rule/{id}/_update_api_key | elastic kb alerting post-alerting-rule-id-update-api-key --id '<id>' |
POST kbn:/api/alerting/rule/{rule_id}/alert/{alert_id}/_mute | elastic kb alerting post-alerting-rule-rule-id-alert-alert-id-mute --rule-id '<rule_id>' --alert-id '<alert_id>' |
POST kbn:/api/alerting/rule/{rule_id}/alert/{alert_id}/_unmute | elastic kb alerting post-alerting-rule-rule-id-alert-alert-id-unmute --rule-id '<rule_id>' --alert-id '<alert_id>' |
POST kbn:/api/alerting/rule/{id}/snooze_schedule | elastic kb alerting post-alerting-rule-id-snooze-schedule --id '<id>' --schedule '<json>' |
DELETE kbn:/api/alerting/rule/{ruleId}/snooze_schedule/{scheduleId} | elastic kb alerting delete-alerting-rule-ruleid-snooze-schedule-scheduleid --rule-id '<ruleId>' --schedule-id '<scheduleId>' |