Getting Data In

Why is WILDCARD in lookup not working?

Toki
Explorer

I am using splunk cloud.
I would like to use the lookup file to find out if there is an IP corresponding to the blacklist, but only 10.50.88.22 is hit.

[definition of lookup]
WILDCARD (IP)

[Contents of lookupfile]
IP
10.50.88.22
10.30.50.70

[Search statement]
|makeresults format=csv data="IP
10.50.88.220
10.50.88.22
10.50.88.2"
|lookup test.csv IP OUTPUT IP as list_IP
|where list_IP IN(IP)
|table IP list_IP

If it works correctly, I want the following two to hit.
10.50.88.220
10.50.88.22

Referencing past questions and changing the lookup definition to the following did not work.
WILDCARD (IP)

Is my search statement wrong?
Any advice would be greatly appreciated.

Labels (1)
0 Karma
1 Solution

bowesmana
SplunkTrust
SplunkTrust

Your lookup should contain an asterisk in the data where you want wildcard matching to work, e.g.

10.50.88.22*

but also you are using a lookup on the CSV itself, which does NOT support any wildcard lookup. You must use the definition name to perform the lookup, not the CSV file.

View solution in original post

0 Karma

bowesmana
SplunkTrust
SplunkTrust

Your lookup should contain an asterisk in the data where you want wildcard matching to work, e.g.

10.50.88.22*

but also you are using a lookup on the CSV itself, which does NOT support any wildcard lookup. You must use the definition name to perform the lookup, not the CSV file.

0 Karma

Toki
Explorer

Thank you for your answer.
It is solved!

0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...