<?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 get data lookup from other remote peer? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646184#M223684</link>
    <description>&lt;P&gt;I have SH socsiemfe as a search peer. But what is not clear to me is that your original query is expected to work, if when I run the first line it returns nothing.&lt;/P&gt;&lt;P&gt;When you build a query, you test it as you go along. First part 1 should work, then part 2, then part 3. If one part of the query does not return data, why then are we going to create a macro if part 1 does not return anything.&lt;/P&gt;&lt;P&gt;Do you understand my doubt?&lt;/P&gt;</description>
    <pubDate>Wed, 07 Jun 2023 17:38:22 GMT</pubDate>
    <dc:creator>rodrigomanrique</dc:creator>
    <dc:date>2023-06-07T17:38:22Z</dc:date>
    <item>
      <title>How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170160#M48679</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Can Splunk get data lookup from remote peer server ?&lt;BR /&gt;The problem is, because we have many Splunk servers, so if the lookup is located to each servers, then when we want to manually update it, we have to update to all servers.&lt;BR /&gt;What we want is to maintance the Splunk lookup table in one server and all other servers get data from that server.&lt;/P&gt;
&lt;P&gt;I try this query but it is not working&lt;BR /&gt;* | head 1 | eval fieldinput="abc" | lookup local=false lookup-table-a fieldinput AS fieldinput OUTPUTNEW fieldoutput AS fieldoutput&lt;/P&gt;
&lt;P&gt;The error is &lt;BR /&gt;Error in 'lookup' command: The lookup table 'lookup-table-a' does not exist.&lt;/P&gt;
&lt;P&gt;Well lookup-table-a is located in server a. I have the query in server b which the search peer to server a is enabled.&lt;/P&gt;
&lt;P&gt;So, Can Splunk get data lookup from remote peer server ?&lt;/P&gt;</description>
      <pubDate>Mon, 22 May 2023 12:54:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170160#M48679</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2023-05-22T12:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170161#M48680</link>
      <description>&lt;P&gt;This configuration is supported, so you must not have it configured correctly.  See this post:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://answers.splunk.com/answers/28541/lookup-table-does-not-exist"&gt;http://answers.splunk.com/answers/28541/lookup-table-does-not-exist&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;You should check permissions on the lookup, and make sure the lookup config is in the right location.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2014 14:27:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170161#M48680</guid>
      <dc:creator>lukejadamec</dc:creator>
      <dc:date>2014-02-28T14:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170162#M48681</link>
      <description>&lt;P&gt;Short answer: no, not natively. You can achieve this, kind of, using dynamic lookups.&lt;/P&gt;

&lt;P&gt;Longer answer: We have this exact problem in our environment, and I've spent a fair amount of time dealing with it. The problem is, like it says in the post @lukejadamec links to, that when you issue a search on a search head, that search head will put all its knowledge objects into a bundle that will be sent out to its search peers. When the search peers process this search, &lt;STRONG&gt;only the knowledge objects in this bundle will be used&lt;/STRONG&gt;. So whatever objects exist locally on the search peer, such as lookups, will/can not be used in the search. While I do not know the full reasons behind why only this mode of operation is supported, one good reason is that since Splunk distributed search operates in a map/reduce fashion, sooner or later when a non-streaming ("reduce type") command is encountered in the search, the search peer is going to return its results to the search head which will carry out the rest of the search centrally. Couple this with knowledge objects that exist on different Splunk instances and the results can be pretty confusing unless you understand fully what is going on. In your example, for instance, only the very first part of the search (&lt;CODE&gt;"*"&lt;/CODE&gt;) would be carried out on the search peers while the &lt;CODE&gt;head 1&lt;/CODE&gt; command will cause the rest to be run on the search head, because it's only possible to know which 1 event to present by combining the results from all search peers.&lt;/P&gt;

