Creates, monitors, and manages Splunk alerts, including triggered alerts, configuration, and notification actions (email, webhook, script).
How this skill is triggered — by the user, by Claude, or both
Slash command
/splunk-assistant-skills:splunk-alertThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Alert triggering, monitoring, and notification management for Splunk.
Alert triggering, monitoring, and notification management for Splunk.
Create and manage alerts, monitor triggered alerts, and configure alert actions.
| Operation | Risk | Notes |
|---|---|---|
| List alerts | - | Read-only |
| Get alert details | - | Read-only |
| List triggered alerts | - | Read-only |
| Create alert | ⚠️ | May trigger notifications |
| Update alert | ⚠️ | Previous config lost |
| Acknowledge alert | ⚠️ | Can be re-triggered |
| Delete alert | ⚠️⚠️ | May be recoverable from backup |
| Command | Description |
|---|---|
alert create | Create a new alert |
alert get | Get alert details |
alert list | List all alerts (scheduled searches with alert actions) |
alert triggered | List triggered alerts |
alert acknowledge | Acknowledge a triggered alert |
# Create an alert
splunk-as alert create --name "High Error Rate" \
--search "index=main sourcetype=app_logs error | stats count" \
--condition "number of events" \
--comparator "greater than" \
--threshold 100 \
--cron "*/5 * * * *" \
--actions email \
--email-to [email protected]
# List all configured alerts
splunk-as alert list --app search --count 100
# Get specific alert details
splunk-as alert get "High Error Rate"
# List triggered alert instances with filters
splunk-as alert triggered --app search --count 20
# Acknowledge/delete a triggered alert
splunk-as alert acknowledge alert_12345
always - Trigger on every scheduled executionnumber of events - Trigger when result count meets conditionnumber of hosts - Trigger when host count meets conditionnumber of sources - Trigger when source count meets conditioncustom - Custom alert conditiongreater thanless thanequal tonot equal todrops byrises byemail - Send email notificationwebhook - HTTP POST to webhook URLscript - Execute custom scriptGET /services/alerts/fired_alerts - List triggered alertsGET /services/alerts/fired_alerts/{name} - Get specific triggered alertDELETE /services/alerts/fired_alerts/{name} - Acknowledge/delete triggered alertPOST /servicesNS/nobody/{app}/saved/searches - Create alert (via saved search)GET /servicesNS/nobody/{app}/saved/searches - List alert configurationsnpx claudepluginhub grandcamel/splunk-assistant-skills --plugin splunk-assistant-skillsCreates SigNoz alert rules from natural-language intent for threshold, anomaly, log-volume, error-rate, latency, and absent-data alerts across metrics, logs, traces, and exceptions.
Manages Splunk saved searches and reports with full CRUD operations, including scheduling, execution, and history retrieval.
Triages security alerts in Splunk Enterprise Security by classifying severity, investigating notable events, correlating telemetry, and making escalation/closure decisions using SPL queries and the Incident Review dashboard. For SOC analysts managing alert queues.