Splunk Search

Help with If The Else Condition?

mmwells
Explorer

 am writing an If Then Else Evaluation statement and could use some help.

 

If (PRIORITY=02 AND Condition=Alarm) then <h3 style="color:red;">A Critical Alarm</h3>

else

If (PRIORITY=12 AND Condition=Alarm) then <h3 style="color:orange;">A High Alarm</h3>

else 

If (PRIORITY=22 OR PRIORITY=25 AND Condition=Alarm) then <h3 style="color:yellow;">A Low Alarm</h3>

else 

If (PRIORITY=02 OR PRIORITY=12 OR PRIORITY=22 OR PRIORITY=25 AND Condition=Clear) then <h3 style="color:green;">A Cleared Alarm</h3>

Labels (1)
Tags (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

You can use a case function to evaluate the value of a field e.g.

| eval alarm=case(PRIORITY=02 AND Condition="Alarm","Critical",PRIORITY=12 AND Condition="Alarm","High",PRIORITY=22 OR PRIORITY=25 AND Condition="Alarm","Low",PRIORITY=02 OR PRIORITY=12 OR PRIORITY=22 OR PRIORITY=25 AND Condition="Clear","Cleared")

mmwells
Explorer

That is a start, but I need to be able to change the font color when a condition is met.

0 Karma
Get Updates on the Splunk Community!

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 ...

[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 ...