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.

Labels (1)
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 | I’m short for "configuration file.” What am I?

May 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with a Special ...

New Articles from Academic Learning Partners, Help Expand Lantern’s Use Case Library, ...

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

Your Guide to SPL2 at .conf24!

So, you’re headed to .conf24? You’re in for a good time. Las Vegas weather is just *chef’s kiss* beautiful in ...