&lt;P&gt;If you DO know how to deal with this though, there are ways to work around this limitation. Specifically, what I did was to create dynamic lookups that work similar to Splunk's regular static lookups - i.e. read CSV formatted input on stdin, match this against a CSV formatted file on the file system, populate the requested fields in the CSV from stdin and finally send the result to stdout. What will happen when you use this in a distributed search is that instead of having Splunk send out a static CSV lookup to the search peer it will now send the dynamic lookup script instead. This script is then free to read files on the search peer's local filesystem when it's run, thus making it possible for the lookup to return search peer local values even though it was invoked from a search head.&lt;/P&gt;

&lt;P&gt;I pasted a version of this dynamic lookup script here: &lt;A href="http://answers.splunk.com/answers/85324/regular-expression-in-my-lookup-table"&gt;http://answers.splunk.com/answers/85324/regular-expression-in-my-lookup-table&lt;/A&gt;&lt;BR /&gt;
It's a modified version that can perform regex matches.&lt;/P&gt;

&lt;P&gt;But again, NOTE that when you do this it becomes VERY important to keep track of in which order you do things. I've spent many frustrating moments debugging my seemingly not working lookups only to find out that the error was that I had ordered my search incorrectly so the lookup was run on the search head instead of the search peers.&lt;/P&gt;

&lt;P&gt;As another example, this lookup will run on the search peer:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;* | lookup mydynamiclookup a OUTPUT b | stats count,values(b) by a
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;While this will run on the search head:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;* | stats count,values(b) by a | lookup mydynamiclookup a OUTPUT b
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Feb 2014 18:36:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170162#M48681</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2014-02-28T18:36:04Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170163#M48682</link>
      <description>&lt;P&gt;Hi Ayn,&lt;/P&gt;

&lt;P&gt;I'm not a Phyton coder, have little experience in programming and not a Splunk master, so it takes some time for me to try your trick.&lt;/P&gt;

&lt;P&gt;Here is my result and my condition :&lt;/P&gt;

&lt;P&gt;My condition :&lt;BR /&gt;
I have a few servers act as Search Head and one of them is a job server. I have some indexers. My Splunk's user access our Splunk from our Search Heads (except the job server) with load balancer in front of our search heads. What I want to do is locating the lookup in the job server.&lt;/P&gt;

&lt;P&gt;My result with your trick :&lt;BR /&gt;
I can not get the dynamic lookup from my job server.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 15:38:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170163#M48682</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-04T15:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170164#M48683</link>
      <description>&lt;P&gt;Because when I run the search in search head (not the job server), the data comes from an indexer, lets say indexer A. And the command lookup after the search is only look for lookup in the indexer A.&lt;/P&gt;

&lt;P&gt;When I try to move my lookup to indexer A and not in job server, I'm facing a new problem, which is if my search data comes from indexer B, then the command lookup will only look for lookup in indexer B.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 15:42:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170164#M48683</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-04T15:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170165#M48684</link>
      <description>&lt;P&gt;Here is my search query :&lt;BR /&gt;
sourcetype=sourcetype-abc fieldinput=def | lookup dynamic-lookup fieldinput as fieldinput OUTPUTNEW fieldoutput as fieldoutput&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 15:46:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170165#M48684</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-04T15:46:06Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170166#M48685</link>
      <description>&lt;P&gt;Here is my lookup phyton script :&lt;/P&gt;

&lt;H1&gt;!/usr/bin/python&lt;/H1&gt;

&lt;P&gt;import csv&lt;BR /&gt;
import sys&lt;/P&gt;

&lt;P&gt;def main():&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;try:
    csvfile = open( "/apps/splunk/etc/system/lookups/mycsv.csv", "rb" )
except Exception:
    sys.stderr.write("No file found.")
    sys.exit(0)

dialect = csv.Sniffer().sniff( csvfile.read( 10*1024 ) )
csvfile.seek(0)

reader = csv.reader( csvfile, dialect )
header = reader.next()

data = [row for row in reader]

writer = csv.writer( sys.stdout )

writer.writerow(header)

