Splunk Search

update old values in lookup table and add new rows to the table

avi123
Explorer

Hi All,

I have created a lookup table Status.csv which is having all the status of tickets and whether they are SLA relevant or not. However, due to having incorrect data while creating the table the values for all the Statuses are coming wrong. I want to update all the data for these statuses and add few more status values to the lookup table. How do I do that? Please suggest.

0 Karma

Temuulen0303
Explorer

You can fetch results of lookup using search:
| inputlookup your_lookup.csv

Replacing lookup data would be:
```your search here```
| outputlookup your_lookup.csv

And then you can add(append) rows using:
```your search here```
| outlookup append=true your_lookup.csv

richgalloway
SplunkTrust
SplunkTrust

If the lookup table is small enough, you may be able to update it manually using the Splunk App for Lookup File Editing (https://splunkbase.splunk.com/app/1724).

Otherwise, the only way to do it in SPL is to read the entire lookup table, modify the status field using eval or other commands, and then rewrite the lookup table.

| inputlookup Status.csv
| eval status=...
| outputlookup Status.csv

 

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Index This | Why did the turkey cross the road?

November 2025 Edition  Hayyy Splunk Education Enthusiasts and the Eternally Curious!   We’re back with this ...

Enter the Agentic Era with Splunk AI Assistant for SPL 1.4

  🚀 Your data just got a serious AI upgrade — are you ready? Say hello to the Agentic Era with the ...

Feel the Splunk Love: Real Stories from Real Customers

Hello Splunk Community,    What’s the best part of hearing how our customers use Splunk? Easy: the positive ...