Hi guys
I'm not an expert of Splunk.
I was wondering if I can use a lookup to reference fields that are stored into another log file (not csv) indexed in Splunk
Let me explain:
I have a log file indexed in Splunk:
col1,col2,GCD1,col4,col5
col1,col2,GCD2,col4,col5
col1,col2,GCD3,col4,col5
I've another file always indexed in Splunk:
graph [
directed 1
node [
id 1
Node "Node1"
]
node [
id 2
Node "Node2"
]
node [
id 3
Node "Node3"
]
]
I need a new field when I search for the first file that match the GDCID with the id in the second file
col1,col2,GCD1,col4,col5,Node1
col1,col2,GCD2,col4,col5,Node2
col1,col2,GCD3,col4,col5,Node3
Is this possible?
Thanks
... View more