Hi All, I'm to trying to set an email alert notification by using splunk. In the alert Description, I just want to mention only particular field values that search returns. I thought of using $result.fieldname$ but, As splunk says it only returns field first row value in the description. For Example:
Field name: values
numbers 1,2,3,4,5
search: index=""|table numbers
alert Description: The number values are: $result.numbers$
O/P:
The number values are: 1
O/p Expected:
The number values are:
1,2,3,4,5
... View more