<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Lookup values with search results in Splunk Dev</title>
    <link>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321356#M4519</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;I have a lookup as mentioned below:

Message#, MessageDesc
1234, Error

In my search criteria,I am getting output like

Message#, Code, _raw,_time
1234, abcd, this error 1234 caused issues, 2017-02-21 06:40:32

Now I want my complete output as

Message#, MessageDesc,Code, _raw,_time
1234,Error, abcd, this error 1234 caused issues, 2017-02-21 06:40:32

I tried different options but not able to get the _raw and _time values
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 21 Feb 2017 18:55:14 GMT</pubDate>
    <dc:creator>avaishsplunk</dc:creator>
    <dc:date>2017-02-21T18:55:14Z</dc:date>
    <item>
      <title>Lookup values with search results</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321356#M4519</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;I have a lookup as mentioned below:

Message#, MessageDesc
1234, Error

In my search criteria,I am getting output like

Message#, Code, _raw,_time
1234, abcd, this error 1234 caused issues, 2017-02-21 06:40:32

Now I want my complete output as

Message#, MessageDesc,Code, _raw,_time
1234,Error, abcd, this error 1234 caused issues, 2017-02-21 06:40:32

I tried different options but not able to get the _raw and _time values
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Feb 2017 18:55:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321356#M4519</guid>
      <dc:creator>avaishsplunk</dc:creator>
      <dc:date>2017-02-21T18:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup values with search results</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321357#M4520</link>
      <description>&lt;P&gt;You need to do other way around. Try this (check the field names should be exactly same)&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;your current search giving fields Message#, Code, _raw,_time
| lookup yourlookup.csv "Message#" OUTPUT MessageDesc
| table Message#, MessageDesc,Code, _raw,_time
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 21 Feb 2017 20:18:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321357#M4520</guid>
      <dc:creator>somesoni2</dc:creator>
      <dc:date>2017-02-21T20:18:10Z</dc:date>
    </item>
    <item>
      <title>Re: Lookup values with search results</title>
      <link>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321358#M4521</link>
      <description>&lt;P&gt;Thanks I was able to figure out the issue and have used the same logic but thanks a lot for the prompt help&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 21:26:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Dev/Lookup-values-with-search-results/m-p/321358#M4521</guid>
      <dc:creator>avaishsplunk</dc:creator>
      <dc:date>2017-02-21T21:26:42Z</dc:date>
    </item>
  </channel>
</rss>

