Splunk Dev

Java Sdk - query to return JSON

ikenahim
New Member

I'm struggling with this, I have no experience with dealing with JSON. I have a query to return data as JSON format, this my method:

public JSONOBJECT Post_request()
{
String Query = "search index= nessus "; // for testing
Job job = session.make_Request().getJobs().create(Query);
while(!job.isDone())
{
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
JobResultsArgs resultsArgs = new JobResultsArgs();
resultsArgs.setOutputMode(JobResultsArgs.OutputMode.JSON);
InputStream results = job.getResults(resultsArgs);

// here I don't really know how I can parse this long string to JSON object.

    try
    {
        ResultsReaderJson resultsReader = new ResultsReaderJson(results);
        MultiResultsReaderJson multiResultsReader = new MultiResultsReaderJson(results);

        return  resultsReader;
    } catch (IOException e)
    {
        e.printStackTrace();
    }
    return null;
}
0 Karma

ikenahim
New Member

I'm using Java 11 and Splunk enterprise

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

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