Splunk Search

How to use a file to map results from fields to more meaningful names?

exocore123
Path Finder

I have log files that contain compCodes (over 500 different types of them). Is there a way I can create a mapping from a txt file, so when I query for the results, say:

stats count by compCodes

Can I use the file to map those and replace the compCodes to more meaningful names? (this is intended for an input populated drop-down search)

0 Karma
1 Solution

DalJeanis
Legend

Yes, you can create a a lookup csv file and use the | lookup command, or a join, or a whole bunch of other ways.

Assuming the file is mylookup.csv and has fields TheCode and TheDescription ...

| stats count as TheCount by compCodes
| lookup mylookup.csv TheCode as compCodes OUTPUT TheDescription as compDescription 
| table CompCodes compDescription TheCount

...or...

| stats count as TheCount by compCodes
| rename compCodes to TheCode
| inputlookup append=t mylookup.csv 
| stats values(*) as * by TheCode
| table TheCode TheDescription TheCount

View solution in original post

0 Karma

DalJeanis
Legend

Yes, you can create a a lookup csv file and use the | lookup command, or a join, or a whole bunch of other ways.

Assuming the file is mylookup.csv and has fields TheCode and TheDescription ...

| stats count as TheCount by compCodes
| lookup mylookup.csv TheCode as compCodes OUTPUT TheDescription as compDescription 
| table CompCodes compDescription TheCount

...or...

| stats count as TheCount by compCodes
| rename compCodes to TheCode
| inputlookup append=t mylookup.csv 
| stats values(*) as * by TheCode
| table TheCode TheDescription TheCount
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...