<?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: How do you find data/values in a lookup that do not exist in the logs? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396627#M115162</link>
    <description>&lt;P&gt;Can you please try with below scenarios?&lt;/P&gt;

&lt;P&gt;1) remove below condition.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; | where isnull(temp1) 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;2) update condition.&lt;/P&gt;

&lt;P&gt;old :   &lt;CODE&gt;| where isnull(temp1)&lt;/CODE&gt;&lt;/P&gt;

&lt;P&gt;new:  &lt;CODE&gt;| where isnull(temp2)&lt;/CODE&gt; &lt;/P&gt;</description>
    <pubDate>Tue, 20 Nov 2018 06:38:36 GMT</pubDate>
    <dc:creator>kamlesh_vaghela</dc:creator>
    <dc:date>2018-11-20T06:38:36Z</dc:date>
    <item>
      <title>How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396606#M115141</link>
      <description>&lt;P&gt;We have a lookup file that has a list of series stored in a field — TS_SERIES_ID. We want to find the count of series that don't exist in logs and we used the below query to achieve the same.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup tss_usage_csv | table TS_SERIES_ID
| search NOT [search index=web_timeseries  | mvexpand SeriesUT.series{}  | fields SeriesUT.series{} |rename SeriesUT.series{} as TS_SERIES_ID] | stats distinct_count(TS_SERIES_ID)
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Issue : The results are getting truncated because we cannot have more than 10K results from the subsearch (We need this value to be around 300K and maximum can be set to 10500 in limits.conf). &lt;/P&gt;

&lt;P&gt;Can you please let us know if there is any other way to achieve this?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:04:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396606#M115141</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2020-09-29T22:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396607#M115142</link>
      <description>&lt;P&gt;HI @AnmolKohli&lt;/P&gt;

&lt;P&gt;Can you please try this?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup tss_usage_csv | table TS_SERIES_ID
| join type=left TS_SERIES_ID [ search index=web_timeseries | mvexpand SeriesUT.series{} | fields SeriesUT.series{} |rename SeriesUT.series{} as TS_SERIES_ID | eval temp=1 ] | where isnull(temp) | stats distinct_count(TS_SERIES_ID)
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Nov 2018 08:47:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396607#M115142</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-19T08:47:46Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396608#M115143</link>
      <description>&lt;P&gt;Try the search below. It simply appends the 2 lists of series together (so no expensive joins or restricted sub searches) and then counts the total occurrence of each TS_SERIES_ID, filtering for those serie IDs that came from the lookup and only occurred once in the combined list (ie they did not occur in the list from the logs).&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup tss_usage_csv 
| table TS_SERIES_ID
| eval source=lookup
| append [ 
        search index=web_timeseries | mvexpand SeriesUT.series{} | fields SeriesUT.series{} |rename SeriesUT.series{} as TS_SERIES_ID | eval source=logs ] 
| eventstats count by TS_SERIES_ID
| where source=lookup count=1
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:04:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396608#M115143</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2020-09-29T22:04:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396609#M115144</link>
      <description>&lt;P&gt;Not working.Getting below error :-&lt;/P&gt;

&lt;P&gt;Subsearch produced 50000 results,truncating to maxout 50000&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:01:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396609#M115144</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T09:01:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396610#M115145</link>
      <description>&lt;P&gt;Not working.Getting below error :-&lt;/P&gt;

&lt;P&gt;Subsearch produced 50000 results,truncating to maxout 50000&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:02:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396610#M115145</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T09:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396611#M115146</link>
      <description>&lt;P&gt;Ok, my bad, apparently that limit also applies when doing append.&lt;/P&gt;

