Getting Data In

Order of fields in json java

1234testtest
Path Finder

For java sdk, output mode as json, I am getting fields sent from splunk and their values as json. But how ever is the order of fields in the table statement
| table field1, field2
or
| table field2, field1

The order of fields I get in the java side is the same - and i need the order the same way as I has specified in the query after table
What should be done to get this way

Tags (1)
0 Karma

Neeraj_Luthra
Splunk Employee
Splunk Employee

It should honor the fields specified in the query string after the table keyword. If possible, try to run the query through cURL and see whether you get the desired results. Nonetheless, you can pass the list of fields explicitly to the getResults method on the job, once its done.

JobResultsArgs resultArgs = new JobResultsArgs();
resultArgs.setFieldList(new String[] {"field1", "field2"});
InputStream results = job.getResults(resultArgs);

0 Karma

1234testtest
Path Finder

Yes the order in java is different from what I specify in query after table keyword. Also FYI I am using output mode as json in java side to get details from plunk

0 Karma

Neeraj_Luthra
Splunk Employee
Splunk Employee

I am not sure what the problem is. Can you clarify further? Is the order in Java different from what your query is specifying after the table keyword?

0 Karma
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...