Splunk Search

Finding a match in lookup multivalue field?

boxmetal
Path Finder

Hi Splunk community,

I have a lookup containing a list of allowed departments as the following

vendor allowed_departments
F500 SADE/xxx,BTE,RAPH/NE
C99 SADE/xxx,RAPH/MS

 

I want to have a  field valid check if the field of department matches with any values in allowed_deparments of corresponding vendor. But for allowed_departments value ends with "xxx" will accept the department if department has the same prefix of that value

For example: department of value "SADE/ER" will return Yes if allowed_departments contains "SADE/xxx" 

Currently my SPL is like this

 

 

<my_search>
| lookup my_lookup vendor OUTPUT allowed_departments 
| makemv delim="," allowed_departments
| eval valid = if(match(allowed_departments, department), "Yes", "No")
| fields - allowed_departments
 

 

 

Please advise if it is possible for Splunk to handle it.

Thanks,

Labels (2)
0 Karma
1 Solution

Manasa_401
Communicator

Hello @boxmetal 

You can try splitting the department field value until '/' and then match the value with multivalued field as below.

| lookup my_lookup vendor OUTPUT allowed_departments 
| makemv delim="," allowed_departments
| rex field=department "(?<dept_short>[^\/]+)"
| eval dept_short=dept_short+"/"
| eval valid = if(match(allowed_departments, dept_short), "Yes", "No")
| fields - allowed_departments

 If this helps, karma would be appreciated.

View solution in original post

Manasa_401
Communicator

Hello @boxmetal 

You can try splitting the department field value until '/' and then match the value with multivalued field as below.

| lookup my_lookup vendor OUTPUT allowed_departments 
| makemv delim="," allowed_departments
| rex field=department "(?<dept_short>[^\/]+)"
| eval dept_short=dept_short+"/"
| eval valid = if(match(allowed_departments, dept_short), "Yes", "No")
| fields - allowed_departments

 If this helps, karma would be appreciated.

boxmetal
Path Finder

Hi @Manasa_401 

The query worked. Thank you so much!

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @boxmetal,

let me understand: if the department value is composed by "somethng/somenthing_else" you have to check only "something", is this correct?

if this is your need, you have to add an additional condition:

<my_search>
| lookup my_lookup vendor OUTPUT allowed_departments 
| makemv delim="," allowed_departments
| eval valid = if(allowed_departments=department), "Yes", "No")
| rex field=allowed_departments "^(?<lookup_dept>\w+)\/\w+"
| rex field=department "^(?<search_dept>\w+)\/\w+"
| eval valid=if(lookup_dept=search_dept,"Yes",valid)
| fields - allowed_departments

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

Updated Team Landing Page in Splunk Observability

We’re making some changes to the team landing page in Splunk Observability, based on your feedback. The ...

New! Splunk Observability Search Enhancements for Splunk APM Services/Traces and ...

Regardless of where you are in Splunk Observability, you can search for relevant APM targets including service ...

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...