Splunk Search

using lookups to rename field values

architkhanna
Path Finder

I have a lookup file severity_lookup with two columns. One having 1,2,3,4 and other having p1,p2,p3,p4.
I need to change 1 to p1 ,2 to p2 likewise.
Any suggestions

woodcock
Esteemed Legend

You can do this in 1 step PROVIDED you have 100% coverage; if you have an input value that is not present in the lookup, it will lose it's value:

... | lookup severity_lookup SevNum OUTPUT SevName AS SevNum

If you might have a gap, then use coalesce like this:

... | lookup severity_lookup SevNum | eval SevNum=coalesce(SevName, SevNum) | fields - SevName
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Assuming your lookup file is a CSV that looks something like this.

SevNum, SevName
1, p1
2, p2
3, p3
4, p4

Then to convert SevNum in your event into SevName in your results, you could do this.

<your base search> | lookup severity_lookup.csv SevNum OUTPUT SevName | ...

Then use the SevName field in the rest of your query.

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

gcusello
SplunkTrust
SplunkTrust

Hi architkhanna,
try something like this (field in search is severity, lookup name is severity_lookup.csv, column1 is severity, column2 is description)

your_search
| lookup severity_lookup.csv severity OUTPUT description
| table _time other_fields severity description

if the field name is different between search and lookup you have to modify the lookup command in

| lookup severity_lookup.csv severity AS severity_field OUTPUT description

Bye.
Giuseppe

Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...