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!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...