Hello, Splunk newbie here. I have a CSV file with a bunch of hostnames titled 'Device' that I added as a lookup 'hostnames.csv'. I have an index that has ComputerName, User, and a bunch of other fields. I want the Index data to enrich my csv data by adding the User that corresponds to the hostname. I will then export back to csv to hand the data to someone else. Does anyone have some pointers so I can achieve this? I was looking at other similar posts, but I couldn't figure out if I need append, outputlookup, join or something else. This is what I have so far. |inputlookup lookup.csv | append [ search index=data source=Source1 Code=22] | rename Device as ComputerName | table ComputerName user_email
... View more