Splunk Search

If a value contains a value it changes to another.

Talking_Master
Explorer

Hi Iam looking to create an if statement:  if value  contains part of another value  it changes it too another value.

for example contains x its true if not its false.   

 | eval error=if(in(status, "error", "failure", "severe"),"true","false")

I also want it for many values.

Labels (1)
0 Karma
1 Solution

andrew_nelson
Communicator

Using the match() function should do what you need. 

| eval error=if(match(status, "(?i)error") OR match(status, "(?i)failure") OR match(status, "(?i)severe"),"true","false")

 

If however you have a bunch of matching patterns, having all of them in a lookup file and using wildcard matching might be a better option. 

View solution in original post

andrew_nelson
Communicator

Using the match() function should do what you need. 

| eval error=if(match(status, "(?i)error") OR match(status, "(?i)failure") OR match(status, "(?i)severe"),"true","false")

 

If however you have a bunch of matching patterns, having all of them in a lookup file and using wildcard matching might be a better option. 

Talking_Master
Explorer

Thanks for the solution. But If theres value say it has  server 1 failed. How do I one look for if value has failed in its string then it does somthing.

 

0 Karma

andrew_nelson
Communicator

You can use match(status, "(?i)fail") and it'll match failed, fail, failure, failing.

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...