Splunk Search

I am trying to implement time limit on the query, but failing to fetch the result

priyabhakat
New Member

public static void executeQuery(String query,String earliestTime,String latestTime)
{

    Args queryArgs=new Args();
    queryArgs.put("earliest_time", earliestTime);
    queryArgs.put("latest_time", latestTime);
    splunkJob= splunkService.getJobs().create(query,queryArgs); 

    while(!splunkJob.isDone()){
        try {
            Thread.sleep(500);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

}
0 Karma

lguinn2
Legend

The variables (earliestTime and latestTime) that you used in queryArgs.put must contain a date-time string similar to this
"2012-06-20T12:00:00.000-07:00"

0 Karma

somesoni2
Revered Legend

Refer to code examples from this link. Check the format of values and classes to be used.
http://dev.splunk.com/view/java-sdk/SP-CAAAEHQ

0 Karma

aaraneta_splunk
Splunk Employee
Splunk Employee

@priyabhakat - Your question is quite vague. Please leave a comment with more information. In general, your question has a greater chance of being answered by experts in the Answers community when when you provide as much information and context as possible. Thanks.

0 Karma
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 ...