Splunk Search

How to Use IF or Case condition

alex5441
Explorer

Hi,

My logs are in following format:

{[-]

logger: .......

message: ..........

severity: Error

}

{[-]

exception: .........

logger: .......

message: ..........

severity: Error

}

my query is :

........| rex "\"exception\":\"(<ErrorMsg>.*?)\"" | table Application, ErrorMsg

 

The issue:

As some app logs have key "message" and some logs have both "exception" and "message".

How can I change my query that first it checks if there is key exception, if it does get the value of that key. If there is no Key exception check if there is key "message", if it does get the value of that.

My current query is able to get the value of exception (if I change exception to message, it gets the value of message. But trying to implement IF or CASE condition here) 

Labels (2)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try something like:

| rex "(\"exception\":\"(?<ErrorMsg>.*?)\"|\"message\":\"(?<Message>.*?)\")"
0 Karma

alex5441
Explorer

Thank you ITWhisperer,

But I am getting error in compile:

error.PNG

 

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Try with different names as in my example

0 Karma
Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Shape the Future of Splunk: Join the Product Research Lab!

Join the Splunk Product Research Lab and connect with us in the Slack channel #product-research-lab to get ...

Auto-Injector for Everything Else: Making OpenTelemetry Truly Universal

You might have seen Splunk’s recent announcement about donating the OpenTelemetry Injector to the ...