Splunk Integration Guide
Configure Splunk alerts to send webhook notifications to Harness AI SRE when searches detect issues.
Before you begin
- Harness webhook endpoint: Create a webhook in Harness AI SRE. Go to Create a Webhook to set up the custom webhook configuration that Splunk uses.
- Splunk permissions: Access to create and modify alerts and webhook alert actions.
- Webhook URL: Copy the webhook URL from your Harness webhook configuration.
- Splunk webhook documentation: Go to Use a Webhook Alert Action to understand webhook alert action configuration.
Create webhook alert action
Navigate to alert actions
- Splunk Enterprise
- Splunk Cloud
- Navigate to Settings, then select Alert Actions.
- Click Create New Alert Action.
- Select Webhook.
Splunk Cloud requires using the Webhook Alert Action app or configuring via REST API.
- Install the Webhook Alert Action app from Splunkbase.
- Navigate to Apps, select Webhook Alert Action, then select Configuration.
Configure webhook alert action
Configure this field:
- URL: Your Harness webhook URL.
https://<your-harness-instance>/gateway/ai-sre/api/webhooks/<webhook-id>
The webhook alert action does not expose fields for custom headers, authentication, HTTP method, or content type. Add the target URL to Splunk's webhook allow list if required by your Splunk deployment.
Webhook payload format
The webhook alert action sends a fixed JSON payload. Splunk does not support token substitution, custom templates, or configurable headers for this alert action; the payload structure below is always sent as-is.
{
"result": {
"sourcetype": "mongod",
"count": "8"
},
"sid": "scheduler_admin_search_W2_at_14232356_132",
"results_link": "http://web.example.local:8000/app/search/@go?sid=scheduler_admin_search_W2_at_14232356_132",
"search_name": null,
"owner": "admin",
"app": "search"
}
result: The first result row of the triggered search, with keys matching the fields in your search results.sid: The search ID (SID) of the triggered saved search.results_link: A URL to the search results in Splunk.search_name: The name of the saved search, ornullif the search was not saved.owner: The owner of the saved search.app: The Splunk app context the search ran in.
Configure Splunk alert
Create or edit saved search
Save a search as an alert in Splunk:
- Run your search query in Splunk.
- Click Save As, then select Alert.
Configure alert settings
- Real-time
- Scheduled
Alert Type: Real-time
Trigger Condition: Per-result (trigger for each result)
Throttle: 5 minutes
Use case: Immediate response to critical events
Alert Type: Scheduled
Cron Expression: 0 * * * * (hourly)
Trigger Condition: Number of results > 0
Use case: Periodic summary reports or batch analysis
Add webhook trigger action
Attach the webhook action to the alert:
- In Trigger Actions, select Add Actions, then select Webhook.
- Select the webhook alert action you created for Harness AI SRE.
- Configure action-specific parameters.
Save the alert
Click Save to create the alert.
Configure field mapping in Harness
In your Harness webhook configuration, map the fixed Splunk payload fields (result, sid, results_link, search_name, owner, app) to alert properties.
Map basic fields
Use Mustache templates for simple field mapping:
title: "{{webhook.search_name}}"
message: |
Splunk alert triggered: {{webhook.search_name}}
App: {{webhook.app}}
Owner: {{webhook.owner}}
severity: "medium"
source: "splunk"
link: "{{webhook.results_link}}"
tags:
- "source:splunk"
- "search:{{webhook.search_name}}"
- "app:{{webhook.app}}"
Advanced field mapping with CEL
Use CEL for conditional logic and data transformation:
// Extract and format alert details
title: webhook.search_name
message: "Splunk alert triggered for search: " + webhook.search_name + "\n\n" +
"App: " + webhook.app + "\n" +
"Owner: " + webhook.owner + "\n\n" +
"First Result:\n" + string(webhook.result)
source: "splunk"
link: webhook.results_link
tags: [
"source:splunk",
"search:" + webhook.search_name,
"sid:" + webhook.sid,
"app:" + webhook.app
]
// Filter: only process alerts owned by a specific user
filter: webhook.owner == "admin"
Because the payload does not include a severity or trigger-time field, derive severity and timing in Harness from the result object's fields (which mirror your search's output columns) or set a static severity for the webhook.
Test the integration
Test from Splunk
Trigger the saved search to confirm delivery:
- Open the saved search configured with the webhook.
- Click Run.
- Wait for the alert to trigger, or manually trigger it if conditions are met.
Verify in Splunk
Confirm the webhook action executed:
- Navigate to Activity, then select Triggered Alerts.
- Find your alert and verify the webhook action executed successfully.
- Check for HTTP response code (200 = success).
Verify in Harness
Confirm the alert arrived and mapped correctly:
- Navigate to Alerts in Harness AI SRE.
- Check that the alert appears.
- Verify field mapping:
- Alert title matches expected format.
- Message includes search results.
- Tags are populated correctly.
- Link navigates to Splunk search results.
Webhook payload fields
The webhook alert action always sends these fields. There are no additional tokens available for this alert action:
| Field | Description | Example |
|---|---|---|
result | The first result row of the triggered search | {"host": "web-01", "count": "8"} |
sid | Search job ID | scheduler_admin_search_W2_at_14232356_132 |
results_link | URL to the search results | https://splunk.example.com/app/search/@go?sid=... |
search_name | Saved search name, or null if unsaved | Prod Errors Search |
owner | Owner of the saved search | admin |
app | Splunk app context | search |
Advanced configuration
Throttle real-time alerts
For continuous monitoring without overwhelming Harness:
Splunk alert configuration:
Alert Type: Real-time
Trigger: Per-result
Throttle: 5 minutes
Harness CEL filter:
// Deduplicate by search name in Harness
filter: webhook.search_name != null
Scheduled batch analysis
For periodic summary reports:
Splunk alert configuration:
Alert Type: Scheduled
Cron: 0 * * * * (hourly)
Trigger: Number of results > 0
Harness field mapping:
title: "Hourly Summary: {{webhook.search_name}}"
message: |
Search {{webhook.search_name}} triggered in app {{webhook.app}}.
Review the full search results for details.
severity: "info"
link: "{{webhook.results_link}}"
Parse structured search result fields
Because result contains only the first row of the triggered search, design your search to surface the fields you need in that row (for example with stats or head 1):
Splunk search:
index=prod sourcetype=app_logs error
| stats count by error_type, service, host
| head 1
Harness field mapping:
title: "Error Spike: " + string(webhook.result.error_type)
message: string(webhook.result.count) + " " + string(webhook.result.error_type) + " errors on " +
string(webhook.result.service) + " (host: " + string(webhook.result.host) + ")"
tags: [
"error_type:" + string(webhook.result.error_type),
"service:" + string(webhook.result.service),
"host:" + string(webhook.result.host)
]
Route by app
Create separate Harness webhooks for different Splunk apps:
Application logs webhook:
filter: webhook.app == "app_logs"
title: "Application Error: " + webhook.search_name
Security logs webhook:
filter: webhook.app == "security_logs"
title: "Security Event: " + webhook.search_name
severity: "critical"
Troubleshooting
Splunk webhook alert action is not triggering for a Harness AI SRE integration
Verify the alert trigger condition is met in Activity, then Triggered Alerts, ensure the webhook action is selected in the alert's Trigger Actions, check the Splunk _internal index for webhook errors, and test the alert manually by clicking Run on the saved search.
Splunk webhook returns HTTP errors when sending to a Harness AI SRE webhook
Verify the webhook URL is correct with no typos in the webhook ID, confirm the payload is valid JSON, review the Splunk Alert Action History for error messages, ensure the Harness webhook is enabled, and test the webhook manually with curl.
Splunk payload field mapping is not matching correctly in Harness AI SRE
Ensure field names match the payload keys exactly (result, sid, results_link, search_name, owner, app) because they are case-sensitive, remember that fields inside result mirror your search's output columns, and review Harness webhook logs to see the actual received payload.
Large Splunk first-result values cause timeouts in a Harness AI SRE webhook
Narrow your Splunk search to return only the fields you need before the alert triggers, and increase the Harness webhook timeout if needed.
search_name is missing or null in the Splunk webhook payload sent to Harness AI SRE
search_name is null when the triggering search was not saved. Save the search as an alert before attaching the webhook trigger action, and handle null values for search_name in your Harness field mapping.
Example: complete integration
This example shows a production-ready Splunk-to-Harness integration for application error monitoring.
Splunk saved search
index=prod sourcetype=app_logs level=error
| stats count by error_type, service, host
| where count > 10
| head 1
Schedule: Real-time, trigger per-result, throttle 5 minutes
Splunk webhook payload
Splunk sends the fixed payload shape for every trigger, with result reflecting the columns from the saved search above:
{
"result": {
"error_type": "NullPointerException",
"service": "payment-processor",
"host": "web-01",
"count": "23"
},
"sid": "scheduler_admin_search_W2_at_14232356_132",
"results_link": "https://splunk.example.com/app/search/@go?sid=scheduler_admin_search_W2_at_14232356_132",
"search_name": "Prod App Error Spike",
"owner": "admin",
"app": "search"
}
Map fields in the Harness webhook
title: |
int(webhook.result.count) > 100 ? "🚨 Critical: " : "⚠️ Warning: "
+ webhook.result.error_type + " errors on " + webhook.result.service
message: |
Splunk detected {{webhook.result.count}} {{webhook.result.error_type}} errors
Service: {{webhook.result.service}}
Host: {{webhook.result.host}}
Search: {{webhook.search_name}}
View full results: {{webhook.results_link}}
severity: |
int(webhook.result.count) > 100 ? "critical" :
int(webhook.result.count) > 50 ? "high" : "medium"
source: "splunk"
link: "{{webhook.results_link}}"
tags:
- "source:splunk"
- "error_type:{{webhook.result.error_type}}"
- "service:{{webhook.result.service}}"
- "host:{{webhook.result.host}}"
- "search:{{webhook.search_name}}"
filter: |
int(webhook.result.count) > 10 &&
webhook.result.service in ["api-gateway", "auth-service", "payment-processor"]
custom_fields:
error_count: "{{webhook.result.count}}"
sid: "{{webhook.sid}}"
Next steps
- Go to Route Alerts to route and deduplicate Splunk alerts.
- Go to Use CEL in Webhooks to add advanced filtering and transformation logic.
- Go to AI Agent to enable automated log analysis and correlation.
Related documentation
Splunk official documentation
- Go to Use a Webhook Alert Action to configure the webhook alert action and understand the fixed payload format.
- Go to Webhook Alert Action App to configure and install the Splunk Cloud webhook.