Splunk Search

Execute regex statements only when a condition is met?

Splunk_User88
Observer

I have a use case where i would need to use regex to extract values only if a condition is met.

 

 

 

 

index=sample 
[search index=sample key=my_key
|table msg host] 
| rex max_match=0 field=_raw "a\d=\"(?<test>.*?)\""
| eval a = if(len(a)>255 OR isnull(a),"*Regex and if statements need to be here*",a)
| stats values(test) as test by msg host

 

 

 

 

 

 

The aim is to use regex inside the if statement .

The logic is if len(a) or a is null then use regex and populate the value test.

I am looking for the same functionality as match() but instead of bool value I need the matched results.

Is there any way to get this functionality?

Labels (6)
0 Karma

bowesmana
SplunkTrust
SplunkTrust

@Splunk_User88 

You can't do exactly what you are trying to do, but there is generally a way to achieve what you want.

Can you be a bit more specific on your outputs from that eval a= statement, as it's not clear what you are trying to do with 'a', as it's not used after that in the stats command

You can always do a rex statement to extract a new field based on the regex you are trying to get a match for. If there is a match, you will get a field with the result, otherwise null. Then you can make the "a=" assignment use that extracted field based on the len/null conditions you have, e.g. something like

index=sample 
[search index=sample key=my_key
|table msg host] 
| rex max_match=0 field=_raw "a\d=\"(?<test>.*?)\""
``` Always do this rex to get the new_field based on your regex ```
| rex field=a "(?<new_field>your_regex)"
``` And only assign to 'a' if the conditions are met ```
| eval a = if(len(a)>255 OR isnull(a),new_field, null())
| stats values(test) as test by msg host

 

0 Karma

Splunk_User88
Observer

I am essentially trying to mimic an if block that we use in python or any other language 

So if statement is true then execute some statements or don't execute them at all

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Splunk SPL is not a procedural language - you are essentially processing a pipeline of events and each command receives all the events currently in the pipeline and passes them on, processing them as it goes. The processing may add information, remove information, or combine multiple events into fewer events, or split events into more events. Try not to get hung up on procedural language constructs, take it back to what the end result should be and work with language to achieve the result.

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Use a temporary field, and only keep the results if the condition is true

| rex field=field_to_extract_from "pre-anchor(?<temporary_field>match expression)post-anchor"
| eval field_to_keep=if(condition,temporary_field,field_to_keep)
0 Karma

Splunk_User88
Observer

Yes i am doing that and storing it in test field but i don't want that 

 

I want the regex to extract value only when if condition is satisfied 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

If you don't want the temporary field, just remove it

| rex field=field_to_extract_from "pre-anchor(?<temporary_field>match expression)post-anchor"
| eval field_to_keep=if(condition,temporary_field,field_to_keep)
| fields - temporary_field
0 Karma
Get Updates on the Splunk Community!

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

Introducing the 2024 SplunkTrust!

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