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!

Dashboards: Hiding charts while search is being executed and other uses for tokens

There are a couple of features of SimpleXML / Classic dashboards that can be used to enhance the user ...

Splunk Observability Cloud's AI Assistant in Action Series: Explaining Metrics and ...

This is the fourth post in the Splunk Observability Cloud’s AI Assistant in Action series that digs into how ...

Brains, Bytes, and Boston: Learn from the Best at .conf25

When you think of Boston, you might picture colonial charm, world-class universities, or even the crack of a ...