Getting Data In

How do you identify keywords from a .CSV and report them?

danfinan
Explorer

Hi all,

I'm a bit of Splunk newbie, please bear with me! Our web filtering software is currently forwarding events to Splunk and works well. I'd really like to achieve the title, but I'm not well versed in SPL yet, so I'm looking for some help!

I have a list of keywords in a CSV file; I'd like Splunk to identify those keywords in our web filtering events (separate data source). For example, If I have the word "HELLO" in my CSV, or if an event (URL) contains it — https://somewebsite.com/hi/88HELLO88 — I'd like Splunk to report this to me.

Could someone please give me some guidance on this? I'd really appreciate it!

Thank you!

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Try a subsearch like this:

index=foo [ | inputlookup keywords.csv | eval url="*".keyword."*" | fields url | format ] | ...

It should produce the equivalent of index=foo (url=*keyword1* OR url=*keyword2* OR...).

---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

Try a subsearch like this:

index=foo [ | inputlookup keywords.csv | eval url="*".keyword."*" | fields url | format ] | ...

It should produce the equivalent of index=foo (url=*keyword1* OR url=*keyword2* OR...).

---
If this reply helps you, Karma would be appreciated.

danfinan
Explorer

Thank you richgalloway, I managed to get my keyword list working from your code. Very much appreciated!

0 Karma
Get Updates on the Splunk Community!

Splunk Observability Cloud's AI Assistant in Action Series: Auditing Compliance and ...

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

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

What You Read The Most: Splunk Lantern’s Most Popular Articles!

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...