<?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: Adding lookup from external csv to search in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44641#M10523</link>
    <description>&lt;P&gt;That looks very promising I'll look tomorrow&lt;/P&gt;</description>
    <pubDate>Thu, 23 May 2013 20:36:12 GMT</pubDate>
    <dc:creator>mplungjan</dc:creator>
    <dc:date>2013-05-23T20:36:12Z</dc:date>
    <item>
      <title>Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44636#M10518</link>
      <description>&lt;P&gt;I would like to do this permanently but let us try it on the command line first.&lt;/P&gt;

&lt;P&gt;command:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;source="C:\\..." | rex "^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) (?&amp;lt;user&amp;gt;[0-9\-]*) (?&amp;lt;profile&amp;gt;[0-9\-]*) (?&amp;lt;timestamp&amp;gt;\[[^\]]+\]) (?&amp;lt;url&amp;gt;\"[^\"]+\") (?&amp;lt;http_status&amp;gt;[0-9\-]+) (?&amp;lt;bytes&amp;gt;[0-9\-]+) (\"[^\"]+\") (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") (?&amp;lt;processing_time&amp;gt;[0-9\-]+) (?&amp;lt;registrant&amp;gt;\"[^\"]+\") (?&amp;lt;forward_for&amp;gt;[0-9\.\-]+)"  | lookup registrant.csv registrant
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;input, apache custom log&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;1.1.1.1 - - [24/Apr/2013:16:10:08 +0200] "GET /someurl HTTP/1.1" 200 278356 "-" "some useragent" 123 "9999" 111.222.333.444
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Lookup file:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;registrant,fullname
9999,John Doe
7777,Jane Doe
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;OL&gt;
&lt;LI&gt;where do I save registrant.csv? I put it in \etc\apps\search\local and \etc\system\lookups&lt;/LI&gt;
&lt;LI&gt;where would I see John Doe in the output if the above worked?&lt;/LI&gt;
&lt;/OL&gt;

&lt;P&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;So I tried the suggestion given. &lt;/P&gt;

&lt;P&gt;In etc\system\lookups\registrants.csv I have &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;applicationid,username,email
0,Anonymous,
1234,John Doe,johndoe@xxx.com
4321,Jane Doe,janedoe@xxx.com
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in \etc\system\local\props.conf I have&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[registrants]
EXTRACT-fields=^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) (?&amp;lt;user&amp;gt;[0-9\-]*) (?&amp;lt;profile&amp;gt;[0-9\-]*) (?&amp;lt;timestamp&amp;gt;\[[^\]]+\]) (?&amp;lt;url&amp;gt;\"[^\"]+\") (?&amp;lt;http_status&amp;gt;[0-9\-]+) (?&amp;lt;bytes&amp;gt;[0-9\-]+) (\"[^\"]+\") (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") (?&amp;lt;processing_time&amp;gt;[0-9\-]+) (?&amp;lt;applicationid&amp;gt;\"[^\"]+\") (?&amp;lt;forward_for&amp;gt;[0-9\.\-]+)
LOOKUP-applicationid=registrants username
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;in \etc\system\local\transforms.conf I have&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[registrants]
filename = registrants.csv
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am now getting error on all searches: &lt;CODE&gt;The lookup table 'registrant' does not exist. It is referenced by configuration 'combined_wcookie'.&lt;/CODE&gt; which I have no idea how to get rid of :(((&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;UPDATE&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;The documentation is not clear. It uses the same names for the source file fields and the csv.&lt;/P&gt;

&lt;P&gt;I am now a bit further - one issue is that the csv is forced by splunk to be numeric values since the field I am testing happens to be a number. In the log file it is a string so I have to extract it without quotes.&lt;/P&gt;

&lt;P&gt;I now extract ONE (1) record out of many. It is not encouraging...&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 16:07:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44636#M10518</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-23T16:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44637#M10519</link>
      <description>&lt;P&gt;If you haven't already dived into the whole of docs.splunk.com I highly recommend it. There's loads of info on subjects like this. For instance &lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/Knowledge/Addfieldsfromexternaldatasources"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/Knowledge/Addfieldsfromexternaldatasources&lt;/A&gt; and &lt;A href="http://docs.splunk.com/Documentation/Splunk/5.0.2/Tutorial/Usefieldlookups"&gt;http://docs.splunk.com/Documentation/Splunk/5.0.2/Tutorial/Usefieldlookups&lt;/A&gt; and &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Lookup"&gt;http://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Lookup&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Short answers:&lt;BR /&gt;
 1. Lookup files go in a suitable lookups directory, for instance etc/apps/search/lookups&lt;BR /&gt;
 2. In the field "fullname".&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 19:12:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44637#M10519</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-23T19:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44638#M10520</link>
      <description>&lt;P&gt;Thank. I did read that page from end to end and that is how I uploaded the lookup. What I fail to grasp is the next step. Since my automatic extraction didn't work, the automatic use of lookup also did not work, now I am trying to test the thing with your suggested Rex and that finally started to work, but the lookup seems so unnecessary complicated - as does many things in splunk. Powerful but opaque. I will try again tomorrow. Thanks for the persistent assistance&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 19:38:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44638#M10520</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-23T19:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44639#M10521</link>
      <description>&lt;P&gt;I guess I've been doing this for too long to think of how things else would work - it's pretty straightforward as I see it (except for the idiotic aliasing syntax that's completely the opposite of how one would expect it should be). You need a lookup somewhere and you need to somehow tell Splunk that this lookup should be applied. That's not that complicated, is it? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;As I've said previously the lookup will work as long as there are fields for it to work on, which is why you need a lookup command after an inline rex command.&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 19:59:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44639#M10521</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-23T19:59:39Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44640#M10522</link>
      <description>&lt;P&gt;If you put your registrant.csv file in $SPLUNK_HOME/etc/system/lookups your command should work and you should see "John Doe" in the fields sidebar in a field called fullname. &lt;/P&gt;

&lt;P&gt;You will probably get an info message that looks similar to this: Assuming implicit lookup table with filename 'registrant.csv'.&lt;/P&gt;

&lt;P&gt;The 'proper/complete' way to do this is described in &lt;A href="http://docs.splunk.com/Documentation/Splunk/latest/Knowledge/Addfieldsfromexternaldatasources" target="_blank"&gt;Configure field lookups&lt;/A&gt; in the Knowledge Manager Manual. You will have to create a transforms.conf file and optionally a props.conf file for automated lookups. Those files can also be used to do the field extraction that you're doing in the command for you.&lt;/P&gt;

&lt;P&gt;Both files can be created in $SPLUNK_HOME/etc/system/local/&lt;/P&gt;

&lt;P&gt;To make things easier it makes sense to use sourcetypes in your searches and config files (all your inputs with the same log format should have the same sourcetype) your log looks almost like the predefined access_combined sourcetype but I do not think that the registrant field which is important for you is standard. So I suggest you set it to a custom value e.g. access_custom&lt;/P&gt;

&lt;P&gt;transforms.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[registrant]
filename = registrant.csv
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;props.conf&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;[access_custom]
EXTRACT-fields=^(?&amp;lt;client_ip&amp;gt;[0-9\.]+) (?&amp;lt;user&amp;gt;[0-9\-]*) (?&amp;lt;profile&amp;gt;[0-9\-]*) (?&amp;lt;timestamp&amp;gt;\[[^\]]+\]) (?&amp;lt;url&amp;gt;\"[^\"]+\") (?&amp;lt;http_status&amp;gt;[0-9\-]+) (?&amp;lt;bytes&amp;gt;[0-9\-]+) (\"[^\"]+\") (?&amp;lt;user_agent&amp;gt;\"[^\"]+\") (?&amp;lt;processing_time&amp;gt;[0-9\-]+) (?&amp;lt;registrant&amp;gt;\"[^\"]+\") (?&amp;lt;forward_for&amp;gt;[0-9\.\-]+)
LOOKUP-registrant=registrant registrant
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 13:58:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44640#M10522</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2020-09-28T13:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44641#M10523</link>
      <description>&lt;P&gt;That looks very promising I'll look tomorrow&lt;/P&gt;</description>
      <pubDate>Thu, 23 May 2013 20:36:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44641#M10523</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-23T20:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44642#M10524</link>
      <description>&lt;P&gt;Please see update&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 12:10:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44642#M10524</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-24T12:10:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44643#M10525</link>
      <description>&lt;P&gt;There are 2 things that i can see here the  stanza in props.conf  should match the sourcetype of  your events you are searching it is not related to the name in props  or the lookup table if this is on purpose then you are ok. The 2nd thind is the automatic lookup definition it should  be LOOKUP-&lt;ANY_NAME_YOU_WANT&gt;=registrants applicationid. The error you get is probably because there is a lookup called registrant that is referenced in one of the props files somewhere. You can use $SPLUNK_HOME\bin\splunk btool props list --debug  to see if registrant is referenced somewhere.&lt;/ANY_NAME_YOU_WANT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:21:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44643#M10525</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2013-05-24T14:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44644#M10526</link>
      <description>&lt;P&gt;To refresh  props &amp;amp; transforms search time configs  you can  use the following command  in splunk "| extract reload=True" (or restart Splunk). If you do a search are the  fields that you defined in EXTRACT recognized? This has to work for the automated lookup to work. To check if the lookup configuration is ok you can use the following splunk comman "| inputlookup registrants".&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:25:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44644#M10526</guid>
      <dc:creator>chris</dc:creator>
      <dc:date>2013-05-24T14:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44645#M10527</link>
      <description>&lt;P&gt;Thanks @chris - I'll check it after my vacation. The command line thing is very interesting seeing how hard it seems to get debug information - and the whole issue here is that the fields are only recognised if I do a | rex&lt;BR /&gt;
"^my regex"&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:26:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44645#M10527</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-24T14:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44646#M10528</link>
      <description>&lt;P&gt;You've defined your lookup as "registrants" but somewhere you're referencing it as "registrant" (lacking the s).&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:26:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44646#M10528</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-24T14:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44647#M10529</link>
      <description>&lt;P&gt;Yes, thanks - I realise that. the problem is finding the "somewhere" since it is not in any file so it must be in some cached setting.&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:32:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44647#M10529</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-05-24T14:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44648#M10530</link>
      <description>&lt;P&gt;Ah OK, my apologies - didn't mean to state the obvious, just figured you didn't know about the error &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;You might find the btool utility to be very useful when checking for stuff like this. Runs from the command line and shows you various combined configurations after Splunk has merged them from all possible places, so you don't have to look in 20 different props files for instance...you just need to check the btool output.&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:45:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44648#M10530</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-24T14:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44649#M10531</link>
      <description>&lt;P&gt;For instance, this should prove helpful in your case:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;$SPLUNK_HOME/bin/splunk cmd btool props list --debug
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This will show you all props settings, and info on where they came from (that's what the --debug flag does).&lt;/P&gt;</description>
      <pubDate>Fri, 24 May 2013 14:45:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44649#M10531</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-05-24T14:45:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44650#M10532</link>
      <description>&lt;P&gt;thanks again. Just tried this. I cannot seem to capture the output no matter what I do $SPLUNK_HOME/bin/splunk cmd btool props list --debug &amp;gt; splunk.txt 2&amp;gt;&amp;amp;1 or whatever&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 06:42:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44650#M10532</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-06-03T06:42:28Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44651#M10533</link>
      <description>&lt;P&gt;btool sends its output to stdout so you should be able to capture it. That said, your stderr&amp;gt;stdout redirect comes too late even if btool would be sending to stderr - it should be before you redirect everything into splunk.txt&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 07:02:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44651#M10533</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2013-06-03T07:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44652#M10534</link>
      <description>&lt;P&gt;Does not matter where I put the redirect on my win7 box. I get a popup, a fast scrolling set of data and the popup closes - Why does splunk make me feel like I haven't been around computers since 1986!?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 07:52:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44652#M10534</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-06-03T07:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44653#M10535</link>
      <description>&lt;P&gt;PS: On windows &lt;CODE&gt;command &amp;gt; file.txt 2&amp;gt;&amp;amp;1&lt;/CODE&gt; works in normal circumstances&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 07:59:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44653#M10535</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-06-03T07:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lookup from external csv to search</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44654#M10536</link>
      <description>&lt;P&gt;AHA! : &lt;A href="http://splunk-base.splunk.com/answers/931/how-do-i-prevent-splunk-from-launching-a-separate-cmd-window-on-windows-7-and-others"&gt;http://splunk-base.splunk.com/answers/931/how-do-i-prevent-splunk-from-launching-a-separate-cmd-window-on-windows-7-and-others&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jun 2013 08:06:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Adding-lookup-from-external-csv-to-search/m-p/44654#M10536</guid>
      <dc:creator>mplungjan</dc:creator>
      <dc:date>2013-06-03T08:06:30Z</dc:date>
    </item>
  </channel>
</rss>

