<?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 How can I find unique IDs that match one search but not another? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233807#M69462</link>
    <description>&lt;P&gt;I have events with this structure: &lt;CODE&gt;{ id, version, event_type }&lt;/CODE&gt;. The &lt;CODE&gt;id&lt;/CODE&gt; field corresponds to a device ID. I'm trying to find all the unique devices (i.e., unique &lt;CODE&gt;id&lt;/CODE&gt;s) that are still using version=V1 vs those that have upgraded to V2.&lt;/P&gt;

&lt;P&gt;To find devices still using V1, I could do a search like &lt;CODE&gt;index=my_index version="V1" | dedup id&lt;/CODE&gt;. The problem is that will match devices that sent some events while running V1, but have since upgraded to V2.&lt;/P&gt;

&lt;P&gt;So let's suppose for example I have devices &lt;CODE&gt;a,b,c&lt;/CODE&gt;. &lt;CODE&gt;a&lt;/CODE&gt; has only used V1. &lt;CODE&gt;b&lt;/CODE&gt; has used V1 and has since upgraded to V2. &lt;CODE&gt;c&lt;/CODE&gt; has only sent events while using V2. So the set of events might look like this:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=a, version=V1, event_type='alice' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=a, version=V1, event_type='bob' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=b, version=V1, event_type='carl' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=b, version=V2, event_type='dora' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=c, version=V2, event_type='eve' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=c, version=V2, event_type='fred' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;I'm trying to write 2 searches, one that will just return &lt;CODE&gt;a&lt;/CODE&gt; (who has only used V1), and one which will return &lt;CODE&gt;b&lt;/CODE&gt; &amp;amp; &lt;CODE&gt;c&lt;/CODE&gt; (both of which have used V2).&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=my_index version="V2" | dedup id&lt;/CODE&gt; works fine for the second case (and returns &lt;CODE&gt;[b,c]&lt;/CODE&gt;).&lt;BR /&gt;
The similar &lt;CODE&gt;index=my_index version="V1" | dedup id&lt;/CODE&gt; for the first case returns &lt;CODE&gt;[a,b]&lt;/CODE&gt; and not just &lt;CODE&gt;[a]&lt;/CODE&gt;, so that's not the search I want.&lt;/P&gt;

&lt;P&gt;Is there any way I can exclude &lt;CODE&gt;b&lt;/CODE&gt; from the search, by excluding any events where the &lt;CODE&gt;id&lt;/CODE&gt; field is also present in other events that have non-matching criteria? I.e. a search that dedups all events that match &lt;CODE&gt;version=V1&lt;/CODE&gt; (events 1,2,3), but then excludes &lt;CODE&gt;b&lt;/CODE&gt; because event 3 has &lt;CODE&gt;id=b&lt;/CODE&gt;, &lt;CODE&gt;version=V2&lt;/CODE&gt;?&lt;/P&gt;

&lt;P&gt;I've seen some similar questions that do something like &lt;CODE&gt;| search NOT [search ... ]&lt;/CODE&gt; but I can't see how to make that work here, where I'm not just looking at events, but trying to compare two dedup'd lists.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Aug 2016 16:07:51 GMT</pubDate>
    <dc:creator>samdavies</dc:creator>
    <dc:date>2016-08-19T16:07:51Z</dc:date>
    <item>
      <title>How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233807#M69462</link>
      <description>&lt;P&gt;I have events with this structure: &lt;CODE&gt;{ id, version, event_type }&lt;/CODE&gt;. The &lt;CODE&gt;id&lt;/CODE&gt; field corresponds to a device ID. I'm trying to find all the unique devices (i.e., unique &lt;CODE&gt;id&lt;/CODE&gt;s) that are still using version=V1 vs those that have upgraded to V2.&lt;/P&gt;

&lt;P&gt;To find devices still using V1, I could do a search like &lt;CODE&gt;index=my_index version="V1" | dedup id&lt;/CODE&gt;. The problem is that will match devices that sent some events while running V1, but have since upgraded to V2.&lt;/P&gt;

&lt;P&gt;So let's suppose for example I have devices &lt;CODE&gt;a,b,c&lt;/CODE&gt;. &lt;CODE&gt;a&lt;/CODE&gt; has only used V1. &lt;CODE&gt;b&lt;/CODE&gt; has used V1 and has since upgraded to V2. &lt;CODE&gt;c&lt;/CODE&gt; has only sent events while using V2. So the set of events might look like this:&lt;/P&gt;

