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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...