<?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: Newbie doubt in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525800#M88743</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;i want the final values from the pre-defined list of values which don't appear on the search - not the other way round.&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2020 13:53:11 GMT</pubDate>
    <dc:creator>SoumyaSengupta9</dc:creator>
    <dc:date>2020-10-21T13:53:11Z</dc:date>
    <item>
      <title>Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525638#M88727</link>
      <description>&lt;P&gt;I have an array of pre-defined string values.&lt;/P&gt;&lt;P&gt;I want to check which of these values have not occured at search time for the last 60 mins.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have my query in such a format&lt;/P&gt;&lt;P&gt;[ "", "", "", ............&amp;nbsp; ] NOT IN [ search query ]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This does not work as the hardcoded strings are not a search query. What do I do here?&lt;/P&gt;&lt;P&gt;Basically I need the list of strings which haven't appeared in the last 60 mins among the logs.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Oct 2020 20:58:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525638#M88727</guid>
      <dc:creator>SoumyaSengupta9</dc:creator>
      <dc:date>2020-10-20T20:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525643#M88728</link>
      <description>&lt;P&gt;Recall that square brackets denote a subsearch.&amp;nbsp; Subsearches run before the main search and their results are added to the main search.&amp;nbsp; The combination must produce a valid SPL query.&lt;/P&gt;&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;IN&lt;/FONT&gt; operator does not work the way it's being used here.&amp;nbsp; It expects a comma-separated list of values rather than the "&lt;FONT face="courier new,courier"&gt;(foo=1 OR foo=2)&lt;/FONT&gt;" type of result produced by a subsearch.&lt;/P&gt;&lt;P&gt;See if this query helps&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;search query NOT ("" OR "" OR "" OR ....)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 20 Oct 2020 21:53:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525643#M88728</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-10-20T21:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525708#M88736</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;so the search query should actually be part of the subsearch, i.e - [search query].&lt;BR /&gt;The results returned by theses subsearch are intended to be compared with the existing list of pre-defined strings i already have.&lt;/P&gt;&lt;P&gt;Basically an EXCEPT operator between pre-defined strings vs search results should give me the results which did not appear in serach.&lt;/P&gt;&lt;P&gt;How do i do that ?&lt;/P&gt;&lt;P&gt;The query you mentioned above has the search at the outside which in my case needs to be inside&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 08:38:24 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525708#M88736</guid>
      <dc:creator>SoumyaSengupta9</dc:creator>
      <dc:date>2020-10-21T08:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525795#M88742</link>
      <description>&lt;P&gt;My example query compares search results to an existing list of pre-defined strings you already have.&lt;/P&gt;&lt;P&gt;The NOT operator is the EXCEPT operator you seek.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 13:41:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525795#M88742</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-10-21T13:41:36Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525800#M88743</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/213957"&gt;@richgalloway&lt;/a&gt;&amp;nbsp;i want the final values from the pre-defined list of values which don't appear on the search - not the other way round.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 13:53:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/525800#M88743</guid>
      <dc:creator>SoumyaSengupta9</dc:creator>
      <dc:date>2020-10-21T13:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: Newbie doubt</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/526048#M88759</link>
      <description>&lt;P&gt;Are the pre-defined strings expect to be in a certain field in the search?&amp;nbsp; I ask because while it's not possible to use&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"foo" NOT [ search ..]&lt;/LI-CODE&gt;&lt;P&gt;it is possible to do&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| inputlookup strings.csv | fields foo
| search foo NOT [ search ...]&lt;/LI-CODE&gt;&lt;P&gt;but that means the pre-defined string would be expected to be in a field called 'foo'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 14:32:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Newbie-doubt/m-p/526048#M88759</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-10-22T14:32:11Z</dc:date>
    </item>
  </channel>
</rss>