&lt;OL&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=a, version=V1, event_type='alice' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=a, version=V1, event_type='bob' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=b, version=V1, event_type='carl' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=b, version=V2, event_type='dora' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=c, version=V2, event_type='eve' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;CODE&gt;{ id=c, version=V2, event_type='fred' }&lt;/CODE&gt;&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;I'm trying to write 2 searches, one that will just return &lt;CODE&gt;a&lt;/CODE&gt; (who has only used V1), and one which will return &lt;CODE&gt;b&lt;/CODE&gt; &amp;amp; &lt;CODE&gt;c&lt;/CODE&gt; (both of which have used V2).&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;index=my_index version="V2" | dedup id&lt;/CODE&gt; works fine for the second case (and returns &lt;CODE&gt;[b,c]&lt;/CODE&gt;).&lt;BR /&gt;
The similar &lt;CODE&gt;index=my_index version="V1" | dedup id&lt;/CODE&gt; for the first case returns &lt;CODE&gt;[a,b]&lt;/CODE&gt; and not just &lt;CODE&gt;[a]&lt;/CODE&gt;, so that's not the search I want.&lt;/P&gt;

&lt;P&gt;Is there any way I can exclude &lt;CODE&gt;b&lt;/CODE&gt; from the search, by excluding any events where the &lt;CODE&gt;id&lt;/CODE&gt; field is also present in other events that have non-matching criteria? I.e. a search that dedups all events that match &lt;CODE&gt;version=V1&lt;/CODE&gt; (events 1,2,3), but then excludes &lt;CODE&gt;b&lt;/CODE&gt; because event 3 has &lt;CODE&gt;id=b&lt;/CODE&gt;, &lt;CODE&gt;version=V2&lt;/CODE&gt;?&lt;/P&gt;

&lt;P&gt;I've seen some similar questions that do something like &lt;CODE&gt;| search NOT [search ... ]&lt;/CODE&gt; but I can't see how to make that work here, where I'm not just looking at events, but trying to compare two dedup'd lists.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 16:07:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233807#M69462</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-19T16:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233808#M69463</link>
      <description>&lt;P&gt;Here's one solution, which is not as efficient as yours since it reads more data, but it should give the desired results.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=my_index | dedup id | where version=V1 | ...
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Aug 2016 16:17:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233808#M69463</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-08-19T16:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233809#M69464</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;P&gt;*&lt;STRONG&gt;&lt;EM&gt;UPDATED&lt;/EM&gt;&lt;/STRONG&gt;*&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=my_index | rex field=version "(?&amp;lt;ver_no&amp;gt;\d+)" | eventstats max(ver_no) as current_version min(ver_no) as oldest_version by id | where current_version=1 AND current_version=oldest_version 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Aug 2016 16:49:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233809#M69464</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-08-19T16:49:01Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233810#M69465</link>
      <description>&lt;P&gt;Where does the "ver_no" value come from in this example? Should that be specified as the output from the &lt;CODE&gt;rex&lt;/CODE&gt; command somehow?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:03:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233810#M69465</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-19T17:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233811#M69466</link>
      <description>&lt;P&gt;See the edited answer.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:05:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233811#M69466</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2016-08-19T17:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233812#M69467</link>
      <description>&lt;P&gt;Try the edited version &lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:07:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233812#M69467</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-08-19T17:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233813#M69468</link>
      <description>&lt;P&gt;updated one - &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=uniqueidd | rex field=_raw "version=(?&amp;lt;version_number&amp;gt;[^,]+)" | eventstats max(version_number) as current_version min(version_number) as older_version by id | where like(current_version,"%1.10%") OR like(current_version,"%1.11%") OR like(current_version,"%1.12%") AND current_version=older_version | table current_version older_version _raw
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:50:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233813#M69468</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-19T17:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233814#M69469</link>
      <description>&lt;P&gt;Thanks, but that's not going to help in the case of my real data. Each device has sent many events (not just one at each level). So we could have had device B have sent 10 events at V1 and then 20 events at V2. I think this query would still pick out B.&lt;/P&gt;

&lt;P&gt;Sorry if the question was misleading, I tried to make the example simpler so it was easier to explain.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:58:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233814#M69469</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-19T17:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233815#M69470</link>
      <description>&lt;P&gt;Thanks. Unfortunately when I try this query it returns no results.&lt;/P&gt;

