Splunk Search

Is it possible to match a string in a lookup against a keyword?

Ker_splunk
Engager

Hi Splunk Community,

 

I wondered if there was any way to match a keyword against a string in a lookup.  For example:

 

I have a lookup containing a field with a string:

 

items description
"orange apple banana"  fruit

 

I have this field in my search results:

item

"apple"

 

 

|makeresults
| eval item="apple"

 

 

Is there any way I can look-up the lookup above to match "apple" against "orange apple banana" and output "fruit" from the description field?

I can achieve the reverse of this with wildcard matching (e.g. "orange apple banana" > *apple*), but haven't been able to find a way to match against a string.

Does anyone know if this is possible?

Thanks

 

 

Labels (3)
0 Karma
1 Solution

yuanliu
SplunkTrust
SplunkTrust

I did this occasionally but it can be very expensive.  Something like

 

| append
    [| inputlookup itemslookup.csv
    | eval items = split(items, " ")]
| stats values(item) as item values(items) as items values(description) as description
| mvexpand item
| eval description = if(in(item, items), description, null())

 

The output looks like

item
items
description
apple
apple
banana
orange
fruit
potato
apple
banana
orange
 

This is tested with the following emulation

 

| makeresults
| fields - _time
| eval item = mvappend("apple", "potato")
| mvexpand item
``` data emulation above ```

 

View solution in original post

Tags (2)

Ker_splunk
Engager

Good thinking! Thanks

0 Karma

yuanliu
SplunkTrust
SplunkTrust

I did this occasionally but it can be very expensive.  Something like

 

| append
    [| inputlookup itemslookup.csv
    | eval items = split(items, " ")]
| stats values(item) as item values(items) as items values(description) as description
| mvexpand item
| eval description = if(in(item, items), description, null())

 

The output looks like

item
items
description
apple
apple
banana
orange
fruit
potato
apple
banana
orange
 

This is tested with the following emulation

 

| makeresults
| fields - _time
| eval item = mvappend("apple", "potato")
| mvexpand item
``` data emulation above ```

 

Tags (2)
Get Updates on the Splunk Community!

Splunk Enterprise Security(ES) 7.3 is approaching the end of support. Get ready for ...

Hi friends!    At Splunk, your product success is our top priority. With Enterprise Security (ES), we're here ...

Splunk Enterprise Security 8.x: The Essential Upgrade for Threat Detection, ...

Watch On Demand the Tech Talk, and empower your SOC to reach new heights! Duration: 1 hour  Prepare to ...

Splunk Observability for AI

Don’t miss out on an exciting Tech Talk on Splunk Observability for AI!Discover how Splunk’s agentic AI ...