Splunk Dev

how to use SID in java sdk

kicksammy
Explorer

Hi,
i am developing a tool which connects to splunk and runs a search with SID.
if i have SID and want to get the results through java sdk using SID as input. How can i achieve this?

Tags (1)
0 Karma

kicksammy
Explorer

Thanks for the reply. it worked for me

0 Karma

Damien_Dallimor
Ultra Champion

Here is a code example for you.Verified it working against Splunk 6 using Java SDK version 1.2 running from Eclipse , JRE 1.6.

public static void getJobResults(String sid){

    ServiceArgs connectionArgs = new ServiceArgs();
    connectionArgs.setHost("yourhost");
    connectionArgs.setUsername("someuser");
    connectionArgs.setPassword("somepass");
    connectionArgs.setPort(8089);
    Service splunkService = Service.connect(connectionArgs);

    JobCollection jobs = splunkService.getJobs();
    Job job = jobs.get(sid);

    while (!job.isDone()) {
        try {
            Thread.sleep(500);
        } catch (Exception e) {
        }
    }

    OutputMode outputMode = OutputMode.JSON;

    JobResultsArgs outputArgs = new JobResultsArgs();
    outputArgs.setOutputMode(outputMode);

    ResultsReader resultsReader = null;
    try {
        resultsReader = new ResultsReaderJson(job.getResults(outputArgs));
        HashMap<String, String> map;
        while ((map = resultsReader.getNextEvent()) != null) {
            for (String key : map.keySet())
                System.out.println("   " + key + " --> " + map.get(key));
        }
    } catch (Exception e) {/**handle exception**/}
    finally{
      try {
        resultsReader.close();
    } catch (Exception e) {/**handle exception**/}
    }

}

kicksammy
Explorer

Thanks for the reply. It worked for me

0 Karma
Get Updates on the Splunk Community!

Get the T-shirt to Prove You Survived Splunk University Bootcamp

As if Splunk University, in Las Vegas, in-person, with three days of bootcamps and labs weren’t enough, now ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...