To view the uploaded lookup table file in Splunk, you can access it through the Splunk Web interface. Here's how you can locate, view, and manage your lookup table files:
http://localhost:8000).From the Splunk home screen, click on the Settings gear icon located in the top-right corner of the page.
![]()
Under the Knowledge section, click on Lookups.

On the Lookups page, you'll see three options:
Click on Lookup table files to see all the lookup files uploaded to Splunk.

Locate Your Lookup File:
prices_lookup.csv).View or Download the Lookup File:
Open the downloaded file using a spreadsheet application like Microsoft Excel or a text editor to view its contents.
Edit (if available):
Some versions of Splunk allow you to edit lookup files directly in the web interface.
Click on Edit to modify the contents online.
After editing, save your changes.
Click on All apps in the App context dropdown to ensure you're viewing lookup files across all apps.

Ensure your user role has the necessary permissions to access the lookup file.
You can adjust permissions by clicking on the Permissions link next to the lookup file.
You can also view the contents of the lookup table file directly in Splunk using the inputlookup command.
| inputlookup <lookup_table_name>If your lookup file is named prices_lookup.csv, run:
| inputlookup prices_lookup.csvSteps:
inputlookup command with your lookup file name.If you have access to the Splunk server's file system, you can find lookup files in the following directory:
$SPLUNK_HOME/etc/apps/<app_name>/lookups/<app_name> with the name of the app where the lookup is stored, such as search.Example:
/opt/splunk/etc/apps/search/lookups/prices_lookup.csvNotes:
To see the uploaded lookup table file in Splunk Web:
To view the lookup contents using SPL:
inputlookup command in the Search & Reporting app:
spl
| inputlookup your_lookup_file.csv
Ensure Correct Permissions:
Suppose you've uploaded a lookup file named prices_lookup.csv and want to view its contents.
Using Splunk Web:
prices_lookup.csv in the list.Using SPL:
spl
| inputlookup prices_lookup.csv
prices_lookup.csv will be displayed in the search results.Editing Lookup Files:
Version Compatibility:
App Context and Permissions:
By following these steps, you can easily view and manage your uploaded lookup table files in Splunk.