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!

What the End of Support for Splunk Add-on Builder Means for You

Hello Splunk Community! We want to share an important update regarding the future of the Splunk Add-on Builder ...

Solve, Learn, Repeat: New Puzzle Channel Now Live

Welcome to the Splunk Puzzle PlaygroundIf you are anything like me, you love to solve problems, and what ...

Building Reliable Asset and Identity Frameworks in Splunk ES

 Accurate asset and identity resolution is the backbone of security operations. Without it, alerts are ...