Alerting

How to find out a lookup is used in how many saved searches.

msplunk33
Path Finder

I have a few lookups created by users they left the organization. We need to remove this lookups since it take large amount of space. Before we remove is there any query we can find out  how many searches using this lookup.

0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

This is easiest to do from the CLI.  First, search all transforms.conf files to see if a lookup definition uses the lookup files.

find /opt/splunk/etc -name transforms.conf -print0 | xargs -r0 grep #lookupfilename#

Replace #lookupfilename# with the actual name of the lookup (probably a .csv file).  Repeat this for each lookup.  The output, if any, will tell you if the lookup file is used by a lookup definition.

Next, search savedsearches.conf files for the lookups and lookup files you've identified.

find /opt/splunk/etc -name savedsearches.conf -print0 | xargs -r0 grep #lookupname#

 

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

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

This is easiest to do from the CLI.  First, search all transforms.conf files to see if a lookup definition uses the lookup files.

find /opt/splunk/etc -name transforms.conf -print0 | xargs -r0 grep #lookupfilename#

Replace #lookupfilename# with the actual name of the lookup (probably a .csv file).  Repeat this for each lookup.  The output, if any, will tell you if the lookup file is used by a lookup definition.

Next, search savedsearches.conf files for the lookups and lookup files you've identified.

find /opt/splunk/etc -name savedsearches.conf -print0 | xargs -r0 grep #lookupname#

 

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

scelikok
SplunkTrust
SplunkTrust

Hi @msplunk33,

You can use below search by updating your lookup file name.

index=_audit action=search search_id=* *lookup_name*
If this reply helps you an upvote and "Accept as Solution" is appreciated.
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...