All Apps and Add-ons

Splunk App for AWS: JSON formatting for AWS SNS alert

sduchene_splunk
Splunk Employee
Splunk Employee

I need to pass JSON formatted data to the AWS SNS alert.
What I have is a table. I created an SNS alert (save as alert->choose AWS SNS)
When sent through SNS alert the format is not JSON.
How can I format this table in JSON?

0 Karma

sduchene_splunk
Splunk Employee
Splunk Employee

idea 1 : use the json tool app https://splunkbase.splunk.com/app/3540/ (note, i haven't tried it, but seems to do the job)
idea 2 : use SPL to create a new field containing the entire line into JSON format, and pass this field to sns alert

this uses foreach command,

index=xx
| eval message="{"
| foreach *
[eval message=if("<>"="message", message, message. " \"". "<>" . "\" : \"".<>."\", ")]
| eval message=rtrim(message, " ,")| eval message=message." }"

--
then finally pass the field message : $result.message$ to sns alert

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...