&lt;P&gt;Is the lookup also that big? Otherwise, try swapping log search and inputlookup:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;  index=web_timeseries | mvexpand SeriesUT.series{} | fields SeriesUT.series{} |rename SeriesUT.series{} as TS_SERIES_ID | eval source=logs
 | append [ 
         | inputlookup tss_usage_csv 
 | table TS_SERIES_ID
 | eval source=lookup ] 
 | eventstats count by TS_SERIES_ID
 | where source=lookup count=1
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Does that log search return only unique series, or is that full of duplicates? Then you could also throw in a dedup (as you're only interested in the unique series anyway.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:10:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396611#M115146</guid>
      <dc:creator>FrankVl</dc:creator>
      <dc:date>2018-11-19T09:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396612#M115147</link>
      <description>&lt;P&gt;Lookup has 571007 rows &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Any other way to achieve this?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:15:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396612#M115147</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T09:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396613#M115148</link>
      <description>&lt;P&gt;The lookup has unique values.&lt;/P&gt;

&lt;P&gt;Can we increase the limit for subsearch from existing 50K to 500K? Will that impact performance or affect other searches?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:41:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396613#M115148</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T09:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396614#M115149</link>
      <description>&lt;P&gt;HI @AnmolKohli&lt;/P&gt;

&lt;P&gt;Can you please try below searches?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup tss_usage_csv 
| table TS_SERIES_ID 
| eval temp1=1 
| append 
    [ search index=web_timeseries 
    | mvexpand SeriesUT.series{} 
    | fields SeriesUT.series{} 
    | rename SeriesUT.series{} as TS_SERIES_ID 
    | eval temp2=1 ] 
| stats values(temp1) as temp1 values(temp2) as temp2 by TS_SERIES_ID 
| where isnull(temp2) 
| stats count(TS_SERIES_ID) as count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;AND&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=web_timeseries 
    | mvexpand SeriesUT.series{} 
    | fields SeriesUT.series{} 
    | rename SeriesUT.series{} as TS_SERIES_ID 
    | eval temp2=1
| append 
    [ | inputlookup tss_usage_csv 
| table TS_SERIES_ID 
| eval temp1=1  ] 
| stats values(temp1) as temp1 values(temp2) as temp2 by TS_SERIES_ID 
| where isnull(temp1) 
| stats count(TS_SERIES_ID) as count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Nov 2018 09:54:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396614#M115149</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-19T09:54:40Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396615#M115150</link>
      <description>&lt;P&gt;Same error &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 11:15:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396615#M115150</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T11:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396616#M115151</link>
      <description>&lt;P&gt;Can you please provide Output from below searches?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=web_timeseries 
| mvexpand SeriesUT.series{} 
| fields SeriesUT.series{} 
| rename SeriesUT.series{} as TS_SERIES_ID 
| stats distinct_count(TS_SERIES_ID) as count 

| inputlookup tss_usage_csv 
| table TS_SERIES_ID 
| stats distinct_count(TS_SERIES_ID) as count 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Nov 2018 11:33:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396616#M115151</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-19T11:33:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396617#M115152</link>
      <description>&lt;P&gt;Running the query for last 7 days :&lt;/P&gt;

&lt;P&gt;Output of #1 - 215830&lt;/P&gt;

&lt;P&gt;Output of #2 - 571007&lt;/P&gt;

&lt;P&gt;Both values are correct. We just need to subtract them now (not sure how) &lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 11:37:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396617#M115152</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-19T11:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396618#M115153</link>
      <description>&lt;P&gt;HI @AnmolKohli&lt;/P&gt;

&lt;P&gt;Can you please try below searches?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=web_timeseries 
| mvexpand SeriesUT.series{} 
| fields SeriesUT.series{} 
| rename SeriesUT.series{} as TS_SERIES_ID 
| eval temp2=1
| append 
[ 
    | inputlookup tss_usage_csv 
    | table TS_SERIES_ID 
    | eval a=1 | accum a | eval subset=a%50000 | stats values(TS_SERIES_ID) as TS_SERIES_ID by subset
    | eval temp1=1  
]
| mvexpand TS_SERIES_ID
| stats values(temp1) as temp1 values(temp2) as temp2 by TS_SERIES_ID 
| where isnull(temp1) 
| stats count(TS_SERIES_ID) as count
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Nov 2018 12:22:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396618#M115153</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-19T12:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396619#M115154</link>
      <description>&lt;P&gt;Why not use natural usage of lookup? If you add a control value for a match, you can do it easy.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| inputlookup mylook
| eval flag="y"
| outputlookup mylook
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then in the search:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| amazing search...
| lookup mylook ... OUTPUT flag
| search NOT flag="*"
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;It will run in the indexer because the late search but you will have an output of values that are not in the lookup.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Nov 2018 16:13:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396619#M115154</guid>
      <dc:creator>osakachan</dc:creator>
      <dc:date>2018-11-19T16:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396620#M115155</link>
      <description>&lt;P&gt;Output is not correct.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 04:47:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396620#M115155</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-20T04:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396621#M115156</link>
      <description>&lt;P&gt;Any other way to achieve this?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 04:51:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396621#M115156</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-20T04:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396622#M115157</link>
      <description>&lt;P&gt;@AnmolKohli&lt;/P&gt;

&lt;P&gt;It should work. Can you please try below search?&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index=web_timeseries 
| mvexpand SeriesUT.series{} 
| fields SeriesUT.series{} 
| rename SeriesUT.series{} as TS_SERIES_ID 
| eval temp2=1
| append 
[ 
 | inputlookup tss_usage_csv 
 | table TS_SERIES_ID 
 | eval a=1 | accum a | eval subset=a%50000 | stats values(TS_SERIES_ID) as TS_SERIES_ID by subset
 | eval temp1=1  
]
| stats values(temp1) as temp1 values(temp2) as temp2 by TS_SERIES_ID 
| where isnull(temp1) 
| stats count(TS_SERIES_ID) as count
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you please let me know how you are comparing your data for verification?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 05:21:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396622#M115157</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-20T05:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396623#M115158</link>
      <description>&lt;P&gt;The query runs for 2 minutes and displays the correct results - 200K results but at the very last second the results drop to 24.&lt;/P&gt;

&lt;P&gt;Results should be - (Subtract the values from below 2 queries)&lt;/P&gt;

&lt;P&gt;index=web_timeseries &lt;BR /&gt;
 | mvexpand SeriesUT.series{} &lt;BR /&gt;
 | fields SeriesUT.series{} &lt;BR /&gt;
 | rename SeriesUT.series{} as TS_SERIES_ID &lt;BR /&gt;
 | stats distinct_count(TS_SERIES_ID) as count &lt;/P&gt;

&lt;P&gt;| inputlookup tss_usage_csv &lt;BR /&gt;
 | table TS_SERIES_ID &lt;BR /&gt;
 | stats distinct_count(TS_SERIES_ID) as count &lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 22:05:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396623#M115158</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2020-09-29T22:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396624#M115159</link>
      <description>&lt;P&gt;Also I get errors when running the query - &lt;/P&gt;

&lt;P&gt;Subsearch produced 50000 results,truncating to maxout&lt;/P&gt;</description>
      <pubDate>Tue, 20 Nov 2018 05:34:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396624#M115159</guid>
      <dc:creator>AnmolKohli</dc:creator>
      <dc:date>2018-11-20T05:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do you find data/values in a lookup that do not exist in the logs?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396625#M115160</link>
      <description>&lt;P&gt;Can you please do the minor change in search?&lt;/P&gt;

&lt;P&gt;OLD&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval subset=a%50000 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;NEW&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval subset=a%49500 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Nov 2018 05:52:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-you-find-data-values-in-a-lookup-that-do-not-exist-in-the/m-p/396625#M115160</guid>
      <dc:creator>kamlesh_vaghela</dc:creator>
      <dc:date>2018-11-20T05:52:29Z</dc:date>
    </item>
  </channel>
</rss>

