<?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: Search results send as HTTP POST automatically in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84918#M17677</link>
    <description>&lt;P&gt;These links offer yesterday to create a workflow. If I understand correctly, the workflow can be started manually. Necessary to send the results of the search going on-line, automatically. One approach - writing the script. I thought that there is any way to do this without a script. It is possible?&lt;/P&gt;</description>
    <pubDate>Thu, 04 Apr 2013 16:02:34 GMT</pubDate>
    <dc:creator>ryastrebov</dc:creator>
    <dc:date>2013-04-04T16:02:34Z</dc:date>
    <item>
      <title>Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84916#M17675</link>
      <description>&lt;P&gt;Hello!&lt;BR /&gt;
 It is possible to make in search request?&lt;/P&gt;

&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 14:21:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84916#M17675</guid>
      <dc:creator>ryastrebov</dc:creator>
      <dc:date>2013-04-04T14:21:54Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84917#M17676</link>
      <description>&lt;P&gt;Please be more specific. It is the exact same question as you posted yesterday - &lt;A href="http://splunk-base.splunk.com/answers/81924/send-search-result-as-http-post"&gt;http://splunk-base.splunk.com/answers/81924/send-search-result-as-http-post&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 14:55:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84917#M17676</guid>
      <dc:creator>Neeraj_Luthra</dc:creator>
      <dc:date>2013-04-04T14:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84918#M17677</link>
      <description>&lt;P&gt;These links offer yesterday to create a workflow. If I understand correctly, the workflow can be started manually. Necessary to send the results of the search going on-line, automatically. One approach - writing the script. I thought that there is any way to do this without a script. It is possible?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 16:02:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84918#M17677</guid>
      <dc:creator>ryastrebov</dc:creator>
      <dc:date>2013-04-04T16:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84919#M17678</link>
      <description>&lt;P&gt;Workflow actions will present a link that you can manually click on in the Splunk UI.&lt;BR /&gt;
For something completely automated I'd consider looking at one of our language SDKs (&lt;A href="http://dev.splunk.com/view/sdks/SP-CAAADP7"&gt;http://dev.splunk.com/view/sdks/SP-CAAADP7&lt;/A&gt;) to develop a custom integration to Splunk. It would be quite simple, your program could just periodically execute a Splunk search and depending on your results criteria , HTTP POST them somewhere.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 16:22:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84919#M17678</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2013-04-04T16:22:36Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84920#M17679</link>
      <description>&lt;P&gt;Thank you!&lt;BR /&gt;
And where I can see examples of scripts to send search results as HTTP POST?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2013 18:31:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84920#M17679</guid>
      <dc:creator>ryastrebov</dc:creator>
      <dc:date>2013-04-04T18:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84921#M17680</link>
      <description>&lt;P&gt;If you browse around the link I already sent , you can find code examples for various different languages for searching in Splunk.&lt;BR /&gt;
And then depending on the language you are using , there a numerous examples available online for how to perform an HTTP POST, simple python example :&lt;/P&gt;

&lt;P&gt;import httplib, urllib&lt;BR /&gt;
params = urllib.urlencode({&lt;BR /&gt;
'field1' : 'foo',&lt;BR /&gt;
'field2' : 'goo'&lt;BR /&gt;
})&lt;BR /&gt;
headers = {&lt;BR /&gt;
"Content-type": "application/x-www-form-urlencoded",&lt;BR /&gt;
"Accept": "text/plain"&lt;BR /&gt;
}&lt;BR /&gt;
conn = httplib.HTTPConnection("somehost.com:80")&lt;BR /&gt;
conn.request("POST", "/hello/world",params, headers)&lt;BR /&gt;
conn.close()&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2013 05:54:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84921#M17680</guid>
      <dc:creator>Damien_Dallimor</dc:creator>
      <dc:date>2013-04-05T05:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Search results send as HTTP POST automatically</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84922#M17681</link>
      <description>&lt;P&gt;Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 11 Apr 2013 18:07:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Search-results-send-as-HTTP-POST-automatically/m-p/84922#M17681</guid>
      <dc:creator>ryastrebov</dc:creator>
      <dc:date>2013-04-11T18:07:31Z</dc:date>
    </item>
  </channel>
</rss>

