Getting Data In

Search results send as HTTP POST automatically

ryastrebov
Communicator

Hello!
It is possible to make in search request?

Thank you!

Tags (2)
0 Karma
1 Solution

Neeraj_Luthra
Splunk Employee
Splunk Employee

Please be more specific. It is the exact same question as you posted yesterday - http://splunk-base.splunk.com/answers/81924/send-search-result-as-http-post.

View solution in original post

Neeraj_Luthra
Splunk Employee
Splunk Employee

Please be more specific. It is the exact same question as you posted yesterday - http://splunk-base.splunk.com/answers/81924/send-search-result-as-http-post.

ryastrebov
Communicator

Thank you for your help!

0 Karma

Damien_Dallimor
Ultra Champion

If you browse around the link I already sent , you can find code examples for various different languages for searching in Splunk.
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 :

import httplib, urllib
params = urllib.urlencode({
'field1' : 'foo',
'field2' : 'goo'
})
headers = {
"Content-type": "application/x-www-form-urlencoded",
"Accept": "text/plain"
}
conn = httplib.HTTPConnection("somehost.com:80")
conn.request("POST", "/hello/world",params, headers)
conn.close()

ryastrebov
Communicator

Thank you!
And where I can see examples of scripts to send search results as HTTP POST?

0 Karma

Damien_Dallimor
Ultra Champion

Workflow actions will present a link that you can manually click on in the Splunk UI.
For something completely automated I'd consider looking at one of our language SDKs (http://dev.splunk.com/view/sdks/SP-CAAADP7) 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.

0 Karma

ryastrebov
Communicator

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?

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

May 2026 Splunk Expert Sessions: Security & Observability

Level Up Your Operations: May 2026 Splunk Expert Sessions Whether you are refining your security posture or ...

Network to App: Observability Unlocked [May & June Series]

In today’s digital landscape, your environment is no longer confined to the data center. It spans complex ...

SPL2 Deep Dives, AppDynamics Integrations, SAML Made Simple and Much More on Splunk ...

Splunk Lantern is Splunk’s customer success center that provides practical guidance from Splunk experts on key ...