Splunk Search

Run the condition on multiple fields of each events

khojas02
Engager

I have set of events as below:

EmployeeID Company
C123 ABC
C456 DEF
C789
2598
3648

Here, all the EmployeeID starting with C are Contractors and some of them have Company values. Now I want to achieve 2 things
1. I want to Populate "Unknown" where the EmployeeID starts with C but there is no Company value.
2. And for all the other EmployeeID (not starting with C), I want to populate Fulltime.

Thanks in advance!!

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

This should help.

... | eval Company = case(isnotnull(Company), Company, match(EmployeeID, "C.*"), "Unknown", 1==1, "Fulltime")
---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

This should help.

... | eval Company = case(isnotnull(Company), Company, match(EmployeeID, "C.*"), "Unknown", 1==1, "Fulltime")
---
If this reply helps you, Karma would be appreciated.
0 Karma

khojas02
Engager

Thanks a lot, it worked for me.

I was trying to implement nested loop but it was giving me an error about malformed function or repeatable action. Thanking again for help!!

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

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

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...