[ writer.writerow(x) for x in data ]    
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;main()&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 15:46:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170166#M48685</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-04T15:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170167#M48686</link>
      <description>&lt;P&gt;&lt;B&gt;So, How I can get the lookup from job server only ?&lt;/B&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 15:48:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170167#M48686</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-04T15:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170168#M48687</link>
      <description>&lt;P&gt;That's trickier, because when running a query from the search head your job server will not be involved at all. I can't think of any way you could throw the job server into the mix if it's not part of the search at all.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Mar 2014 22:21:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170168#M48687</guid>
      <dc:creator>Ayn</dc:creator>
      <dc:date>2014-03-04T22:21:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170169#M48688</link>
      <description>&lt;P&gt;I think the solution is using ssh modul in the python code so that the python script run only in the job server (by connecting ssh to job server first). I try that last night, there is some python modul I need to install first and I don't know why but it is so difficult &lt;span class="lia-unicode-emoji" title=":neutral_face:"&gt;😐&lt;/span&gt; . Maybe because the phyton version (i run Splunk 5.0.2) is older than the modul installer.&lt;/P&gt;

&lt;P&gt;Well because I'm not in a hurry and I have some other works I will try again later. I will inform if it is works.&lt;/P&gt;

&lt;P&gt;Thanks ayn and lukejadamec&lt;/P&gt;</description>
      <pubDate>Wed, 05 Mar 2014 06:34:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/170169#M48688</guid>
      <dc:creator>luthfiag</dc:creator>
      <dc:date>2014-03-05T06:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/643972#M223096</link>
      <description>&lt;P&gt;This is possible now with straight SPL using the REST API. The below solution was originally inspired by&amp;nbsp;&lt;A href="https://github.com/lnetto/SA-rest_get_lookup" target="_blank" rel="noopener"&gt;SA-rest_get_lookup&lt;/A&gt;, but I've made some changes to fix some issues.&lt;/P&gt;&lt;P&gt;Create a macro called remotelookup (Settings -&amp;gt; Advanced search -&amp;gt; Search macros).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Destination app:&lt;/STRONG&gt;&lt;BR /&gt;Wherever you want it&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Name:&lt;/STRONG&gt;&lt;BR /&gt;remotelookup(2)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Definition:&lt;/STRONG&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;rest splunk_server=$server$ /services/search/jobs/export search="| inputlookup $lookup$ | foreach * [eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt; = replace(replace(replace(replace(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;, \"\\n\", \"@@NewLine@@\"), \"\\r\", \"@@CarriageReturn@@\"), \"\\\"\", \"@@DoubleQuote@@\"), \"NULL\", \"@@NULL@@\")] | fillnull value=NULL | rename _* AS tmp_*" output_mode=csv
