<?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: Splunk Lookup Search Not Working As Expected in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699519#M237456</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Yeah I have it set up in the same way you have shown -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidCollins65_0-1726731731906.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32705i53FC55428A18A630/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidCollins65_0-1726731731906.png" alt="DavidCollins65_0-1726731731906.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I do still get results but the first two field, which should provide details of where the subnets belong just come back as the "notfound" that I have added to the search when the subnets are not part of the lookup file (I am using a dummy subnet that is 100% present in the lookup file).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidCollins65_1-1726732006598.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32706i588AAF9A4D3A318D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidCollins65_1-1726732006598.png" alt="DavidCollins65_1-1726732006598.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 19 Sep 2024 07:46:59 GMT</pubDate>
    <dc:creator>DavidCollins65</dc:creator>
    <dc:date>2024-09-19T07:46:59Z</dc:date>
    <item>
      <title>Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699419#M237431</link>
      <description>&lt;P&gt;Hello - I am trying to construct a search whereby I can do a lookup of a single table, then rename the fields and change how they're displayed, however the lookup and eval commands don't seem to be working as I would like.&amp;nbsp; The main search I am performing is basic,&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt;using some source subnets and then trying to have the lookup reference what area of the business they belong to, below is the lookup portion of my search:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index="logs" sourceip="x.x.x.x" OR destip="x.x.x.x"
| lookup file.csv cidr AS sourceip OUTPUT field_a AS sourceprovider, field_b AS sourcearea, field_c AS sourcezone , field_d AS sourceregion, cidr AS src_cidr
| lookup file.csv cidr AS destip OUTPUT field_a AS destprovider, field_b AS destarea, field_c AS destzone, field_d AS destregion, cidr AS dest_cidr
| fillnull value="none"
| eval src_details_combined=sourceprovider."-".sourcearea."-".sourcezone ."-".sourceregion
| eval dest_details_combined=destprovider."-".destarea."-".destzone."-".destregion
| eval src_details_combined=IF(src_details_combined=="none-none-none-none","notfound",src_details_combined)
| eval dest_details_combined=IF(dest_details_combined=="none-none-none-none","notfound",dest_details_combined)
| stats count values(sourceip) as sourceip values(destip) as destip by src_details_combined, dest_details_combined, rule, dest_port, app
| table src_details_combined, dest_details_combined, app, count&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I run the search I do get some results but the&amp;nbsp;&lt;SPAN&gt;&lt;SPAN class=""&gt; src_details_combined and dest_details_combined fields always return as "notfound" - even though I know the IPs should match in the lookup csv.&amp;nbsp; Can anyone see where I have gone wrong in my search?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 17:40:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699419#M237431</guid>
      <dc:creator>DavidCollins65</dc:creator>
      <dc:date>2024-09-18T17:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699429#M237433</link>
      <description>&lt;P&gt;It is difficult to tell without seeing your events and lookup file values but taking a clue from the field name "cidr", does your lookup file contain CIDR-style values, and if so, have you created a lookup definition with advanced setting for match type CIDR(cidr)?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 16:00:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699429#M237433</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-18T16:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699445#M237440</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; - yes you are correct, that field is populated with subnet values,&amp;nbsp; the lookup file is like this:&lt;BR /&gt;&lt;BR /&gt;cidr&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN&gt;provider&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;area&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;zone&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; region&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;1.1.1.1/24&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Unit 1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Finance&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; US&lt;/P&gt;&lt;P&gt;2.2.2.2/27&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Unit 2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HR&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 16&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;UK&lt;BR /&gt;&lt;BR /&gt;I am unsure of how to go about&amp;nbsp;&lt;SPAN&gt;creating a lookup definition with advanced setting for match type CIDR(cidr)?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 17:29:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699445#M237440</guid>
      <dc:creator>DavidCollins65</dc:creator>
      <dc:date>2024-09-18T17:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699449#M237441</link>
      <description>&lt;P&gt;Under settings, there is an option to change Lookups, it is there that you will find Lookup definitions - add a new one specifying the csv lookup file you want to define.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1726682339743.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32691iA5181E6CEFBDC4C1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1726682339743.png" alt="ITWhisperer_0-1726682339743.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 17:59:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699449#M237441</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-09-18T17:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699456#M237442</link>
      <description>&lt;P&gt;Thanks for that info, I have added the lookup definitions but the results are still outputting the same.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Sep 2024 19:30:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699456#M237442</guid>
      <dc:creator>DavidCollins65</dc:creator>
      <dc:date>2024-09-18T19:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699492#M237449</link>
      <description>&lt;P&gt;When you define lookup, did you set match type to CIDR? This is in Advanced options.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="cidr-match.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32702i39F2A6A30CF739D1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="cidr-match.png" alt="cidr-match.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 05:59:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699492#M237449</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-09-19T05:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699519#M237456</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/33901"&gt;@yuanliu&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Yeah I have it set up in the same way you have shown -&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidCollins65_0-1726731731906.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32705i53FC55428A18A630/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidCollins65_0-1726731731906.png" alt="DavidCollins65_0-1726731731906.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I do still get results but the first two field, which should provide details of where the subnets belong just come back as the "notfound" that I have added to the search when the subnets are not part of the lookup file (I am using a dummy subnet that is 100% present in the lookup file).&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="DavidCollins65_1-1726732006598.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/32706i588AAF9A4D3A318D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="DavidCollins65_1-1726732006598.png" alt="DavidCollins65_1-1726732006598.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 Sep 2024 07:46:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699519#M237456</guid>
      <dc:creator>DavidCollins65</dc:creator>
      <dc:date>2024-09-19T07:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699659#M237510</link>
      <description>&lt;P&gt;Forget the rest of search. &amp;nbsp;What do you get from the following?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="logs" sourceip="x.x.x.x" OR destip="x.x.x.x"
