<?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 Re: Help on inputlookup subsearch in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656890#M111237</link>
    <description>&lt;P&gt;Try this by combining the two lookups using append for the second lookup&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=toto [ 
  | inputlookup test.csv 
  | inputlookup test2.csv append=t
  | eval user=Domain."\\".Sam
  | table user]
| table _time user&lt;/LI-CODE&gt;&lt;P&gt;I believe there is a missing '.' in your eval statement setting up &lt;STRONG&gt;user&amp;nbsp;&lt;/STRONG&gt; and 'Sam' is a field name?&lt;/P&gt;</description>
    <pubDate>Wed, 06 Sep 2023 22:43:02 GMT</pubDate>
    <dc:creator>bowesmana</dc:creator>
    <dc:date>2023-09-06T22:43:02Z</dc:date>
    <item>
      <title>Help on inputlookup subsearch</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656830#M111231</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;I cross the results of a subsearch with a main search like this&lt;/P&gt;&lt;P&gt;index=toto [inputlookup test.csv&lt;/P&gt;&lt;P&gt;|eval user=Domain."\\"Sam&lt;/P&gt;&lt;P&gt;|table user]&lt;/P&gt;&lt;P&gt;|table _time user&lt;/P&gt;&lt;P&gt;Imagine I need to add a new lookup in my search&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example i would try to do something like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=toto [inputlookup test.csv OR inputlookup test2.csv&lt;/P&gt;&lt;P&gt;|eval user=Domain."\\"Sam&lt;/P&gt;&lt;P&gt;|table user]&lt;/P&gt;&lt;P&gt;|table _time user&lt;/P&gt;&lt;P&gt;How to do this please?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 13:31:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656830#M111231</guid>
      <dc:creator>jip31</dc:creator>
      <dc:date>2023-09-06T13:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: Help on inputlookup subsearch</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656842#M111232</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;you have to set the OR condition before the subsearch, something like this:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=toto ([ | inputlookup test.csv OR inputlookup test2.csv | eval user=Domain."\\"Sam | table user ] OR [ | inputlookup test2.csv | eval user=Domain."\\"Sam | table user ])
| table _time user&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 14:24:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656842#M111232</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-09-06T14:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Help on inputlookup subsearch</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656890#M111237</link>
      <description>&lt;P&gt;Try this by combining the two lookups using append for the second lookup&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=toto [ 
  | inputlookup test.csv 
  | inputlookup test2.csv append=t
  | eval user=Domain."\\".Sam
  | table user]
| table _time user&lt;/LI-CODE&gt;&lt;P&gt;I believe there is a missing '.' in your eval statement setting up &lt;STRONG&gt;user&amp;nbsp;&lt;/STRONG&gt; and 'Sam' is a field name?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 22:43:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656890#M111237</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2023-09-06T22:43:02Z</dc:date>
    </item>
    <item>
      <title>Re: Help on inputlookup subsearch</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656950#M111248</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/102660"&gt;@jip31&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated by all the contributors &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 10:49:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/656950#M111248</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2023-09-07T10:49:06Z</dc:date>
    </item>
    <item>
      <title>Re: Help on inputlookup subsearch</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/688745#M114680</link>
      <description>&lt;P&gt;Just pointing out here that the statement&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup test.csv OR inputlookup test2.csv&lt;/LI-CODE&gt;&lt;P&gt;is not valid Splunk - you cannot do two inputlookup commands like that.&lt;/P&gt;</description>
      <pubDate>Mon, 27 May 2024 00:36:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Help-on-inputlookup-subsearch/m-p/688745#M114680</guid>
      <dc:creator>bowesmana</dc:creator>
      <dc:date>2024-05-27T00:36:35Z</dc:date>
    </item>
  </channel>
</rss>