| fields value
| makemv tokenizer="([^\n]+)" value
| eval header=mvindex(value,0), value=mvindex(value,1,mvcount(value))
| makemv tokenizer="(\"[^\"]+\"|[^,]+)" header
| mvexpand value
| makemv tokenizer="(\"[^\"]+\"|[^,]+)" value
| eval tuple=mvzip(header,value,"#####")
| fields tuple
| eval primarykey=md5(tostring(tuple))
| mvexpand tuple
| rex field=tuple "^(?P&amp;lt;field&amp;gt;.*)#{5}(?P&amp;lt;value&amp;gt;.*)$"
| eval field=trim(field,"\""), value=if(value=="NULL","",trim(value,"\""))
| fields primarykey field value
| eval {field}=value
| fields - name, field, value
| stats values(*) as * by primarykey
| fields - primarykey
| rename tmp_* AS _*
| fieldformat _time=if(isint(_time),strftime(_time, "%s"),_time)
| foreach * [
    eval &amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt; = replace(replace(replace(replace(&amp;lt;&amp;lt;FIELD&amp;gt;&amp;gt;, "@@NewLine@@", "
"), "@@CarriageReturn@@", ""), "@@DoubleQuote@@", "\""), "@@NULL@@", "NULL")
]&lt;/LI-CODE&gt;&lt;P&gt;&lt;STRONG&gt;Arguments:&lt;/STRONG&gt;&lt;BR /&gt;server,lookup&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Validation Expression:&lt;/STRONG&gt;&lt;BR /&gt;$server$!="" AND $lookup$!=""&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Validation Error Message:&lt;/STRONG&gt;&lt;BR /&gt;You must provide a server and a lookup.&lt;/P&gt;&lt;P&gt;You can then call it this way.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| `remotelookup("server name", "lookup.csv")`&lt;/LI-CODE&gt;&lt;P&gt;If you want to sync a local lookup to match the lookup on another server you can do this in a report and set it to run on a schedule.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| `remotelookup("server name", "lookup.csv")`
| outputlookup lookup.csv&lt;/LI-CODE&gt;&lt;P&gt;One thing to note is that the server where the macro exists needs to have the remote server as a search peer so that it can access that server's REST API (Settings -&amp;gt; Distributed search -&amp;gt; Search peers).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Update:&lt;BR /&gt;2023-06-06: Changed method for create an mv field from a string to work with Splunk 9.x&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 23:55:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/643972#M223096</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-06-06T23:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/643974#M223097</link>
      <description>&lt;P&gt;Oh, also make sure to set the permissions on the macro to at least shared within the app. You might want to make it globally shared.&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2023 18:18:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/643974#M223097</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-05-19T18:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/645979#M223638</link>
      <description>&lt;P&gt;Your proposal looks interesting, but it doesn't work. I have Splunk 9.0.1 and I get an error.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 17:09:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/645979#M223638</guid>
      <dc:creator>rodrigomanrique</dc:creator>
      <dc:date>2023-06-06T17:09:32Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646007#M223642</link>
      <description>&lt;P&gt;What is the error?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Jun 2023 23:05:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646007#M223642</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-06-06T23:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646143#M223670</link>
      <description>&lt;P&gt;I get this error:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Unexpected status for to fetch REST endpoint uri=https://127.0.0.1:8089/services/search/v2/jobs/export?count=0&amp;amp;search=%7C%20inputlookup%20licencia.csv from server=https://127.0.0.1:8089 - Method Not Allowed&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 14:55:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646143#M223670</guid>
      <dc:creator>rodrigomanrique</dc:creator>
      <dc:date>2023-06-07T14:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646157#M223671</link>
      <description>&lt;P&gt;Have you set up the remote server as a search peer? If so is it showing as healthy in the search peers UI? Is the remote server a full Splunk install (not a UF)?&lt;/P&gt;&lt;P&gt;This does work with 9.x, although I did have to make a tweak yesterday but it should work now. The code above has been updated. However, the tweak I made should not have corrected the issue you are having. In fact when I tried it on 9.x without the tweak I didn't get an error. So, the fix is probably not related to your issue.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:30:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646157#M223671</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-06-07T15:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Get Data lookup from Other Remote Peer</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646159#M223673</link>
      <description>&lt;P&gt;In my case, I get an error because this query:&lt;/P&gt;&lt;PRE&gt;| rest splunk_server=socsiemfe /services/search/v2/jobs/export search="| inputlookup licencia.csv"&lt;/PRE&gt;&lt;P&gt;I am querying a lookup of a SH from another SH. I'm not even using a macro.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:34:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646159#M223673</guid>
      <dc:creator>rodrigomanrique</dc:creator>
      <dc:date>2023-06-07T15:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646161#M223674</link>
      <description>&lt;P&gt;Try this REST endpoint (/services/search/jobs/export). The "v2" is the problem.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:40:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646161#M223674</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-06-07T15:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646165#M223675</link>
      <description>&lt;P&gt;Splunk documentation states that the services/search/jobs/export method is no longer supported as of version 9.0.0.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 15:48:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646165#M223675</guid>
      <dc:creator>rodrigomanrique</dc:creator>
      <dc:date>2023-06-07T15:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: How get data lookup from other remote peer?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646170#M223677</link>
      <description>&lt;P&gt;That REST endpoint only supports POST right now now and the "&lt;STRONG&gt;| rest&lt;/STRONG&gt;" command only supports GET. So, you cannot use that endpoint in the Splunk UI yet. Hopefully, they will add the GET method to it at some point.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jun 2023 16:01:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-get-data-lookup-from-other-remote-peer/m-p/646170#M223677</guid>
      <dc:creator>fredclown</dc:creator>
      <dc:date>2023-06-07T16:01:13Z</dc:date>
    </item>
  </channel>
</rss>

