Hi, I have 2 separate queries as below: Query1: (normal splunk search e.g. index=* host=abcde | table Message1,Message2,Status ....) Message1, Message2, Status aaaa,bbbb,0x000006d Query2: (using...
See more...
Hi, I have 2 separate queries as below: Query1: (normal splunk search e.g. index=* host=abcde | table Message1,Message2,Status ....) Message1, Message2, Status aaaa,bbbb,0x000006d Query2: (using inputlookup blabla.csv | table Status,Action) Status,Action 0x00006d,Failure How do i map both queries above and produce output as below: Output: Message1,Message2,Status,Action aaaa,bbbb,0x00006d,Failure Basically the Status from Query1 needs to be mapped with Query2 and output the corresponding action. Appreciate the help!