Splunk Search

if statement in search query

7ryota
Explorer

hi all,

i would like to ask if it is possible to include IF condition in the search query

 

if msg="Security Agent uninstallation*"

[perform the below]

| rex field=msg ":\s+\(*(?<result>[^)]+)"

| table _time msg result

 

if msg="Security Agent uninstallation command sent*"

[perform the below]

| rex field=msg "^[^;\n]*;\s+\w+:\s+(?P<endpoint>.+)"

| table _time msg suser endpoint

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

The short answer is no - SPL is not a procedural language

The perhaps more helpful answer is, it depends on what you are trying to achieve. The thing to remember is that SPL processes a pipeline of events, each command in the pipeline processes the events and passes the results onto the next command in the pipeline.

Using rex to match against the values in the field can help you do conditional processing e.g. if the field contains "command sent", as in your second example, you could extract the endpoint (you may have to adjust this depending on what your events actually look like)

| rex field=msg "Security Agent uninstallation command sent.*,\s+\w+:\s+(?P<endpoint>.+)"

Events which don't have a msg field which matches the anchor string will not have the endpoint field added to them, but all the events are passed on to the next command in the pipeline.

Hopefully, that makes sense?

0 Karma

isoutamo
SplunkTrust
SplunkTrust

Hi

you cannot use if for perform any flow in SPL. But you can use several rex statements one after another and pick those values based on content of msg. Then just use those values later on or you could use if/case with eval to pick those values to anther filed if those exists e.g. eval foo=if (isnotnull(endpoint), endpoint,"N/A")

r. Ismo

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Take Action Automatically on Splunk Alerts with Red Hat Ansible Automation Platform

 Are you ready to revolutionize your IT operations? As digital transformation accelerates, the demand for ...

Calling All Security Pros: Ready to Race Through Boston?

Hey Splunkers, .conf25 is heading to Boston and we’re kicking things off with something bold, competitive, and ...

Beyond Detection: How Splunk and Cisco Integrated Security Platforms Transform ...

Financial services organizations face an impossible equation: maintain 99.9% uptime for mission-critical ...