Splunk Search

I want to pick up values from different columns from lookup files according to the sourcetype.

veerendra_modi
Loves-to-Learn

I want to pick up values from different lookup files according to the sourcetype.
| lookup error_rules.csv EventSubType Criticality OUTPUT wait_time threshold_count window_limit

Say i have two source type 1 and type2

For type1 i want to lookup EventSubType and Criticality_type1 in lookup error_rules.csv
For type2 i want to lookup EventSubType and Criticality_type2 in lookup error_rules.csv

Please suggest the solution for this scenario if case needs to be used let me know how it will be implemented.

Tags (2)
0 Karma

woodcock
Esteemed Legend

Like this:

... | eval Criticality = if(sourceype="type1", Criticality_type1, Criticality_type2)
| lookup error_rules.csv EventSubType Criticality OUTPUT wait_time threshold_count window_limit
| fields - Criticality
0 Karma

woodcock
Esteemed Legend

Just add sourcetype to your lookup file.

0 Karma

adonio
Ultra Champion

not sure i fully understand, but how about something along those lines:

 ... your search ... (sourcetype=1 OR sourcetype=2) ... | lookup error_rules.csv EventSubType Criticality OUTPUT wait_time threshold_count window_limit
| eval Criticality_type1= if(sourcetype=="1",Criticality,null())
| eval Criticality_type2= if(sourcetype=="2",Criticality,null())
| .... more stuff if you want 
0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...