| lookup file.csv cidr AS sourceip OUTPUT provider AS sourceprovider, area AS sourcearea, zone AS sourcezone , region AS sourceregion, cidr AS src_cidr
| lookup file.csv cidr AS destip OUTPUT provider AS destprovider, area AS destarea, zone AS destzone, region AS destregion, cidr AS dest_cidr
| table sourceip sourceprovider sourcearea sourcezone sourceregion src_cidr
  destip destprovider destarea destzone destregion dest_cidr&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the output correct?&lt;/P&gt;&lt;P&gt;Using your mock lookup data, I made the following emulation&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| makeresults format=csv data="sourceip, destip
1.1.1.116,10.5.5.5
10.0.0.5,2.2.2.3
2.2.2.8, 1.1.1.90
192.168.8.1,10.6.0.10"
``` the above emulates
index="logs" sourceip="x.x.x.x" OR destip="x.x.x.x"
```
| lookup file.csv cidr AS sourceip OUTPUT provider AS sourceprovider, area AS sourcearea, zone AS sourcezone , region AS sourceregion, cidr AS src_cidr
| lookup file.csv cidr AS destip OUTPUT provider AS destprovider, area AS destarea, zone AS destzone, region AS destregion, cidr AS dest_cidr
| fields sourceip sourceprovider sourcearea sourcezone sourceregion src_cidr
  destip destprovider destarea destzone destregion dest_cidr&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is what I get, exactly as expected&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;sourceip&lt;/TD&gt;&lt;TD&gt;sourceprovider&lt;/TD&gt;&lt;TD&gt;sourcearea&lt;/TD&gt;&lt;TD&gt;sourcezone&lt;/TD&gt;&lt;TD&gt;sourceregion&lt;/TD&gt;&lt;TD&gt;src_cidr&lt;/TD&gt;&lt;TD&gt;destip&lt;/TD&gt;&lt;TD&gt;destprovider&lt;/TD&gt;&lt;TD&gt;destarea&lt;/TD&gt;&lt;TD&gt;destzone&lt;/TD&gt;&lt;TD&gt;destregion&lt;/TD&gt;&lt;TD&gt;dest_cidr&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1.1.1.116&lt;/TD&gt;&lt;TD&gt;Unit&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Finance&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1.1.1.1/24&lt;/TD&gt;&lt;TD&gt;10.5.5.5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;10.0.0.5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2.2.2.3&lt;/TD&gt;&lt;TD&gt;Unit&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;HR&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;2.2.2.2/27&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2.2.2.8&lt;/TD&gt;&lt;TD&gt;Unit&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;HR&lt;/TD&gt;&lt;TD&gt;16&lt;/TD&gt;&lt;TD&gt;2.2.2.2/27&lt;/TD&gt;&lt;TD&gt;1.1.1.90&lt;/TD&gt;&lt;TD&gt;Unit&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;Finance&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;1.1.1.1/24&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;192.168.8.1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;10.6.0.10&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Fri, 20 Sep 2024 06:56:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699659#M237510</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2024-09-20T06:56:15Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Lookup Search Not Working As Expected</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699750#M237530</link>
      <description>&lt;P&gt;Thank you all very much for the help, so the issue was related to the solution&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;gave. In my search I was referencing the table for the lookup, that should have been the definition that I created.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for all the help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Sep 2024 09:18:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Splunk-Lookup-Search-Not-Working-As-Expected/m-p/699750#M237530</guid>
      <dc:creator>DavidCollins65</dc:creator>
      <dc:date>2024-09-22T09:18:13Z</dc:date>
    </item>
  </channel>
</rss>

