Splunk Cloud Platform

Inputlookup help

irishmanjb
Path Finder

Hello

I currently get CSV results from a daily import into Splunk.  The first field is a serial number in this format INA field called "Serial Number" like this "xxx-xxx-xxx" it is the first field in the raw_data results.

I have a lookup  called SerialNumber that has a series of serial numbers with the same format I want to check for in the daily report.  I have tested the lookup alone in Splunk and it works fine. It has about 20 serial numbers that I want to check for in the daily results. If there is a match just return the serial number or true

index="blah" sourcetype="blah:csv"
[ | inputlookup SerialNumber ]
fields 



thanks for your help

 

 

Labels (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

If your data and the CSV file use the same field names then this should work. 

index="blah" sourcetype="blah:csv"
  [ | inputlookup SerialNumber | format ]
| table *

If the field names are different then add a rename command within the subsearch.

index="blah" sourcetype="blah:csv"
  [ | inputlookup SerialNumber | rename "Serial Number" as serialNumber | format ]
| table *
---
If this reply helps you, Karma would be appreciated.

View solution in original post

richgalloway
SplunkTrust
SplunkTrust

If your data and the CSV file use the same field names then this should work. 

index="blah" sourcetype="blah:csv"
  [ | inputlookup SerialNumber | format ]
| table *

If the field names are different then add a rename command within the subsearch.

index="blah" sourcetype="blah:csv"
  [ | inputlookup SerialNumber | rename "Serial Number" as serialNumber | format ]
| table *
---
If this reply helps you, Karma would be appreciated.

irishmanjb
Path Finder

Thanks for the follow up!

0 Karma

anilchaithu
Builder

@irishmanjb 

This should work

index="blah" sourcetype="blah:csv"
[ | inputlookup SerialNumber | table filedname | format ]

The field name in the lookup should match with the field name in index. If its not the same use

rename fieldname as fieldname1 (fieldname1 is in the index)

If the field name has a white space like "Serial Number", wrap it in quotes like "filed name"

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

Event Series: Telemetry Pipeline Management

Balancing Scale and Spend: Gaining Control Over High-Volume Metrics in Splunk Observability Cloud As ...

Kick the Tires Before You Commit: A Hands-On Tour of the Splunk Observability Cloud ...

Evaluating an enterprise observability platform usually goes like this: fill out a form, get a free trial with ...

Deep insights, no barriers: Splunk Observability Cloud Free Edition

As software delivery cycles continue to accelerate, observability shouldn’t be a luxury — it should be a ...