Reporting

How to call scheduled saved search from java sdk

bubby248
New Member

Hi

I am planning to call a scheduled saved search from java
SavedSearch savedSearch = service.getSavedSearches().get("mysavedsearch");

Job[] jobColl=null;
jobColl =savedSearch.history();

How can I get the last run job results from here.

Thanks

Tags (1)
0 Karma

Neeraj_Luthra
Splunk Employee
Splunk Employee

If the jobColl is not empty, then the first element in the array will be the most recent run.

SavedSearch savedSearch = service.getSavedSearches().get("mysavedsearch");
Job[] jobColl =savedSearch.history();
Job job;
if (jobColl.length > 0) {
// get the most recent run
job = jobColl[0];
} else {
job = savedSearch.dispatch();
}

0 Karma

kicksammy
Explorer

i m not getting the results... because the search has stats count in the search. how to fix it

0 Karma

bubby248
New Member

Yes.Thanks for clarification

0 Karma

Neeraj_Luthra
Splunk Employee
Splunk Employee

job.cancel() will remove that particular job from the saved search's history ... if that's what you are asking.

0 Karma

bubby248
New Member

Thanks.
Am using job.cancel(), after this operation.Does this remove the scheduled saved search from the history?

0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...