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!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...