Splunk Search

Create a new field based on existing filelds

sidtalup27
Explorer

Hello,

My requirement is if the field "fields.summary" contains events that contain ".DT", then I want to create a new field "Summary", and set the value of the new field as Security Incident. I have created the below query, but its not working as expected. 

index="main" AND source=jira | spath
| eval summary=if(match (fields.summary,".DT-"),"Security Incident","no")

Please advise.

--
Thanks,
Siddarth

Labels (1)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

The match function uses a regular expression syntax to match the value in the field - "." is a wildcard character in regular expressions so these (along with other special characters) need to be escaped.  Field names with special characters should also be quoted with single quotes. Try this

index="main" AND source=jira | spath
| eval summary=if(match ('fields.summary',"\.DT\-"),"Security Incident","no")

 

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust

The match function uses a regular expression syntax to match the value in the field - "." is a wildcard character in regular expressions so these (along with other special characters) need to be escaped.  Field names with special characters should also be quoted with single quotes. Try this

index="main" AND source=jira | spath
| eval summary=if(match ('fields.summary',"\.DT\-"),"Security Incident","no")

 

Get Updates on the Splunk Community!

Detecting Remote Code Executions With the Splunk Threat Research Team

WATCH NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If exploited, ...

Enter the Splunk Community Dashboard Challenge for Your Chance to Win!

The Splunk Community Dashboard Challenge is underway! This is your chance to showcase your skills in creating ...

.conf24 | Session Scheduler is Live!!

.conf24 is happening June 11 - 14 in Las Vegas, and we are thrilled to announce that the conference catalog ...