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.
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Community Content Calendar, September edition

Welcome to another insightful post from our Community Content Calendar! We're thrilled to continue bringing ...

Splunkbase Unveils New App Listing Management Public Preview

Splunkbase Unveils New App Listing Management Public PreviewWe're thrilled to announce the public preview of ...

Leveraging Automated Threat Analysis Across the Splunk Ecosystem

Are you leveraging automation to its fullest potential in your threat detection strategy?Our upcoming Security ...