Splunk Search

How to search for results using Java splunk api

misteryuku
Communicator

How do i call the Java splunk api to search using the splunk search language from the Splunk search endpoint?

0 Karma

Damien_Dallimor
Ultra Champion

Have a look at this example included in the SDK.

There is more info at dev.splunk.com also.

Here is a pseudocode excerpt copied from the above link showing usage of the Java SDK to execute a Splunk search and obtain the results:

Service service = Service.connect(...);
Job job = service.getJobs().create("search * | head 10")
while (!job.isDone()) {
    Thread.sleep(2000);
    job.refresh();
}
InputStream stream = job.getResults();
Get Updates on the Splunk Community!

What's new in Splunk Cloud Platform 9.1.2312?

Hi Splunky people! We are excited to share the newest updates in Splunk Cloud Platform 9.1.2312! Analysts can ...

What’s New in Splunk Security Essentials 3.8.0?

Splunk Security Essentials (SSE) is an app that can amplify the power of your existing Splunk Cloud Platform, ...

Let’s Get You Certified – Vegas-Style at .conf24

Are you ready to level up your Splunk game? Then, let’s get you certified live at .conf24 – our annual user ...