&lt;P&gt;What is Splunk operating on after the |dedup command? How does this pick out the right set of IDs?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 17:59:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233815#M69470</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-19T17:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233816#M69471</link>
      <description>&lt;P&gt;Actually you explained the issue very clearly and nicely. &lt;/P&gt;

&lt;P&gt;Ok, let's try this ... &lt;BR /&gt;
If we use Uniq command, it will get us only "a"..&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=my_index id=a | 
 | uniq|table id
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 19 Aug 2016 18:28:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233816#M69471</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-19T18:28:35Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233817#M69472</link>
      <description>&lt;P&gt;Hi SamDavies, may we know&lt;BR /&gt;
1) you have only two versions or more than two.&lt;BR /&gt;
2). Can you give us the sample version numbers please.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 20:16:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233817#M69472</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-19T20:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233818#M69473</link>
      <description>&lt;P&gt;The 'version' field is actually a bit more complicated that I put in my example above. There are lots of different versions of the app, and devices may have sent multiple events from older versions before upgrading to newer versions.&lt;/P&gt;

&lt;P&gt;I am trying to filter out any devices that have sent events from the newer versions.&lt;/P&gt;

&lt;P&gt;The exact search terms I'm using for the versions are&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;older versions: `(version="1.10*" OR version="1.11*" OR version="1.12*")`
newer versions: `(version="1.13*" OR version="1.14*" OR version="1.15*")`
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 11:13:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233818#M69473</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-22T11:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233819#M69474</link>
      <description>&lt;P&gt;Thanks - I've added this to a comment on the question (I can't see how to edit the question, sorry).&lt;/P&gt;

&lt;P&gt;1) There are more than two versions for each of the set of older versions and set of newer versions.&lt;BR /&gt;
2) Included in a comment on the question, but for example&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;older versions: (version="1.10*" OR version="1.11*" OR version="1.12*")
newer versions: (version="1.13*" OR version="1.14*" OR version="1.15*")
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 11:15:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233819#M69474</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-22T11:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233820#M69475</link>
      <description>&lt;P&gt;try this - &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;sourcetype=uniqueidd | rex field=_raw "version=(?&amp;lt;version_number&amp;gt;[^,]+)" | eventstats max(version_number) as current_version min(version_number) as older_version by id | where like(current_version,"%1.10%") OR like(current_version,"%1.11%") OR like(current_version,"%1.12%") AND current_version=older_version | table current_version older_version _raw
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 12:35:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233820#M69475</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-22T12:35:27Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233821#M69476</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=my_index | rex field=version "(?&amp;lt;ver_no&amp;gt;\d+)" | convert auto(ver_no) | eventstats max(ver_no) as current_version by id | where NOT (current_version=version)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:09:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233821#M69476</guid>
      <dc:creator>sundareshr</dc:creator>
      <dc:date>2016-08-22T13:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233822#M69477</link>
      <description>&lt;P&gt;Thanks - this works.&lt;/P&gt;

&lt;P&gt;I've tweaked the search a bit - I don't think you need to capture 'older_version' or compare it to current_version - the condition that current_version (i.e. the most recent version) is in the set is enough.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 10:40:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233822#M69477</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2020-09-29T10:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233823#M69478</link>
      <description>&lt;P&gt;Thank-you - this approach works (it's similar to the one inventsekar has posted below also).&lt;/P&gt;

&lt;P&gt;Using &lt;CODE&gt;max() ... by id&lt;/CODE&gt; to get the most recent version &lt;EM&gt;from that ID&lt;/EM&gt; was the key thing - that's really handy thing to learn about, thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 13:49:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233823#M69478</guid>
      <dc:creator>samdavies</dc:creator>
      <dc:date>2016-08-22T13:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: How can I find unique IDs that match one search but not another?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233824#M69479</link>
      <description>&lt;P&gt;Great to know that we found out the solution !!! as you are new member to this forum, you can accept this as an answer (and you can upvote as well &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt; )&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 14:18:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-find-unique-IDs-that-match-one-search-but-not-another/m-p/233824#M69479</guid>
      <dc:creator>inventsekar</dc:creator>
      <dc:date>2016-08-22T14:18:43Z</dc:date>
    </item>
  </channel>
</rss>

