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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...